aws-sdk-medialive 1.186.0 → 1.188.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
  SHA256:
3
- metadata.gz: 82bca86a368433be24972cca06349c8e7a8d0c9c6a7e6406507426595ce7e9a6
4
- data.tar.gz: 7bcc5dfaea6f3e70f6197720cad3d4a031055aa1099dfb459127c1e8572707ae
3
+ metadata.gz: f92b3fbc10eb3a2ff4516141a86796237ae81d68dccc50eebbbd38d7464012e4
4
+ data.tar.gz: 696ee44020a5607ae6368ab5aa384ab142c59e6e0e8156f2e0da4acca3716a8e
5
5
  SHA512:
6
- metadata.gz: 7d5680fb0dc46760cf142cdf3dd20570baad56eef379a5ccc88899a5b1eeca25177c1e6054470581bd802d2b8afa5fd2e7b9f6d35aa227fbb7a87bd7e1974ef3
7
- data.tar.gz: 90932f9a2f48d454779853dec2f249ffd378a3d1682a514f9cac353f62d348847e36164258ca4abc24f8b43f5ebc17edc9d9b15901c4c692bd183958d361d3cb
6
+ metadata.gz: 3926da936fe720a0a3c00299588a3ba25e1147fa32b5039fade37a265983c36db49fedb8722c1cc27a535db18227e1b6885a3b441dad70f596695664e10145fa
7
+ data.tar.gz: 47df23633dc93260c6ab5a54211e32307da9923aeb33797a700e064241b99ecf364c32ef49fa548e8b4a4b025ce86530cbd34818ad1518a66d92f207abf8eabf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.188.0 (2026-05-27)
5
+ ------------------
6
+
7
+ * Feature - AWS Elemental MediaLive now supports Smart Subtitles, a new caption source that uses AWS Elemental Inference to automatically generate WebVTT and TTML captions from source audio. Available in English, Spanish, French, German, Italian, and Portuguese.
8
+
9
+ 1.187.0 (2026-05-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.186.0 (2026-05-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.186.0
1
+ 1.188.0
@@ -199,7 +199,7 @@ module Aws::MediaLive
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::MediaLive
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -1942,6 +1940,8 @@ module Aws::MediaLive
1942
1940
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
1943
1941
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
1944
1942
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.page_number #=> String
1943
+ # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.caption_synchronization_mode #=> String, one of "NO_VIDEO_DELAY", "VIDEO_ALIGNED_CAPTIONS"
1944
+ # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.inference_feed_output #=> String
1945
1945
  # resp.channel.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
1946
1946
  # resp.channel.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
1947
1947
  # resp.channel.input_attachments[0].input_settings.filter_strength #=> Integer
@@ -2008,6 +2008,9 @@ module Aws::MediaLive
2008
2008
  # resp.channel.channel_security_groups #=> Array
2009
2009
  # resp.channel.channel_security_groups[0] #=> String
2010
2010
  # resp.channel.inference_settings.feed_arn #=> String
2011
+ # resp.channel.inference_settings.audio_feed_inputs #=> Array
2012
+ # resp.channel.inference_settings.audio_feed_inputs[0].audio_selector_name #=> String
2013
+ # resp.channel.inference_settings.audio_feed_inputs[0].feed_input #=> String
2011
2014
  #
2012
2015
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel AWS API Documentation
2013
2016
  #
@@ -3488,6 +3491,8 @@ module Aws::MediaLive
3488
3491
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
3489
3492
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
3490
3493
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.page_number #=> String
3494
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.caption_synchronization_mode #=> String, one of "NO_VIDEO_DELAY", "VIDEO_ALIGNED_CAPTIONS"
3495
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.inference_feed_output #=> String
3491
3496
  # resp.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
3492
3497
  # resp.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
3493
3498
  # resp.input_attachments[0].input_settings.filter_strength #=> Integer
@@ -3554,6 +3559,9 @@ module Aws::MediaLive
3554
3559
  # resp.channel_security_groups #=> Array
3555
3560
  # resp.channel_security_groups[0] #=> String
3556
3561
  # resp.inference_settings.feed_arn #=> String
3562
+ # resp.inference_settings.audio_feed_inputs #=> Array
3563
+ # resp.inference_settings.audio_feed_inputs[0].audio_selector_name #=> String
3564
+ # resp.inference_settings.audio_feed_inputs[0].feed_input #=> String
3557
3565
  #
3558
3566
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteChannel AWS API Documentation
3559
3567
  #
@@ -4757,6 +4765,8 @@ module Aws::MediaLive
4757
4765
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
4758
4766
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
4759
4767
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.page_number #=> String
4768
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.caption_synchronization_mode #=> String, one of "NO_VIDEO_DELAY", "VIDEO_ALIGNED_CAPTIONS"
4769
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.inference_feed_output #=> String
4760
4770
  # resp.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
4761
4771
  # resp.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
4762
4772
  # resp.input_attachments[0].input_settings.filter_strength #=> Integer
@@ -4823,6 +4833,9 @@ module Aws::MediaLive
4823
4833
  # resp.channel_security_groups #=> Array
4824
4834
  # resp.channel_security_groups[0] #=> String
4825
4835
  # resp.inference_settings.feed_arn #=> String
4836
+ # resp.inference_settings.audio_feed_inputs #=> Array
4837
+ # resp.inference_settings.audio_feed_inputs[0].audio_selector_name #=> String
4838
+ # resp.inference_settings.audio_feed_inputs[0].feed_input #=> String
4826
4839
  #
4827
4840
  #
4828
4841
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -5638,6 +5651,8 @@ module Aws::MediaLive
5638
5651
  # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
5639
5652
  # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
5640
5653
  # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.page_number #=> String
5654
+ # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.caption_synchronization_mode #=> String, one of "NO_VIDEO_DELAY", "VIDEO_ALIGNED_CAPTIONS"
5655
+ # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.inference_feed_output #=> String
5641
5656
  # resp.channels[0].input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
5642
5657
  # resp.channels[0].input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
5643
5658
  # resp.channels[0].input_attachments[0].input_settings.filter_strength #=> Integer
@@ -5697,6 +5712,9 @@ module Aws::MediaLive
5697
5712
  # resp.channels[0].channel_security_groups #=> Array
5698
5713
  # resp.channels[0].channel_security_groups[0] #=> String
5699
5714
  # resp.channels[0].inference_settings.feed_arn #=> String
5715
+ # resp.channels[0].inference_settings.audio_feed_inputs #=> Array
5716
+ # resp.channels[0].inference_settings.audio_feed_inputs[0].audio_selector_name #=> String
5717
+ # resp.channels[0].inference_settings.audio_feed_inputs[0].feed_input #=> String
5700
5718
  # resp.next_token #=> String
5701
5719
  #
5702
5720
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListChannels AWS API Documentation
@@ -7282,6 +7300,8 @@ module Aws::MediaLive
7282
7300
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
7283
7301
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
7284
7302
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.page_number #=> String
7303
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.caption_synchronization_mode #=> String, one of "NO_VIDEO_DELAY", "VIDEO_ALIGNED_CAPTIONS"
7304
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.inference_feed_output #=> String
7285
7305
  # resp.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
7286
7306
  # resp.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
7287
7307
  # resp.input_attachments[0].input_settings.filter_strength #=> Integer
@@ -7348,6 +7368,9 @@ module Aws::MediaLive
7348
7368
  # resp.channel_security_groups #=> Array
7349
7369
  # resp.channel_security_groups[0] #=> String
7350
7370
  # resp.inference_settings.feed_arn #=> String
7371
+ # resp.inference_settings.audio_feed_inputs #=> Array
7372
+ # resp.inference_settings.audio_feed_inputs[0].audio_selector_name #=> String
7373
+ # resp.inference_settings.audio_feed_inputs[0].feed_input #=> String
7351
7374
  #
7352
7375
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartChannel AWS API Documentation
7353
7376
  #
@@ -8358,6 +8381,8 @@ module Aws::MediaLive
8358
8381
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
8359
8382
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
8360
8383
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.page_number #=> String
8384
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.caption_synchronization_mode #=> String, one of "NO_VIDEO_DELAY", "VIDEO_ALIGNED_CAPTIONS"
8385
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.inference_feed_output #=> String
8361
8386
  # resp.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
8362
8387
  # resp.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
8363
8388
  # resp.input_attachments[0].input_settings.filter_strength #=> Integer
@@ -8424,6 +8449,9 @@ module Aws::MediaLive
8424
8449
  # resp.channel_security_groups #=> Array
8425
8450
  # resp.channel_security_groups[0] #=> String
8426
8451
  # resp.inference_settings.feed_arn #=> String
8452
+ # resp.inference_settings.audio_feed_inputs #=> Array
8453
+ # resp.inference_settings.audio_feed_inputs[0].audio_selector_name #=> String
8454
+ # resp.inference_settings.audio_feed_inputs[0].feed_input #=> String
8427
8455
  #
8428
8456
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StopChannel AWS API Documentation
8429
8457
  #
@@ -9479,6 +9507,8 @@ module Aws::MediaLive
9479
9507
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
9480
9508
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
9481
9509
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.page_number #=> String
9510
+ # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.caption_synchronization_mode #=> String, one of "NO_VIDEO_DELAY", "VIDEO_ALIGNED_CAPTIONS"
9511
+ # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.inference_feed_output #=> String
9482
9512
  # resp.channel.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
9483
9513
  # resp.channel.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
9484
9514
  # resp.channel.input_attachments[0].input_settings.filter_strength #=> Integer
@@ -9545,6 +9575,9 @@ module Aws::MediaLive
9545
9575
  # resp.channel.channel_security_groups #=> Array
9546
9576
  # resp.channel.channel_security_groups[0] #=> String
9547
9577
  # resp.channel.inference_settings.feed_arn #=> String
9578
+ # resp.channel.inference_settings.audio_feed_inputs #=> Array
9579
+ # resp.channel.inference_settings.audio_feed_inputs[0].audio_selector_name #=> String
9580
+ # resp.channel.inference_settings.audio_feed_inputs[0].feed_input #=> String
9548
9581
  #
9549
9582
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
9550
9583
  #
@@ -10478,6 +10511,8 @@ module Aws::MediaLive
10478
10511
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
10479
10512
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
10480
10513
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.page_number #=> String
10514
+ # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.caption_synchronization_mode #=> String, one of "NO_VIDEO_DELAY", "VIDEO_ALIGNED_CAPTIONS"
10515
+ # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.inference_feed_output #=> String
10481
10516
  # resp.channel.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
10482
10517
  # resp.channel.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
10483
10518
  # resp.channel.input_attachments[0].input_settings.filter_strength #=> Integer
@@ -10544,6 +10579,9 @@ module Aws::MediaLive
10544
10579
  # resp.channel.channel_security_groups #=> Array
10545
10580
  # resp.channel.channel_security_groups[0] #=> String
10546
10581
  # resp.channel.inference_settings.feed_arn #=> String
10582
+ # resp.channel.inference_settings.audio_feed_inputs #=> Array
10583
+ # resp.channel.inference_settings.audio_feed_inputs[0].audio_selector_name #=> String
10584
+ # resp.channel.inference_settings.audio_feed_inputs[0].feed_input #=> String
10547
10585
  #
10548
10586
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelClass AWS API Documentation
10549
10587
  #
@@ -12086,6 +12124,8 @@ module Aws::MediaLive
12086
12124
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
12087
12125
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
12088
12126
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.page_number #=> String
12127
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.caption_synchronization_mode #=> String, one of "NO_VIDEO_DELAY", "VIDEO_ALIGNED_CAPTIONS"
12128
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.smart_subtitle_source_settings.inference_feed_output #=> String
12089
12129
  # resp.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
12090
12130
  # resp.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
12091
12131
  # resp.input_attachments[0].input_settings.filter_strength #=> Integer
@@ -12153,6 +12193,9 @@ module Aws::MediaLive
12153
12193
  # resp.channel_security_groups #=> Array
12154
12194
  # resp.channel_security_groups[0] #=> String
12155
12195
  # resp.inference_settings.feed_arn #=> String
12196
+ # resp.inference_settings.audio_feed_inputs #=> Array
12197
+ # resp.inference_settings.audio_feed_inputs[0].audio_selector_name #=> String
12198
+ # resp.inference_settings.audio_feed_inputs[0].feed_input #=> String
12156
12199
  #
12157
12200
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RestartChannelPipelines AWS API Documentation
12158
12201
  #
@@ -15493,7 +15536,7 @@ module Aws::MediaLive
15493
15536
  tracer: tracer
15494
15537
  )
15495
15538
  context[:gem_name] = 'aws-sdk-medialive'
15496
- context[:gem_version] = '1.186.0'
15539
+ context[:gem_version] = '1.188.0'
15497
15540
  Seahorse::Client::Request.new(handlers, context)
15498
15541
  end
15499
15542
 
@@ -54,6 +54,7 @@ module Aws::MediaLive
54
54
  AudioDescriptionAudioTypeControl = Shapes::StringShape.new(name: 'AudioDescriptionAudioTypeControl')
55
55
  AudioDescriptionLanguageCodeControl = Shapes::StringShape.new(name: 'AudioDescriptionLanguageCodeControl')
56
56
  AudioDolbyEDecode = Shapes::StructureShape.new(name: 'AudioDolbyEDecode')
57
+ AudioFeedInput = Shapes::StructureShape.new(name: 'AudioFeedInput')
57
58
  AudioHlsRenditionSelection = Shapes::StructureShape.new(name: 'AudioHlsRenditionSelection')
58
59
  AudioLanguageSelection = Shapes::StructureShape.new(name: 'AudioLanguageSelection')
59
60
  AudioLanguageSelectionPolicy = Shapes::StringShape.new(name: 'AudioLanguageSelectionPolicy')
@@ -134,6 +135,7 @@ module Aws::MediaLive
134
135
  CaptionRectangle = Shapes::StructureShape.new(name: 'CaptionRectangle')
135
136
  CaptionSelector = Shapes::StructureShape.new(name: 'CaptionSelector')
136
137
  CaptionSelectorSettings = Shapes::StructureShape.new(name: 'CaptionSelectorSettings')
138
+ CaptionSynchronizationMode = Shapes::StringShape.new(name: 'CaptionSynchronizationMode')
137
139
  CdiInputResolution = Shapes::StringShape.new(name: 'CdiInputResolution')
138
140
  CdiInputSpecification = Shapes::StructureShape.new(name: 'CdiInputSpecification')
139
141
  Channel = Shapes::StructureShape.new(name: 'Channel')
@@ -906,6 +908,7 @@ module Aws::MediaLive
906
908
  SignalMapMonitorDeploymentStatus = Shapes::StringShape.new(name: 'SignalMapMonitorDeploymentStatus')
907
909
  SignalMapStatus = Shapes::StringShape.new(name: 'SignalMapStatus')
908
910
  SignalMapSummary = Shapes::StructureShape.new(name: 'SignalMapSummary')
911
+ SmartSubtitleSourceSettings = Shapes::StructureShape.new(name: 'SmartSubtitleSourceSettings')
909
912
  SmoothGroupAudioOnlyTimecodeControl = Shapes::StringShape.new(name: 'SmoothGroupAudioOnlyTimecodeControl')
910
913
  SmoothGroupCertificateMode = Shapes::StringShape.new(name: 'SmoothGroupCertificateMode')
911
914
  SmoothGroupEventIdMode = Shapes::StringShape.new(name: 'SmoothGroupEventIdMode')
@@ -1167,6 +1170,7 @@ module Aws::MediaLive
1167
1170
  __listOfAdditionalDestinations = Shapes::ListShape.new(name: '__listOfAdditionalDestinations')
1168
1171
  __listOfAudioChannelMapping = Shapes::ListShape.new(name: '__listOfAudioChannelMapping')
1169
1172
  __listOfAudioDescription = Shapes::ListShape.new(name: '__listOfAudioDescription')
1173
+ __listOfAudioFeedInput = Shapes::ListShape.new(name: '__listOfAudioFeedInput')
1170
1174
  __listOfAudioSelector = Shapes::ListShape.new(name: '__listOfAudioSelector')
1171
1175
  __listOfAudioTrack = Shapes::ListShape.new(name: '__listOfAudioTrack')
1172
1176
  __listOfBatchFailedResultModel = Shapes::ListShape.new(name: '__listOfBatchFailedResultModel')
@@ -1240,6 +1244,7 @@ module Aws::MediaLive
1240
1244
  __listOfOutputDestination = Shapes::ListShape.new(name: '__listOfOutputDestination')
1241
1245
  __listOfOutputDestinationSettings = Shapes::ListShape.new(name: '__listOfOutputDestinationSettings')
1242
1246
  __listOfOutputGroup = Shapes::ListShape.new(name: '__listOfOutputGroup')
1247
+ __listOfOutputLocationRef = Shapes::ListShape.new(name: '__listOfOutputLocationRef')
1243
1248
  __listOfPipelineDetail = Shapes::ListShape.new(name: '__listOfPipelineDetail')
1244
1249
  __listOfPipelinePauseStateSettings = Shapes::ListShape.new(name: '__listOfPipelinePauseStateSettings')
1245
1250
  __listOfReservation = Shapes::ListShape.new(name: '__listOfReservation')
@@ -1403,6 +1408,10 @@ module Aws::MediaLive
1403
1408
  AudioDolbyEDecode.add_member(:program_selection, Shapes::ShapeRef.new(shape: DolbyEProgramSelection, required: true, location_name: "programSelection"))
1404
1409
  AudioDolbyEDecode.struct_class = Types::AudioDolbyEDecode
1405
1410
 
1411
+ AudioFeedInput.add_member(:audio_selector_name, Shapes::ShapeRef.new(shape: __string, location_name: "audioSelectorName"))
1412
+ AudioFeedInput.add_member(:feed_input, Shapes::ShapeRef.new(shape: __string, location_name: "feedInput"))
1413
+ AudioFeedInput.struct_class = Types::AudioFeedInput
1414
+
1406
1415
  AudioHlsRenditionSelection.add_member(:group_id, Shapes::ShapeRef.new(shape: __stringMin1, required: true, location_name: "groupId"))
1407
1416
  AudioHlsRenditionSelection.add_member(:name, Shapes::ShapeRef.new(shape: __stringMin1, required: true, location_name: "name"))
1408
1417
  AudioHlsRenditionSelection.struct_class = Types::AudioHlsRenditionSelection
@@ -1682,6 +1691,7 @@ module Aws::MediaLive
1682
1691
  CaptionSelectorSettings.add_member(:scte_20_source_settings, Shapes::ShapeRef.new(shape: Scte20SourceSettings, location_name: "scte20SourceSettings"))
1683
1692
  CaptionSelectorSettings.add_member(:scte_27_source_settings, Shapes::ShapeRef.new(shape: Scte27SourceSettings, location_name: "scte27SourceSettings"))
1684
1693
  CaptionSelectorSettings.add_member(:teletext_source_settings, Shapes::ShapeRef.new(shape: TeletextSourceSettings, location_name: "teletextSourceSettings"))
1694
+ CaptionSelectorSettings.add_member(:smart_subtitle_source_settings, Shapes::ShapeRef.new(shape: SmartSubtitleSourceSettings, location_name: "smartSubtitleSourceSettings"))
1685
1695
  CaptionSelectorSettings.struct_class = Types::CaptionSelectorSettings
1686
1696
 
1687
1697
  CdiInputSpecification.add_member(:resolution, Shapes::ShapeRef.new(shape: CdiInputResolution, location_name: "resolution"))
@@ -2624,6 +2634,7 @@ module Aws::MediaLive
2624
2634
  DescribeFollowerChannelSettings.struct_class = Types::DescribeFollowerChannelSettings
2625
2635
 
2626
2636
  DescribeInferenceSettings.add_member(:feed_arn, Shapes::ShapeRef.new(shape: __string, location_name: "feedArn"))
2637
+ DescribeInferenceSettings.add_member(:audio_feed_inputs, Shapes::ShapeRef.new(shape: __listOfAudioFeedInput, location_name: "audioFeedInputs"))
2627
2638
  DescribeInferenceSettings.struct_class = Types::DescribeInferenceSettings
2628
2639
 
2629
2640
  DescribeInputDeviceRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
@@ -3483,6 +3494,7 @@ module Aws::MediaLive
3483
3494
  ImmediateModeScheduleActionStartSettings.struct_class = Types::ImmediateModeScheduleActionStartSettings
3484
3495
 
3485
3496
  InferenceSettings.add_member(:feed_arn, Shapes::ShapeRef.new(shape: __string, location_name: "feedArn"))
3497
+ InferenceSettings.add_member(:audio_feed_inputs, Shapes::ShapeRef.new(shape: __listOfAudioFeedInput, location_name: "audioFeedInputs"))
3486
3498
  InferenceSettings.struct_class = Types::InferenceSettings
3487
3499
 
3488
3500
  Input.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
@@ -4938,6 +4950,10 @@ module Aws::MediaLive
4938
4950
  SignalMapSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
4939
4951
  SignalMapSummary.struct_class = Types::SignalMapSummary
4940
4952
 
4953
+ SmartSubtitleSourceSettings.add_member(:caption_synchronization_mode, Shapes::ShapeRef.new(shape: CaptionSynchronizationMode, location_name: "captionSynchronizationMode"))
4954
+ SmartSubtitleSourceSettings.add_member(:inference_feed_output, Shapes::ShapeRef.new(shape: __string, location_name: "inferenceFeedOutput"))
4955
+ SmartSubtitleSourceSettings.struct_class = Types::SmartSubtitleSourceSettings
4956
+
4941
4957
  Smpte2110ReceiverGroup.add_member(:sdp_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSdpSettings, location_name: "sdpSettings"))
4942
4958
  Smpte2110ReceiverGroup.struct_class = Types::Smpte2110ReceiverGroup
4943
4959
 
@@ -5938,6 +5954,8 @@ module Aws::MediaLive
5938
5954
 
5939
5955
  __listOfAudioDescription.member = Shapes::ShapeRef.new(shape: AudioDescription)
5940
5956
 
5957
+ __listOfAudioFeedInput.member = Shapes::ShapeRef.new(shape: AudioFeedInput)
5958
+
5941
5959
  __listOfAudioSelector.member = Shapes::ShapeRef.new(shape: AudioSelector)
5942
5960
 
5943
5961
  __listOfAudioTrack.member = Shapes::ShapeRef.new(shape: AudioTrack)
@@ -6084,6 +6102,8 @@ module Aws::MediaLive
6084
6102
 
6085
6103
  __listOfOutputGroup.member = Shapes::ShapeRef.new(shape: OutputGroup)
6086
6104
 
6105
+ __listOfOutputLocationRef.member = Shapes::ShapeRef.new(shape: OutputLocationRef)
6106
+
6087
6107
  __listOfPipelineDetail.member = Shapes::ShapeRef.new(shape: PipelineDetail)
6088
6108
 
6089
6109
  __listOfPipelinePauseStateSettings.member = Shapes::ShapeRef.new(shape: PipelinePauseStateSettings)
@@ -1775,6 +1775,10 @@ module Aws::MediaLive
1775
1775
  # Teletext Source Settings
1776
1776
  # @return [Types::TeletextSourceSettings]
1777
1777
  #
1778
+ # @!attribute [rw] smart_subtitle_source_settings
1779
+ # Smart Subtitle Source Settings
1780
+ # @return [Types::SmartSubtitleSourceSettings]
1781
+ #
1778
1782
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionSelectorSettings AWS API Documentation
1779
1783
  #
1780
1784
  class CaptionSelectorSettings < Struct.new(
@@ -1784,7 +1788,8 @@ module Aws::MediaLive
1784
1788
  :embedded_source_settings,
1785
1789
  :scte_20_source_settings,
1786
1790
  :scte_27_source_settings,
1787
- :teletext_source_settings)
1791
+ :teletext_source_settings,
1792
+ :smart_subtitle_source_settings)
1788
1793
  SENSITIVE = []
1789
1794
  include Aws::Structure
1790
1795
  end
@@ -22983,10 +22988,16 @@ module Aws::MediaLive
22983
22988
  # The feed is a resource in the Elemental Inference service.
22984
22989
  # @return [String]
22985
22990
  #
22991
+ # @!attribute [rw] audio_feed_inputs
22992
+ # A list of audio feed inputs that map audio selectors in the channel
22993
+ # to feed inputs on the associated Elemental Inference feed.
22994
+ # @return [Array<Types::AudioFeedInput>]
22995
+ #
22986
22996
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInferenceSettings AWS API Documentation
22987
22997
  #
22988
22998
  class DescribeInferenceSettings < Struct.new(
22989
- :feed_arn)
22999
+ :feed_arn,
23000
+ :audio_feed_inputs)
22990
23001
  SENSITIVE = []
22991
23002
  include Aws::Structure
22992
23003
  end
@@ -22998,10 +23009,16 @@ module Aws::MediaLive
22998
23009
  # The feed is a resource in the Elemental Inference service.
22999
23010
  # @return [String]
23000
23011
  #
23012
+ # @!attribute [rw] audio_feed_inputs
23013
+ # A list of audio feed inputs that map audio selectors in the channel
23014
+ # to feed inputs on the associated Elemental Inference feed.
23015
+ # @return [Array<Types::AudioFeedInput>]
23016
+ #
23001
23017
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InferenceSettings AWS API Documentation
23002
23018
  #
23003
23019
  class InferenceSettings < Struct.new(
23004
- :feed_arn)
23020
+ :feed_arn,
23021
+ :audio_feed_inputs)
23005
23022
  SENSITIVE = []
23006
23023
  include Aws::Structure
23007
23024
  end
@@ -23118,6 +23135,49 @@ module Aws::MediaLive
23118
23135
  include Aws::Structure
23119
23136
  end
23120
23137
 
23138
+ # Maps an audio selector in the channel to a feed input on the
23139
+ # associated Elemental Inference feed.
23140
+ #
23141
+ # @!attribute [rw] audio_selector_name
23142
+ # The name of the audio selector in the channel that will be sent to
23143
+ # the Elemental Inference feed input.
23144
+ # @return [String]
23145
+ #
23146
+ # @!attribute [rw] feed_input
23147
+ # The name of the feed input on the Elemental Inference feed that will
23148
+ # receive the audio from the specified audio selector.
23149
+ # @return [String]
23150
+ #
23151
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioFeedInput AWS API Documentation
23152
+ #
23153
+ class AudioFeedInput < Struct.new(
23154
+ :audio_selector_name,
23155
+ :feed_input)
23156
+ SENSITIVE = []
23157
+ include Aws::Structure
23158
+ end
23159
+
23160
+ # Smart Subtitle Source Settings
23161
+ #
23162
+ # @!attribute [rw] caption_synchronization_mode
23163
+ # Controls whether MediaLive delays video to synchronize captions with
23164
+ # audio and video output.
23165
+ # @return [String]
23166
+ #
23167
+ # @!attribute [rw] inference_feed_output
23168
+ # The name of the Elemental Inference feed output that supplies
23169
+ # subtitle input into this caption selector.
23170
+ # @return [String]
23171
+ #
23172
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SmartSubtitleSourceSettings AWS API Documentation
23173
+ #
23174
+ class SmartSubtitleSourceSettings < Struct.new(
23175
+ :caption_synchronization_mode,
23176
+ :inference_feed_output)
23177
+ SENSITIVE = []
23178
+ include Aws::Structure
23179
+ end
23180
+
23121
23181
  end
23122
23182
  end
23123
23183
 
@@ -55,7 +55,7 @@ module Aws::MediaLive
55
55
  autoload :EndpointProvider, 'aws-sdk-medialive/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-medialive/endpoints'
57
57
 
58
- GEM_VERSION = '1.186.0'
58
+ GEM_VERSION = '1.188.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -343,7 +343,13 @@ module Aws
343
343
  ?linked_channel_settings: Params::linked_channel_settings,
344
344
  ?channel_security_groups: Array[::String],
345
345
  ?inference_settings: {
346
- feed_arn: ::String?
346
+ feed_arn: ::String?,
347
+ audio_feed_inputs: Array[
348
+ {
349
+ audio_selector_name: ::String?,
350
+ feed_input: ::String?
351
+ }
352
+ ]?
347
353
  }
348
354
  ) -> _CreateChannelResponseSuccess
349
355
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChannelResponseSuccess
@@ -1207,7 +1213,13 @@ module Aws
1207
1213
  ?linked_channel_settings: Params::linked_channel_settings,
1208
1214
  ?channel_security_groups: Array[::String],
1209
1215
  ?inference_settings: {
1210
- feed_arn: ::String?
1216
+ feed_arn: ::String?,
1217
+ audio_feed_inputs: Array[
1218
+ {
1219
+ audio_selector_name: ::String?,
1220
+ feed_input: ::String?
1221
+ }
1222
+ ]?
1211
1223
  },
1212
1224
  ?special_router_settings: {
1213
1225
  router_arn: ::String?
data/sig/params.rbs CHANGED
@@ -1337,7 +1337,11 @@ module Aws
1337
1337
  ocr_language: ("DEU" | "ENG" | "FRA" | "NLD" | "POR" | "SPA")?,
1338
1338
  pid: ::Integer?
1339
1339
  }?,
1340
- teletext_source_settings: Params::teletext_source_settings?
1340
+ teletext_source_settings: Params::teletext_source_settings?,
1341
+ smart_subtitle_source_settings: {
1342
+ caption_synchronization_mode: ("NO_VIDEO_DELAY" | "VIDEO_ALIGNED_CAPTIONS")?,
1343
+ inference_feed_output: ::String?
1344
+ }?
1341
1345
  }
1342
1346
 
1343
1347
  type caption_selector = {
data/sig/types.rbs CHANGED
@@ -464,6 +464,7 @@ module Aws::MediaLive
464
464
  attr_accessor scte_20_source_settings: Types::Scte20SourceSettings
465
465
  attr_accessor scte_27_source_settings: Types::Scte27SourceSettings
466
466
  attr_accessor teletext_source_settings: Types::TeletextSourceSettings
467
+ attr_accessor smart_subtitle_source_settings: Types::SmartSubtitleSourceSettings
467
468
  SENSITIVE: []
468
469
  end
469
470
 
@@ -5962,11 +5963,13 @@ module Aws::MediaLive
5962
5963
 
5963
5964
  class DescribeInferenceSettings
5964
5965
  attr_accessor feed_arn: ::String
5966
+ attr_accessor audio_feed_inputs: ::Array[Types::AudioFeedInput]
5965
5967
  SENSITIVE: []
5966
5968
  end
5967
5969
 
5968
5970
  class InferenceSettings
5969
5971
  attr_accessor feed_arn: ::String
5972
+ attr_accessor audio_feed_inputs: ::Array[Types::AudioFeedInput]
5970
5973
  SENSITIVE: []
5971
5974
  end
5972
5975
 
@@ -6003,5 +6006,17 @@ module Aws::MediaLive
6003
6006
  attr_accessor router_input_arn: ::String
6004
6007
  SENSITIVE: []
6005
6008
  end
6009
+
6010
+ class AudioFeedInput
6011
+ attr_accessor audio_selector_name: ::String
6012
+ attr_accessor feed_input: ::String
6013
+ SENSITIVE: []
6014
+ end
6015
+
6016
+ class SmartSubtitleSourceSettings
6017
+ attr_accessor caption_synchronization_mode: ("NO_VIDEO_DELAY" | "VIDEO_ALIGNED_CAPTIONS")
6018
+ attr_accessor inference_feed_output: ::String
6019
+ SENSITIVE: []
6020
+ end
6006
6021
  end
6007
6022
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-medialive
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.186.0
4
+ version: 1.188.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement