aws-sdk-transcribeservice 1.28.0 → 1.29.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: acdf2c7590e21ec56c3ee1a72f3e7f15ae6890bd
4
- data.tar.gz: f1f92624a698a531a01491ec1a8f8d9988f2aa35
3
+ metadata.gz: 4a40b997be4f2efefecec9bb09057302ccdecbbc
4
+ data.tar.gz: fa56320b4d2c8d74a3e571423e0ff5718cfc3413
5
5
  SHA512:
6
- metadata.gz: f55316c5174ce816518e394c10f9d2d28c694d6afbe6c346b8a2007d683b37c7a310e962c9a99b49e06cabc491b594325377a9d9cb88610820cf899661c90aa1
7
- data.tar.gz: adc0ad15afe1c16ac26b41676e886f54613ff1200ec0d008f0a956ff963da2922717867443189a41c6ce164b533c53fd6b47ba4b6baa808682394c7c622d693e
6
+ metadata.gz: 1490b8cefc510f47affc1d85faae1b6c9148d26563e23016cbef31183bc7b0b3ab3b232aa0691962e133dc7c6c1d3fe5028d2dde321c33345580f62f9860c9ff
7
+ data.tar.gz: 53958530f0d33e83d4df70e07323c4ed2eb18b8feba6ffe9f03b0a388159f76a3bceeaa854f44e9708aed7f07ee1e737e431e2d638ada1b374f09f320bf69385
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-transcribeservice/customizations'
42
42
  # @service
43
43
  module Aws::TranscribeService
44
44
 
45
- GEM_VERSION = '1.28.0'
45
+ GEM_VERSION = '1.29.0'
46
46
 
47
47
  end
@@ -588,7 +588,7 @@ module Aws::TranscribeService
588
588
  # The language code for the language used in the input media file.
589
589
  #
590
590
  # @option params [Integer] :media_sample_rate_hertz
591
- # The sample rate of the audio track in the input media file in Hertz.
591
+ # The sample rate, in Hertz, of the audio track in the input media file.
592
592
  #
593
593
  # If you do not specify the media sample rate, Amazon Transcribe
594
594
  # determines the sample rate. If you specify the sample rate, it must
@@ -599,12 +599,6 @@ module Aws::TranscribeService
599
599
  # @option params [String] :media_format
600
600
  # The format of the input media file.
601
601
  #
602
- # If you do not specify the format of the media file, Amazon Transcribe
603
- # determines the format. If the format is not recognized, Amazon
604
- # Transcribe returns an `InternalFailureException` exception. If you
605
- # specify the format, it must match the format detected by Amazon
606
- # Transcribe, otherwise you get an `InternalFailureException` exception.
607
- #
608
602
  # @option params [required, Types::Media] :media
609
603
  # An object that describes the input media for a transcription job.
610
604
  #
@@ -631,6 +625,8 @@ module Aws::TranscribeService
631
625
  #
632
626
  # [1]: https://docs.aws.amazon.com/transcribe/latest/dg/security_iam_id-based-policy-examples.html#auth-role-iam-user
633
627
  #
628
+ # @option params [String] :output_encryption_kms_key_id
629
+ #
634
630
  # @option params [Types::Settings] :settings
635
631
  # A `Settings` object that provides optional settings for a
636
632
  # transcription job.
@@ -650,6 +646,7 @@ module Aws::TranscribeService
650
646
  # media_file_uri: "Uri",
651
647
  # },
652
648
  # output_bucket_name: "OutputBucketName",
649
+ # output_encryption_kms_key_id: "KMSKeyId",
653
650
  # settings: {
654
651
  # vocabulary_name: "VocabularyName",
655
652
  # show_speaker_labels: false,
@@ -766,7 +763,7 @@ module Aws::TranscribeService
766
763
  params: params,
767
764
  config: config)
768
765
  context[:gem_name] = 'aws-sdk-transcribeservice'
769
- context[:gem_version] = '1.28.0'
766
+ context[:gem_version] = '1.29.0'
770
767
  Seahorse::Client::Request.new(handlers, context)
771
768
  end
772
769
 
@@ -25,6 +25,7 @@ module Aws::TranscribeService
25
25
  GetVocabularyRequest = Shapes::StructureShape.new(name: 'GetVocabularyRequest')
26
26
  GetVocabularyResponse = Shapes::StructureShape.new(name: 'GetVocabularyResponse')
27
27
  InternalFailureException = Shapes::StructureShape.new(name: 'InternalFailureException')
28
+ KMSKeyId = Shapes::StringShape.new(name: 'KMSKeyId')
28
29
  LanguageCode = Shapes::StringShape.new(name: 'LanguageCode')
29
30
  LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
30
31
  ListTranscriptionJobsRequest = Shapes::StructureShape.new(name: 'ListTranscriptionJobsRequest')
@@ -150,6 +151,7 @@ module Aws::TranscribeService
150
151
  StartTranscriptionJobRequest.add_member(:media_format, Shapes::ShapeRef.new(shape: MediaFormat, location_name: "MediaFormat"))
151
152
  StartTranscriptionJobRequest.add_member(:media, Shapes::ShapeRef.new(shape: Media, required: true, location_name: "Media"))
152
153
  StartTranscriptionJobRequest.add_member(:output_bucket_name, Shapes::ShapeRef.new(shape: OutputBucketName, location_name: "OutputBucketName"))
154
+ StartTranscriptionJobRequest.add_member(:output_encryption_kms_key_id, Shapes::ShapeRef.new(shape: KMSKeyId, location_name: "OutputEncryptionKMSKeyId"))
153
155
  StartTranscriptionJobRequest.add_member(:settings, Shapes::ShapeRef.new(shape: Settings, location_name: "Settings"))
154
156
  StartTranscriptionJobRequest.struct_class = Types::StartTranscriptionJobRequest
155
157
 
@@ -548,6 +548,7 @@ module Aws::TranscribeService
548
548
  # media_file_uri: "Uri",
549
549
  # },
550
550
  # output_bucket_name: "OutputBucketName",
551
+ # output_encryption_kms_key_id: "KMSKeyId",
551
552
  # settings: {
552
553
  # vocabulary_name: "VocabularyName",
553
554
  # show_speaker_labels: false,
@@ -567,7 +568,8 @@ module Aws::TranscribeService
567
568
  # @return [String]
568
569
  #
569
570
  # @!attribute [rw] media_sample_rate_hertz
570
- # The sample rate of the audio track in the input media file in Hertz.
571
+ # The sample rate, in Hertz, of the audio track in the input media
572
+ # file.
571
573
  #
572
574
  # If you do not specify the media sample rate, Amazon Transcribe
573
575
  # determines the sample rate. If you specify the sample rate, it must
@@ -578,13 +580,6 @@ module Aws::TranscribeService
578
580
  #
579
581
  # @!attribute [rw] media_format
580
582
  # The format of the input media file.
581
- #
582
- # If you do not specify the format of the media file, Amazon
583
- # Transcribe determines the format. If the format is not recognized,
584
- # Amazon Transcribe returns an `InternalFailureException` exception.
585
- # If you specify the format, it must match the format detected by
586
- # Amazon Transcribe, otherwise you get an `InternalFailureException`
587
- # exception.
588
583
  # @return [String]
589
584
  #
590
585
  # @!attribute [rw] media
@@ -617,6 +612,9 @@ module Aws::TranscribeService
617
612
  # [1]: https://docs.aws.amazon.com/transcribe/latest/dg/security_iam_id-based-policy-examples.html#auth-role-iam-user
618
613
  # @return [String]
619
614
  #
615
+ # @!attribute [rw] output_encryption_kms_key_id
616
+ # @return [String]
617
+ #
620
618
  # @!attribute [rw] settings
621
619
  # A `Settings` object that provides optional settings for a
622
620
  # transcription job.
@@ -631,6 +629,7 @@ module Aws::TranscribeService
631
629
  :media_format,
632
630
  :media,
633
631
  :output_bucket_name,
632
+ :output_encryption_kms_key_id,
634
633
  :settings)
635
634
  include Aws::Structure
636
635
  end
@@ -771,7 +770,7 @@ module Aws::TranscribeService
771
770
  include Aws::Structure
772
771
  end
773
772
 
774
- # Provides a summary of information about a transcription job. .
773
+ # Provides a summary of information about a transcription job.
775
774
  #
776
775
  # @!attribute [rw] transcription_job_name
777
776
  # The name of the transcription job.
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.28.0
4
+ version: 1.29.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-09-04 00:00:00.000000000 Z
11
+ date: 2019-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core