aws-sdk-transcribeservice 1.35.0 → 1.36.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0a8b20d5eef067b6f52c6f7a52110c1e97f964a7
4
- data.tar.gz: f9ca6eb895ecbb6ac8593e6465bc8bb4bbc90359
3
+ metadata.gz: 4372d838d4b919e3303c2f22a6fdde250f98da32
4
+ data.tar.gz: 15a44f2c12d5dd9e834958bbde9f4a14508f1747
5
5
  SHA512:
6
- metadata.gz: 7c33a2e6113d4db050d1d632ad30655573525d297e3d6e605a4b344d357aaca2cb615dfd196de7171bbe47bb34c9417eb055fa996a236674f7cf1117cb0466be
7
- data.tar.gz: 2e9731db2bc8871a297e5545340526054cd925982b80d04d92322dc5be1fbd42173e2bc6e7ee0c10517bedb139e979aafdb5c59cbf08634480fa596495234b1b
6
+ metadata.gz: '09f4a17d07fbe5cf7fd6a872d242d4ddca170ee0fafe79bfb412c12001d5b9ffff63886358f45e1d05dadad92083ec5cc6750dca800a8db8a4535dc389dcd5b3'
7
+ data.tar.gz: aa5540922928c160925f3ce848c70da36fb3dff48098daaa0ce33ff455a8c6acc921a6b580bb6634a15f00c9a0e11df1b791647994cc532f2ee46e012556c762
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-transcribeservice/customizations'
42
42
  # @service
43
43
  module Aws::TranscribeService
44
44
 
45
- GEM_VERSION = '1.35.0'
45
+ GEM_VERSION = '1.36.0'
46
46
 
47
47
  end
@@ -475,7 +475,9 @@ module Aws::TranscribeService
475
475
  # Returns information about a transcription job. To see the status of
476
476
  # the job, check the `TranscriptionJobStatus` field. If the status is
477
477
  # `COMPLETED`, the job is finished and you can find the results at the
478
- # location specified in the `TranscriptionFileUri` field.
478
+ # location specified in the `TranscriptFileUri` field. If you enable
479
+ # content redaction, the redacted transcript appears in
480
+ # `RedactedTranscriptFileUri`.
479
481
  #
480
482
  # @option params [required, String] :transcription_job_name
481
483
  # The name of the job.
@@ -499,6 +501,7 @@ module Aws::TranscribeService
499
501
  # resp.transcription_job.media_format #=> String, one of "mp3", "mp4", "wav", "flac"
500
502
  # resp.transcription_job.media.media_file_uri #=> String
501
503
  # resp.transcription_job.transcript.transcript_file_uri #=> String
504
+ # resp.transcription_job.transcript.redacted_transcript_file_uri #=> String
502
505
  # resp.transcription_job.start_time #=> Time
503
506
  # resp.transcription_job.creation_time #=> Time
504
507
  # resp.transcription_job.completion_time #=> Time
@@ -513,6 +516,8 @@ module Aws::TranscribeService
513
516
  # resp.transcription_job.settings.vocabulary_filter_method #=> String, one of "remove", "mask"
514
517
  # resp.transcription_job.job_execution_settings.allow_deferred_execution #=> Boolean
515
518
  # resp.transcription_job.job_execution_settings.data_access_role_arn #=> String
519
+ # resp.transcription_job.content_redaction.redaction_type #=> String, one of "PII"
520
+ # resp.transcription_job.content_redaction.redaction_output #=> String, one of "redacted", "redacted_and_unredacted"
516
521
  #
517
522
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/GetTranscriptionJob AWS API Documentation
518
523
  #
@@ -645,6 +650,8 @@ module Aws::TranscribeService
645
650
  # resp.transcription_job_summaries[0].transcription_job_status #=> String, one of "QUEUED", "IN_PROGRESS", "FAILED", "COMPLETED"
646
651
  # resp.transcription_job_summaries[0].failure_reason #=> String
647
652
  # resp.transcription_job_summaries[0].output_location_type #=> String, one of "CUSTOMER_BUCKET", "SERVICE_BUCKET"
653
+ # resp.transcription_job_summaries[0].content_redaction.redaction_type #=> String, one of "PII"
654
+ # resp.transcription_job_summaries[0].content_redaction.redaction_output #=> String, one of "redacted", "redacted_and_unredacted"
648
655
  #
649
656
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/ListTranscriptionJobs AWS API Documentation
650
657
  #
@@ -786,11 +793,15 @@ module Aws::TranscribeService
786
793
  # The location where the transcription is stored.
787
794
  #
788
795
  # If you set the `OutputBucketName`, Amazon Transcribe puts the
789
- # transcription in the specified S3 bucket. When you call the
796
+ # transcript in the specified S3 bucket. When you call the
790
797
  # GetTranscriptionJob operation, the operation returns this location in
791
- # the `TranscriptFileUri` field. The S3 bucket must have permissions
792
- # that allow Amazon Transcribe to put files in the bucket. For more
793
- # information, see [Permissions Required for IAM User Roles][1].
798
+ # the `TranscriptFileUri` field. If you enable content redaction, the
799
+ # redacted transcript appears in `RedactedTranscriptFileUri`. If you
800
+ # enable content redaction and choose to output an unredacted
801
+ # transcript, that transcript's location still appears in the
802
+ # `TranscriptFileUri`. The S3 bucket must have permissions that allow
803
+ # Amazon Transcribe to put files in the bucket. For more information,
804
+ # see [Permissions Required for IAM User Roles][1].
794
805
  #
795
806
  # You can specify an AWS Key Management Service (KMS) key to encrypt the
796
807
  # output of your transcription using the `OutputEncryptionKMSKeyId`
@@ -847,6 +858,9 @@ module Aws::TranscribeService
847
858
  # execution if the concurrency limit is reached and there are no slots
848
859
  # available to immediately run the job.
849
860
  #
861
+ # @option params [Types::ContentRedaction] :content_redaction
862
+ # An object that contains the request parameters for content redaction.
863
+ #
850
864
  # @return [Types::StartTranscriptionJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
851
865
  #
852
866
  # * {Types::StartTranscriptionJobResponse#transcription_job #transcription_job} => Types::TranscriptionJob
@@ -877,6 +891,10 @@ module Aws::TranscribeService
877
891
  # allow_deferred_execution: false,
878
892
  # data_access_role_arn: "DataAccessRoleArn",
879
893
  # },
894
+ # content_redaction: {
895
+ # redaction_type: "PII", # required, accepts PII
896
+ # redaction_output: "redacted", # required, accepts redacted, redacted_and_unredacted
897
+ # },
880
898
  # })
881
899
  #
882
900
  # @example Response structure
@@ -888,6 +906,7 @@ module Aws::TranscribeService
888
906
  # resp.transcription_job.media_format #=> String, one of "mp3", "mp4", "wav", "flac"
889
907
  # resp.transcription_job.media.media_file_uri #=> String
890
908
  # resp.transcription_job.transcript.transcript_file_uri #=> String
909
+ # resp.transcription_job.transcript.redacted_transcript_file_uri #=> String
891
910
  # resp.transcription_job.start_time #=> Time
892
911
  # resp.transcription_job.creation_time #=> Time
893
912
  # resp.transcription_job.completion_time #=> Time
@@ -902,6 +921,8 @@ module Aws::TranscribeService
902
921
  # resp.transcription_job.settings.vocabulary_filter_method #=> String, one of "remove", "mask"
903
922
  # resp.transcription_job.job_execution_settings.allow_deferred_execution #=> Boolean
904
923
  # resp.transcription_job.job_execution_settings.data_access_role_arn #=> String
924
+ # resp.transcription_job.content_redaction.redaction_type #=> String, one of "PII"
925
+ # resp.transcription_job.content_redaction.redaction_output #=> String, one of "redacted", "redacted_and_unredacted"
905
926
  #
906
927
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/StartTranscriptionJob AWS API Documentation
907
928
  #
@@ -1056,7 +1077,7 @@ module Aws::TranscribeService
1056
1077
  params: params,
1057
1078
  config: config)
1058
1079
  context[:gem_name] = 'aws-sdk-transcribeservice'
1059
- context[:gem_version] = '1.35.0'
1080
+ context[:gem_version] = '1.36.0'
1060
1081
  Seahorse::Client::Request.new(handlers, context)
1061
1082
  end
1062
1083
 
@@ -14,6 +14,7 @@ module Aws::TranscribeService
14
14
  BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
15
15
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
16
16
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
17
+ ContentRedaction = Shapes::StructureShape.new(name: 'ContentRedaction')
17
18
  CreateVocabularyFilterRequest = Shapes::StructureShape.new(name: 'CreateVocabularyFilterRequest')
18
19
  CreateVocabularyFilterResponse = Shapes::StructureShape.new(name: 'CreateVocabularyFilterResponse')
19
20
  CreateVocabularyRequest = Shapes::StructureShape.new(name: 'CreateVocabularyRequest')
@@ -53,6 +54,8 @@ module Aws::TranscribeService
53
54
  OutputLocationType = Shapes::StringShape.new(name: 'OutputLocationType')
54
55
  Phrase = Shapes::StringShape.new(name: 'Phrase')
55
56
  Phrases = Shapes::ListShape.new(name: 'Phrases')
57
+ RedactionOutput = Shapes::StringShape.new(name: 'RedactionOutput')
58
+ RedactionType = Shapes::StringShape.new(name: 'RedactionType')
56
59
  Settings = Shapes::StructureShape.new(name: 'Settings')
57
60
  StartTranscriptionJobRequest = Shapes::StructureShape.new(name: 'StartTranscriptionJobRequest')
58
61
  StartTranscriptionJobResponse = Shapes::StructureShape.new(name: 'StartTranscriptionJobResponse')
@@ -85,6 +88,10 @@ module Aws::TranscribeService
85
88
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
86
89
  ConflictException.struct_class = Types::ConflictException
87
90
 
91
+ ContentRedaction.add_member(:redaction_type, Shapes::ShapeRef.new(shape: RedactionType, required: true, location_name: "RedactionType"))
92
+ ContentRedaction.add_member(:redaction_output, Shapes::ShapeRef.new(shape: RedactionOutput, required: true, location_name: "RedactionOutput"))
93
+ ContentRedaction.struct_class = Types::ContentRedaction
94
+
88
95
  CreateVocabularyFilterRequest.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: VocabularyFilterName, required: true, location_name: "VocabularyFilterName"))
89
96
  CreateVocabularyFilterRequest.add_member(:language_code, Shapes::ShapeRef.new(shape: LanguageCode, required: true, location_name: "LanguageCode"))
90
97
  CreateVocabularyFilterRequest.add_member(:words, Shapes::ShapeRef.new(shape: Words, location_name: "Words"))
@@ -212,12 +219,14 @@ module Aws::TranscribeService
212
219
  StartTranscriptionJobRequest.add_member(:output_encryption_kms_key_id, Shapes::ShapeRef.new(shape: KMSKeyId, location_name: "OutputEncryptionKMSKeyId"))
213
220
  StartTranscriptionJobRequest.add_member(:settings, Shapes::ShapeRef.new(shape: Settings, location_name: "Settings"))
214
221
  StartTranscriptionJobRequest.add_member(:job_execution_settings, Shapes::ShapeRef.new(shape: JobExecutionSettings, location_name: "JobExecutionSettings"))
222
+ StartTranscriptionJobRequest.add_member(:content_redaction, Shapes::ShapeRef.new(shape: ContentRedaction, location_name: "ContentRedaction"))
215
223
  StartTranscriptionJobRequest.struct_class = Types::StartTranscriptionJobRequest
216
224
 
217
225
  StartTranscriptionJobResponse.add_member(:transcription_job, Shapes::ShapeRef.new(shape: TranscriptionJob, location_name: "TranscriptionJob"))
218
226
  StartTranscriptionJobResponse.struct_class = Types::StartTranscriptionJobResponse
219
227
 
220
228
  Transcript.add_member(:transcript_file_uri, Shapes::ShapeRef.new(shape: Uri, location_name: "TranscriptFileUri"))
229
+ Transcript.add_member(:redacted_transcript_file_uri, Shapes::ShapeRef.new(shape: Uri, location_name: "RedactedTranscriptFileUri"))
221
230
  Transcript.struct_class = Types::Transcript
222
231
 
223
232
  TranscriptionJob.add_member(:transcription_job_name, Shapes::ShapeRef.new(shape: TranscriptionJobName, location_name: "TranscriptionJobName"))
@@ -233,6 +242,7 @@ module Aws::TranscribeService
233
242
  TranscriptionJob.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
234
243
  TranscriptionJob.add_member(:settings, Shapes::ShapeRef.new(shape: Settings, location_name: "Settings"))
235
244
  TranscriptionJob.add_member(:job_execution_settings, Shapes::ShapeRef.new(shape: JobExecutionSettings, location_name: "JobExecutionSettings"))
245
+ TranscriptionJob.add_member(:content_redaction, Shapes::ShapeRef.new(shape: ContentRedaction, location_name: "ContentRedaction"))
236
246
  TranscriptionJob.struct_class = Types::TranscriptionJob
237
247
 
238
248
  TranscriptionJobSummaries.member = Shapes::ShapeRef.new(shape: TranscriptionJobSummary)
@@ -245,6 +255,7 @@ module Aws::TranscribeService
245
255
  TranscriptionJobSummary.add_member(:transcription_job_status, Shapes::ShapeRef.new(shape: TranscriptionJobStatus, location_name: "TranscriptionJobStatus"))
246
256
  TranscriptionJobSummary.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
247
257
  TranscriptionJobSummary.add_member(:output_location_type, Shapes::ShapeRef.new(shape: OutputLocationType, location_name: "OutputLocationType"))
258
+ TranscriptionJobSummary.add_member(:content_redaction, Shapes::ShapeRef.new(shape: ContentRedaction, location_name: "ContentRedaction"))
248
259
  TranscriptionJobSummary.struct_class = Types::TranscriptionJobSummary
249
260
 
250
261
  UpdateVocabularyFilterRequest.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: VocabularyFilterName, required: true, location_name: "VocabularyFilterName"))
@@ -40,6 +40,48 @@ module Aws::TranscribeService
40
40
  include Aws::Structure
41
41
  end
42
42
 
43
+ # Settings for content redaction within a transcription job.
44
+ #
45
+ # You can redact transcripts in US English (en-us). For more information
46
+ # see: [Automatic Content Redaction][1]
47
+ #
48
+ #
49
+ #
50
+ # [1]: https://docs.aws.amazon.com/transcribe/latest/dg/content-redaction.html
51
+ #
52
+ # @note When making an API call, you may pass ContentRedaction
53
+ # data as a hash:
54
+ #
55
+ # {
56
+ # redaction_type: "PII", # required, accepts PII
57
+ # redaction_output: "redacted", # required, accepts redacted, redacted_and_unredacted
58
+ # }
59
+ #
60
+ # @!attribute [rw] redaction_type
61
+ # Request parameter that defines the entities to be redacted. The only
62
+ # accepted value is `PII`.
63
+ # @return [String]
64
+ #
65
+ # @!attribute [rw] redaction_output
66
+ # Request parameter where you choose whether to output only the
67
+ # redacted transcript or generate an additional unredacted transcript.
68
+ #
69
+ # When you choose `redacted` Amazon Transcribe outputs a JSON file
70
+ # with only the redacted transcript and related information.
71
+ #
72
+ # When you choose `redacted_and_unredacted` Amazon Transcribe outputs
73
+ # a JSON file with the unredacted transcript and related information
74
+ # in addition to the JSON file with the redacted transcript.
75
+ # @return [String]
76
+ #
77
+ # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/ContentRedaction AWS API Documentation
78
+ #
79
+ class ContentRedaction < Struct.new(
80
+ :redaction_type,
81
+ :redaction_output)
82
+ include Aws::Structure
83
+ end
84
+
43
85
  # @note When making an API call, you may pass CreateVocabularyFilterRequest
44
86
  # data as a hash:
45
87
  #
@@ -680,19 +722,17 @@ module Aws::TranscribeService
680
722
  # }
681
723
  #
682
724
  # @!attribute [rw] media_file_uri
683
- # The S3 location of the input media file. The URI must be in the same
684
- # region as the API endpoint that you are calling. The general form
685
- # is:
725
+ # The S3 object location of the input media file. The URI must be in
726
+ # the same region as the API endpoint that you are calling. The
727
+ # general form is:
686
728
  #
687
- # `
688
- # https://s3.<aws-region>.amazonaws.com/<bucket-name>/<keyprefix>/<objectkey>
689
- # `
729
+ # ` s3://<bucket-name>/<keyprefix>/<objectkey> `
690
730
  #
691
731
  # For example:
692
732
  #
693
- # `https://s3.us-east-1.amazonaws.com/examplebucket/example.mp4`
733
+ # `s3://examplebucket/example.mp4`
694
734
  #
695
- # `https://s3.us-east-1.amazonaws.com/examplebucket/mediadocs/example.mp4`
735
+ # `s3://examplebucket/mediadocs/example.mp4`
696
736
  #
697
737
  # For more information about S3 object names, see [Object Keys][1] in
698
738
  # the *Amazon S3 Developer Guide*.
@@ -845,6 +885,10 @@ module Aws::TranscribeService
845
885
  # allow_deferred_execution: false,
846
886
  # data_access_role_arn: "DataAccessRoleArn",
847
887
  # },
888
+ # content_redaction: {
889
+ # redaction_type: "PII", # required, accepts PII
890
+ # redaction_output: "redacted", # required, accepts redacted, redacted_and_unredacted
891
+ # },
848
892
  # }
849
893
  #
850
894
  # @!attribute [rw] transcription_job_name
@@ -880,12 +924,15 @@ module Aws::TranscribeService
880
924
  # The location where the transcription is stored.
881
925
  #
882
926
  # If you set the `OutputBucketName`, Amazon Transcribe puts the
883
- # transcription in the specified S3 bucket. When you call the
927
+ # transcript in the specified S3 bucket. When you call the
884
928
  # GetTranscriptionJob operation, the operation returns this location
885
- # in the `TranscriptFileUri` field. The S3 bucket must have
886
- # permissions that allow Amazon Transcribe to put files in the bucket.
887
- # For more information, see [Permissions Required for IAM User
888
- # Roles][1].
929
+ # in the `TranscriptFileUri` field. If you enable content redaction,
930
+ # the redacted transcript appears in `RedactedTranscriptFileUri`. If
931
+ # you enable content redaction and choose to output an unredacted
932
+ # transcript, that transcript's location still appears in the
933
+ # `TranscriptFileUri`. The S3 bucket must have permissions that allow
934
+ # Amazon Transcribe to put files in the bucket. For more information,
935
+ # see [Permissions Required for IAM User Roles][1].
889
936
  #
890
937
  # You can specify an AWS Key Management Service (KMS) key to encrypt
891
938
  # the output of your transcription using the
@@ -948,6 +995,11 @@ module Aws::TranscribeService
948
995
  # available to immediately run the job.
949
996
  # @return [Types::JobExecutionSettings]
950
997
  #
998
+ # @!attribute [rw] content_redaction
999
+ # An object that contains the request parameters for content
1000
+ # redaction.
1001
+ # @return [Types::ContentRedaction]
1002
+ #
951
1003
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/StartTranscriptionJobRequest AWS API Documentation
952
1004
  #
953
1005
  class StartTranscriptionJobRequest < Struct.new(
@@ -959,7 +1011,8 @@ module Aws::TranscribeService
959
1011
  :output_bucket_name,
960
1012
  :output_encryption_kms_key_id,
961
1013
  :settings,
962
- :job_execution_settings)
1014
+ :job_execution_settings,
1015
+ :content_redaction)
963
1016
  include Aws::Structure
964
1017
  end
965
1018
 
@@ -977,19 +1030,30 @@ module Aws::TranscribeService
977
1030
  # Identifies the location of a transcription.
978
1031
  #
979
1032
  # @!attribute [rw] transcript_file_uri
980
- # The location where the transcription is stored.
1033
+ # The S3 object location of the the transcript.
1034
+ #
1035
+ # Use this URI to access the transcript. If you specified an S3 bucket
1036
+ # in the `OutputBucketName` field when you created the job, this is
1037
+ # the URI of that bucket. If you chose to store the transcript in
1038
+ # Amazon Transcribe, this is a shareable URL that provides secure
1039
+ # access to that location.
1040
+ # @return [String]
981
1041
  #
982
- # Use this URI to access the transcription. If you specified an S3
983
- # bucket in the `OutputBucketName` field when you created the job,
984
- # this is the URI of that bucket. If you chose to store the
985
- # transcription in Amazon Transcribe, this is a shareable URL that
986
- # provides secure access to that location.
1042
+ # @!attribute [rw] redacted_transcript_file_uri
1043
+ # The S3 object location of the redacted transcript.
1044
+ #
1045
+ # Use this URI to access the redacated transcript. If you specified an
1046
+ # S3 bucket in the `OutputBucketName` field when you created the job,
1047
+ # this is the URI of that bucket. If you chose to store the transcript
1048
+ # in Amazon Transcribe, this is a shareable URL that provides secure
1049
+ # access to that location.
987
1050
  # @return [String]
988
1051
  #
989
1052
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/Transcript AWS API Documentation
990
1053
  #
991
1054
  class Transcript < Struct.new(
992
- :transcript_file_uri)
1055
+ :transcript_file_uri,
1056
+ :redacted_transcript_file_uri)
993
1057
  include Aws::Structure
994
1058
  end
995
1059
 
@@ -1090,6 +1154,11 @@ module Aws::TranscribeService
1090
1154
  # Provides information about how a transcription job is executed.
1091
1155
  # @return [Types::JobExecutionSettings]
1092
1156
  #
1157
+ # @!attribute [rw] content_redaction
1158
+ # An object that describes content redaction settings for the
1159
+ # transcription job.
1160
+ # @return [Types::ContentRedaction]
1161
+ #
1093
1162
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/TranscriptionJob AWS API Documentation
1094
1163
  #
1095
1164
  class TranscriptionJob < Struct.new(
@@ -1105,7 +1174,8 @@ module Aws::TranscribeService
1105
1174
  :completion_time,
1106
1175
  :failure_reason,
1107
1176
  :settings,
1108
- :job_execution_settings)
1177
+ :job_execution_settings,
1178
+ :content_redaction)
1109
1179
  include Aws::Structure
1110
1180
  end
1111
1181
 
@@ -1154,6 +1224,10 @@ module Aws::TranscribeService
1154
1224
  # `GetTranscriptionJob` response's `TranscriptFileUri` field.
1155
1225
  # @return [String]
1156
1226
  #
1227
+ # @!attribute [rw] content_redaction
1228
+ # The content redaction settings of the transcription job.
1229
+ # @return [Types::ContentRedaction]
1230
+ #
1157
1231
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/TranscriptionJobSummary AWS API Documentation
1158
1232
  #
1159
1233
  class TranscriptionJobSummary < Struct.new(
@@ -1164,7 +1238,8 @@ module Aws::TranscribeService
1164
1238
  :language_code,
1165
1239
  :transcription_job_status,
1166
1240
  :failure_reason,
1167
- :output_location_type)
1241
+ :output_location_type,
1242
+ :content_redaction)
1168
1243
  include Aws::Structure
1169
1244
  end
1170
1245
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-transcribeservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.35.0
4
+ version: 1.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-20 00:00:00.000000000 Z
11
+ date: 2020-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core