# File lib/fog/aws/requests/rds/copy_db_snapshot.rb, line 19
        def copy_db_snapshot(source_db_snapshot_identifier, target_db_snapshot_identifier, copy_tags = false)
          request(
            'Action'                     => 'CopyDBSnapshot',
            'SourceDBSnapshotIdentifier' => source_db_snapshot_identifier,
            'TargetDBSnapshotIdentifier' => target_db_snapshot_identifier,
            'CopyTags'                   => copy_tags,
            :parser                      => Fog::Parsers::AWS::RDS::CopyDBSnapshot.new
          )
        end