aws-sdk-transcribeservice 1.71.0 → 1.74.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transcribeservice/client.rb +213 -154
- data/lib/aws-sdk-transcribeservice/client_api.rb +6 -2
- data/lib/aws-sdk-transcribeservice/types.rb +222 -164
- data/lib/aws-sdk-transcribeservice.rb +1 -1
- metadata +4 -4
@@ -109,6 +109,7 @@ module Aws::TranscribeService
|
|
109
109
|
MediaFormat = Shapes::StringShape.new(name: 'MediaFormat')
|
110
110
|
MediaSampleRateHertz = Shapes::IntegerShape.new(name: 'MediaSampleRateHertz')
|
111
111
|
MedicalContentIdentificationType = Shapes::StringShape.new(name: 'MedicalContentIdentificationType')
|
112
|
+
MedicalMediaSampleRateHertz = Shapes::IntegerShape.new(name: 'MedicalMediaSampleRateHertz')
|
112
113
|
MedicalTranscript = Shapes::StructureShape.new(name: 'MedicalTranscript')
|
113
114
|
MedicalTranscriptionJob = Shapes::StructureShape.new(name: 'MedicalTranscriptionJob')
|
114
115
|
MedicalTranscriptionJobSummaries = Shapes::ListShape.new(name: 'MedicalTranscriptionJobSummaries')
|
@@ -152,6 +153,7 @@ module Aws::TranscribeService
|
|
152
153
|
SubtitleFileUris = Shapes::ListShape.new(name: 'SubtitleFileUris')
|
153
154
|
SubtitleFormat = Shapes::StringShape.new(name: 'SubtitleFormat')
|
154
155
|
SubtitleFormats = Shapes::ListShape.new(name: 'SubtitleFormats')
|
156
|
+
SubtitleOutputStartIndex = Shapes::IntegerShape.new(name: 'SubtitleOutputStartIndex')
|
155
157
|
Subtitles = Shapes::StructureShape.new(name: 'Subtitles')
|
156
158
|
SubtitlesOutput = Shapes::StructureShape.new(name: 'SubtitlesOutput')
|
157
159
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
@@ -556,7 +558,7 @@ module Aws::TranscribeService
|
|
556
558
|
MedicalTranscriptionJob.add_member(:medical_transcription_job_name, Shapes::ShapeRef.new(shape: TranscriptionJobName, location_name: "MedicalTranscriptionJobName"))
|
557
559
|
MedicalTranscriptionJob.add_member(:transcription_job_status, Shapes::ShapeRef.new(shape: TranscriptionJobStatus, location_name: "TranscriptionJobStatus"))
|
558
560
|
MedicalTranscriptionJob.add_member(:language_code, Shapes::ShapeRef.new(shape: LanguageCode, location_name: "LanguageCode"))
|
559
|
-
MedicalTranscriptionJob.add_member(:media_sample_rate_hertz, Shapes::ShapeRef.new(shape:
|
561
|
+
MedicalTranscriptionJob.add_member(:media_sample_rate_hertz, Shapes::ShapeRef.new(shape: MedicalMediaSampleRateHertz, location_name: "MediaSampleRateHertz"))
|
560
562
|
MedicalTranscriptionJob.add_member(:media_format, Shapes::ShapeRef.new(shape: MediaFormat, location_name: "MediaFormat"))
|
561
563
|
MedicalTranscriptionJob.add_member(:media, Shapes::ShapeRef.new(shape: Media, location_name: "Media"))
|
562
564
|
MedicalTranscriptionJob.add_member(:transcript, Shapes::ShapeRef.new(shape: MedicalTranscript, location_name: "Transcript"))
|
@@ -665,7 +667,7 @@ module Aws::TranscribeService
|
|
665
667
|
|
666
668
|
StartMedicalTranscriptionJobRequest.add_member(:medical_transcription_job_name, Shapes::ShapeRef.new(shape: TranscriptionJobName, required: true, location_name: "MedicalTranscriptionJobName"))
|
667
669
|
StartMedicalTranscriptionJobRequest.add_member(:language_code, Shapes::ShapeRef.new(shape: LanguageCode, required: true, location_name: "LanguageCode"))
|
668
|
-
StartMedicalTranscriptionJobRequest.add_member(:media_sample_rate_hertz, Shapes::ShapeRef.new(shape:
|
670
|
+
StartMedicalTranscriptionJobRequest.add_member(:media_sample_rate_hertz, Shapes::ShapeRef.new(shape: MedicalMediaSampleRateHertz, location_name: "MediaSampleRateHertz"))
|
669
671
|
StartMedicalTranscriptionJobRequest.add_member(:media_format, Shapes::ShapeRef.new(shape: MediaFormat, location_name: "MediaFormat"))
|
670
672
|
StartMedicalTranscriptionJobRequest.add_member(:media, Shapes::ShapeRef.new(shape: Media, required: true, location_name: "Media"))
|
671
673
|
StartMedicalTranscriptionJobRequest.add_member(:output_bucket_name, Shapes::ShapeRef.new(shape: OutputBucketName, required: true, location_name: "OutputBucketName"))
|
@@ -712,10 +714,12 @@ module Aws::TranscribeService
|
|
712
714
|
SubtitleFormats.member = Shapes::ShapeRef.new(shape: SubtitleFormat)
|
713
715
|
|
714
716
|
Subtitles.add_member(:formats, Shapes::ShapeRef.new(shape: SubtitleFormats, location_name: "Formats"))
|
717
|
+
Subtitles.add_member(:output_start_index, Shapes::ShapeRef.new(shape: SubtitleOutputStartIndex, location_name: "OutputStartIndex"))
|
715
718
|
Subtitles.struct_class = Types::Subtitles
|
716
719
|
|
717
720
|
SubtitlesOutput.add_member(:formats, Shapes::ShapeRef.new(shape: SubtitleFormats, location_name: "Formats"))
|
718
721
|
SubtitlesOutput.add_member(:subtitle_file_uris, Shapes::ShapeRef.new(shape: SubtitleFileUris, location_name: "SubtitleFileUris"))
|
722
|
+
SubtitlesOutput.add_member(:output_start_index, Shapes::ShapeRef.new(shape: SubtitleOutputStartIndex, location_name: "OutputStartIndex"))
|
719
723
|
SubtitlesOutput.struct_class = Types::SubtitlesOutput
|
720
724
|
|
721
725
|
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|