aws-sdk-transcribeservice 1.31.0 → 1.32.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: f6befc84c8cbc06365801a843c9d358a5ce693b5
4
- data.tar.gz: c99adf2247f69597c7b69b026792100e6c48ff05
3
+ metadata.gz: 12e42fb143f4edab685f4d77a9dc2e56388f6bf7
4
+ data.tar.gz: 4d84afc0a457b961a9303d3c1303ec820acac268
5
5
  SHA512:
6
- metadata.gz: fcb7b0ef3e532d5ea6f8efb8232f54f259bf28bd83484743b330b9d9e07b093d4c5cc8624ef7b3290764b8d07e05a6ef62b5b828aacee7a127324bbc06ffb110
7
- data.tar.gz: f6c229b224add1c656fee81f2144e275413a82dbfc99be5d9789a9b5c6a8929cf4785a7a824a592e98416ec135886e2dcbaa4e5f811772bbdedbaae812adaf4b
6
+ metadata.gz: c1c0e4a993e9e241b2d419ecd794779c7836df2818a02ae46cd0d17b83235e8c979c09e15daea01fb3a3a95e5e401e5ca2f3e610924f25bc49a1f566cf6c1dc9
7
+ data.tar.gz: fbc6cda208b1fb2a5b2e92520d3026f8edf012de012a5c1a8192ab0ce32d49902ddbbee7a9768f0bb9c657c2704fd2260c896cd52d8081250825c8899380e633
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-transcribeservice/customizations'
42
42
  # @service
43
43
  module Aws::TranscribeService
44
44
 
45
- GEM_VERSION = '1.31.0'
45
+ GEM_VERSION = '1.32.0'
46
46
 
47
47
  end
@@ -414,6 +414,8 @@ module Aws::TranscribeService
414
414
  # resp.transcription_job.settings.show_speaker_labels #=> Boolean
415
415
  # resp.transcription_job.settings.max_speaker_labels #=> Integer
416
416
  # resp.transcription_job.settings.channel_identification #=> Boolean
417
+ # resp.transcription_job.settings.show_alternatives #=> Boolean
418
+ # resp.transcription_job.settings.max_alternatives #=> Integer
417
419
  #
418
420
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/GetTranscriptionJob AWS API Documentation
419
421
  #
@@ -682,6 +684,8 @@ module Aws::TranscribeService
682
684
  # show_speaker_labels: false,
683
685
  # max_speaker_labels: 1,
684
686
  # channel_identification: false,
687
+ # show_alternatives: false,
688
+ # max_alternatives: 1,
685
689
  # },
686
690
  # })
687
691
  #
@@ -701,6 +705,8 @@ module Aws::TranscribeService
701
705
  # resp.transcription_job.settings.show_speaker_labels #=> Boolean
702
706
  # resp.transcription_job.settings.max_speaker_labels #=> Integer
703
707
  # resp.transcription_job.settings.channel_identification #=> Boolean
708
+ # resp.transcription_job.settings.show_alternatives #=> Boolean
709
+ # resp.transcription_job.settings.max_alternatives #=> Integer
704
710
  #
705
711
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/StartTranscriptionJob AWS API Documentation
706
712
  #
@@ -793,7 +799,7 @@ module Aws::TranscribeService
793
799
  params: params,
794
800
  config: config)
795
801
  context[:gem_name] = 'aws-sdk-transcribeservice'
796
- context[:gem_version] = '1.31.0'
802
+ context[:gem_version] = '1.32.0'
797
803
  Seahorse::Client::Request.new(handlers, context)
798
804
  end
799
805
 
@@ -32,6 +32,7 @@ module Aws::TranscribeService
32
32
  ListTranscriptionJobsResponse = Shapes::StructureShape.new(name: 'ListTranscriptionJobsResponse')
33
33
  ListVocabulariesRequest = Shapes::StructureShape.new(name: 'ListVocabulariesRequest')
34
34
  ListVocabulariesResponse = Shapes::StructureShape.new(name: 'ListVocabulariesResponse')
35
+ MaxAlternatives = Shapes::IntegerShape.new(name: 'MaxAlternatives')
35
36
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
36
37
  MaxSpeakers = Shapes::IntegerShape.new(name: 'MaxSpeakers')
37
38
  Media = Shapes::StructureShape.new(name: 'Media')
@@ -143,6 +144,8 @@ module Aws::TranscribeService
143
144
  Settings.add_member(:show_speaker_labels, Shapes::ShapeRef.new(shape: Boolean, location_name: "ShowSpeakerLabels"))
144
145
  Settings.add_member(:max_speaker_labels, Shapes::ShapeRef.new(shape: MaxSpeakers, location_name: "MaxSpeakerLabels"))
145
146
  Settings.add_member(:channel_identification, Shapes::ShapeRef.new(shape: Boolean, location_name: "ChannelIdentification"))
147
+ Settings.add_member(:show_alternatives, Shapes::ShapeRef.new(shape: Boolean, location_name: "ShowAlternatives"))
148
+ Settings.add_member(:max_alternatives, Shapes::ShapeRef.new(shape: MaxAlternatives, location_name: "MaxAlternatives"))
146
149
  Settings.struct_class = Types::Settings
147
150
 
148
151
  StartTranscriptionJobRequest.add_member(:transcription_job_name, Shapes::ShapeRef.new(shape: TranscriptionJobName, required: true, location_name: "TranscriptionJobName"))
@@ -484,6 +484,8 @@ module Aws::TranscribeService
484
484
  # show_speaker_labels: false,
485
485
  # max_speaker_labels: 1,
486
486
  # channel_identification: false,
487
+ # show_alternatives: false,
488
+ # max_alternatives: 1,
487
489
  # }
488
490
  #
489
491
  # @!attribute [rw] vocabulary_name
@@ -526,13 +528,28 @@ module Aws::TranscribeService
526
528
  # `BadRequestException`.
527
529
  # @return [Boolean]
528
530
  #
531
+ # @!attribute [rw] show_alternatives
532
+ # Determines whether the transcription contains alternative
533
+ # transcriptions. If you set the `ShowAlternatives` field to true, you
534
+ # must also set the maximum number of alternatives to return in the
535
+ # `MaxAlternatives` field.
536
+ # @return [Boolean]
537
+ #
538
+ # @!attribute [rw] max_alternatives
539
+ # The number of alternative transcriptions that the service should
540
+ # return. If you specify the `MaxAlternatives` field, you must set the
541
+ # `ShowAlternatives` field to true.
542
+ # @return [Integer]
543
+ #
529
544
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/Settings AWS API Documentation
530
545
  #
531
546
  class Settings < Struct.new(
532
547
  :vocabulary_name,
533
548
  :show_speaker_labels,
534
549
  :max_speaker_labels,
535
- :channel_identification)
550
+ :channel_identification,
551
+ :show_alternatives,
552
+ :max_alternatives)
536
553
  include Aws::Structure
537
554
  end
538
555
 
@@ -554,6 +571,8 @@ module Aws::TranscribeService
554
571
  # show_speaker_labels: false,
555
572
  # max_speaker_labels: 1,
556
573
  # channel_identification: false,
574
+ # show_alternatives: false,
575
+ # max_alternatives: 1,
557
576
  # },
558
577
  # }
559
578
  #
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.31.0
4
+ version: 1.32.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-11-12 00:00:00.000000000 Z
11
+ date: 2019-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core