aws-sdk-transcribeservice 1.3.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 403fb45eb51b4b0fa3c3716ff83ad78d05ebf28c
4
- data.tar.gz: cc67830830bfc104779026fc41b7e01ffce22a80
3
+ metadata.gz: 5f74d1a22feadf4fc49af6a92caf172e43cb16b8
4
+ data.tar.gz: 2eaa5aa202556dbae52467b89d0a024fdb9e5495
5
5
  SHA512:
6
- metadata.gz: 1e8857ce4519db1057f1c8b49bc48168c32260279032f65191237aea557602a8a8589c2ab6d3c35c47d3f3de6f6fb7c9620016089e2eb1abfee885fb60155380
7
- data.tar.gz: bf1fab7d5978b39c6558dee222a6c43abd31e6700e9ff8022ef79c59b2088e104c9cd6dee413927bebabb4cdcd0e34ab0ed5189fe513b811d09859de4108a362
6
+ metadata.gz: db123643c6f9f44f6eb870b3dfb61c03b8ad458e65d61e66779e1ede61ff8956bbd7743c15937a1d4430fb17c786675132e646d4d4ddbbfd56256683873ce101
7
+ data.tar.gz: ed50df32b99f3fb8a49ed778146e1575718070204e52bba3d80fab80bcba0a01b54658e1caeb7c386faf6dbafff8651fc7e13c330b53bd58d1cb4391114c4f32
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-transcribeservice/customizations'
42
42
  # @service
43
43
  module Aws::TranscribeService
44
44
 
45
- GEM_VERSION = '1.3.0'
45
+ GEM_VERSION = '1.4.0'
46
46
 
47
47
  end
@@ -267,6 +267,7 @@ module Aws::TranscribeService
267
267
  # resp.transcription_job.settings.vocabulary_name #=> String
268
268
  # resp.transcription_job.settings.show_speaker_labels #=> Boolean
269
269
  # resp.transcription_job.settings.max_speaker_labels #=> Integer
270
+ # resp.transcription_job.settings.channel_identification #=> Boolean
270
271
  #
271
272
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/GetTranscriptionJob AWS API Documentation
272
273
  #
@@ -488,6 +489,7 @@ module Aws::TranscribeService
488
489
  # vocabulary_name: "VocabularyName",
489
490
  # show_speaker_labels: false,
490
491
  # max_speaker_labels: 1,
492
+ # channel_identification: false,
491
493
  # },
492
494
  # })
493
495
  #
@@ -506,6 +508,7 @@ module Aws::TranscribeService
506
508
  # resp.transcription_job.settings.vocabulary_name #=> String
507
509
  # resp.transcription_job.settings.show_speaker_labels #=> Boolean
508
510
  # resp.transcription_job.settings.max_speaker_labels #=> Integer
511
+ # resp.transcription_job.settings.channel_identification #=> Boolean
509
512
  #
510
513
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/StartTranscriptionJob AWS API Documentation
511
514
  #
@@ -573,7 +576,7 @@ module Aws::TranscribeService
573
576
  params: params,
574
577
  config: config)
575
578
  context[:gem_name] = 'aws-sdk-transcribeservice'
576
- context[:gem_version] = '1.3.0'
579
+ context[:gem_version] = '1.4.0'
577
580
  Seahorse::Client::Request.new(handlers, context)
578
581
  end
579
582
 
@@ -121,6 +121,7 @@ module Aws::TranscribeService
121
121
  Settings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: VocabularyName, location_name: "VocabularyName"))
122
122
  Settings.add_member(:show_speaker_labels, Shapes::ShapeRef.new(shape: Boolean, location_name: "ShowSpeakerLabels"))
123
123
  Settings.add_member(:max_speaker_labels, Shapes::ShapeRef.new(shape: MaxSpeakers, location_name: "MaxSpeakerLabels"))
124
+ Settings.add_member(:channel_identification, Shapes::ShapeRef.new(shape: Boolean, location_name: "ChannelIdentification"))
124
125
  Settings.struct_class = Types::Settings
125
126
 
126
127
  StartTranscriptionJobRequest.add_member(:transcription_job_name, Shapes::ShapeRef.new(shape: TranscriptionJobName, required: true, location_name: "TranscriptionJobName"))
@@ -364,6 +364,7 @@ module Aws::TranscribeService
364
364
  # vocabulary_name: "VocabularyName",
365
365
  # show_speaker_labels: false,
366
366
  # max_speaker_labels: 1,
367
+ # channel_identification: false,
367
368
  # }
368
369
  #
369
370
  # @!attribute [rw] vocabulary_name
@@ -372,10 +373,15 @@ module Aws::TranscribeService
372
373
  # @return [String]
373
374
  #
374
375
  # @!attribute [rw] show_speaker_labels
375
- # Determines whether the transcription job should use speaker
376
- # recognition to identify different speakers in the input audio. If
377
- # you set the `ShowSpeakerLabels` field to true, you must also set the
378
- # maximum number of speaker labels `MaxSpeakerLabels` field.
376
+ # Determines whether the transcription job uses speaker recognition to
377
+ # identify different speakers in the input audio. Speaker recognition
378
+ # labels individual speakers in the audio file. If you set the
379
+ # `ShowSpeakerLabels` field to true, you must also set the maximum
380
+ # number of speaker labels `MaxSpeakerLabels` field.
381
+ #
382
+ # You can't set both `ShowSpeakerLabels` and `ChannelIdentification`
383
+ # in the same request. If you set both, your request returns a
384
+ # `BadRequestException`.
379
385
  # @return [Boolean]
380
386
  #
381
387
  # @!attribute [rw] max_speaker_labels
@@ -386,12 +392,28 @@ module Aws::TranscribeService
386
392
  # to true.
387
393
  # @return [Integer]
388
394
  #
395
+ # @!attribute [rw] channel_identification
396
+ # Instructs Amazon Transcribe to process each audio channel separately
397
+ # and then merge the transcription output of each channel into a
398
+ # single transcription.
399
+ #
400
+ # Amazon Transcribe also produces a transcription of each item
401
+ # detected on an audio channel, including the start time and end time
402
+ # of the item and alternative transcriptions of the item including the
403
+ # confidence that Amazon Transcribe has in the transcription.
404
+ #
405
+ # You can't set both `ShowSpeakerLabels` and `ChannelIdentification`
406
+ # in the same request. If you set both, your request returns a
407
+ # `BadRequestException`.
408
+ # @return [Boolean]
409
+ #
389
410
  # @see http://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/Settings AWS API Documentation
390
411
  #
391
412
  class Settings < Struct.new(
392
413
  :vocabulary_name,
393
414
  :show_speaker_labels,
394
- :max_speaker_labels)
415
+ :max_speaker_labels,
416
+ :channel_identification)
395
417
  include Aws::Structure
396
418
  end
397
419
 
@@ -411,6 +433,7 @@ module Aws::TranscribeService
411
433
  # vocabulary_name: "VocabularyName",
412
434
  # show_speaker_labels: false,
413
435
  # max_speaker_labels: 1,
436
+ # channel_identification: false,
414
437
  # },
415
438
  # }
416
439
  #
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.3.0
4
+ version: 1.4.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: 2018-07-09 00:00:00.000000000 Z
11
+ date: 2018-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core