aws-sdk-medialive 1.187.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +46 -1
- data/lib/aws-sdk-medialive/client_api.rb +20 -0
- data/lib/aws-sdk-medialive/types.rb +63 -3
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +14 -2
- data/sig/params.rbs +5 -1
- data/sig/types.rbs +15 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f92b3fbc10eb3a2ff4516141a86796237ae81d68dccc50eebbbd38d7464012e4
|
|
4
|
+
data.tar.gz: 696ee44020a5607ae6368ab5aa384ab142c59e6e0e8156f2e0da4acca3716a8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3926da936fe720a0a3c00299588a3ba25e1147fa32b5039fade37a265983c36db49fedb8722c1cc27a535db18227e1b6885a3b441dad70f596695664e10145fa
|
|
7
|
+
data.tar.gz: 47df23633dc93260c6ab5a54211e32307da9923aeb33797a700e064241b99ecf364c32ef49fa548e8b4a4b025ce86530cbd34818ad1518a66d92f207abf8eabf
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
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
|
+
|
|
4
9
|
1.187.0 (2026-05-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.188.0
|
|
@@ -1940,6 +1940,8 @@ module Aws::MediaLive
|
|
|
1940
1940
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
|
|
1941
1941
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
|
|
1942
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
|
|
1943
1945
|
# resp.channel.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
|
|
1944
1946
|
# resp.channel.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
|
|
1945
1947
|
# resp.channel.input_attachments[0].input_settings.filter_strength #=> Integer
|
|
@@ -2006,6 +2008,9 @@ module Aws::MediaLive
|
|
|
2006
2008
|
# resp.channel.channel_security_groups #=> Array
|
|
2007
2009
|
# resp.channel.channel_security_groups[0] #=> String
|
|
2008
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
|
|
2009
2014
|
#
|
|
2010
2015
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel AWS API Documentation
|
|
2011
2016
|
#
|
|
@@ -3486,6 +3491,8 @@ module Aws::MediaLive
|
|
|
3486
3491
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
|
|
3487
3492
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
|
|
3488
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
|
|
3489
3496
|
# resp.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
|
|
3490
3497
|
# resp.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
|
|
3491
3498
|
# resp.input_attachments[0].input_settings.filter_strength #=> Integer
|
|
@@ -3552,6 +3559,9 @@ module Aws::MediaLive
|
|
|
3552
3559
|
# resp.channel_security_groups #=> Array
|
|
3553
3560
|
# resp.channel_security_groups[0] #=> String
|
|
3554
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
|
|
3555
3565
|
#
|
|
3556
3566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteChannel AWS API Documentation
|
|
3557
3567
|
#
|
|
@@ -4755,6 +4765,8 @@ module Aws::MediaLive
|
|
|
4755
4765
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
|
|
4756
4766
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
|
|
4757
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
|
|
4758
4770
|
# resp.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
|
|
4759
4771
|
# resp.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
|
|
4760
4772
|
# resp.input_attachments[0].input_settings.filter_strength #=> Integer
|
|
@@ -4821,6 +4833,9 @@ module Aws::MediaLive
|
|
|
4821
4833
|
# resp.channel_security_groups #=> Array
|
|
4822
4834
|
# resp.channel_security_groups[0] #=> String
|
|
4823
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
|
|
4824
4839
|
#
|
|
4825
4840
|
#
|
|
4826
4841
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -5636,6 +5651,8 @@ module Aws::MediaLive
|
|
|
5636
5651
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
|
|
5637
5652
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
|
|
5638
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
|
|
5639
5656
|
# resp.channels[0].input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
|
|
5640
5657
|
# resp.channels[0].input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
|
|
5641
5658
|
# resp.channels[0].input_attachments[0].input_settings.filter_strength #=> Integer
|
|
@@ -5695,6 +5712,9 @@ module Aws::MediaLive
|
|
|
5695
5712
|
# resp.channels[0].channel_security_groups #=> Array
|
|
5696
5713
|
# resp.channels[0].channel_security_groups[0] #=> String
|
|
5697
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
|
|
5698
5718
|
# resp.next_token #=> String
|
|
5699
5719
|
#
|
|
5700
5720
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListChannels AWS API Documentation
|
|
@@ -7280,6 +7300,8 @@ module Aws::MediaLive
|
|
|
7280
7300
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
|
|
7281
7301
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
|
|
7282
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
|
|
7283
7305
|
# resp.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
|
|
7284
7306
|
# resp.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
|
|
7285
7307
|
# resp.input_attachments[0].input_settings.filter_strength #=> Integer
|
|
@@ -7346,6 +7368,9 @@ module Aws::MediaLive
|
|
|
7346
7368
|
# resp.channel_security_groups #=> Array
|
|
7347
7369
|
# resp.channel_security_groups[0] #=> String
|
|
7348
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
|
|
7349
7374
|
#
|
|
7350
7375
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartChannel AWS API Documentation
|
|
7351
7376
|
#
|
|
@@ -8356,6 +8381,8 @@ module Aws::MediaLive
|
|
|
8356
8381
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
|
|
8357
8382
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
|
|
8358
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
|
|
8359
8386
|
# resp.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
|
|
8360
8387
|
# resp.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
|
|
8361
8388
|
# resp.input_attachments[0].input_settings.filter_strength #=> Integer
|
|
@@ -8422,6 +8449,9 @@ module Aws::MediaLive
|
|
|
8422
8449
|
# resp.channel_security_groups #=> Array
|
|
8423
8450
|
# resp.channel_security_groups[0] #=> String
|
|
8424
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
|
|
8425
8455
|
#
|
|
8426
8456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StopChannel AWS API Documentation
|
|
8427
8457
|
#
|
|
@@ -9477,6 +9507,8 @@ module Aws::MediaLive
|
|
|
9477
9507
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
|
|
9478
9508
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
|
|
9479
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
|
|
9480
9512
|
# resp.channel.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
|
|
9481
9513
|
# resp.channel.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
|
|
9482
9514
|
# resp.channel.input_attachments[0].input_settings.filter_strength #=> Integer
|
|
@@ -9543,6 +9575,9 @@ module Aws::MediaLive
|
|
|
9543
9575
|
# resp.channel.channel_security_groups #=> Array
|
|
9544
9576
|
# resp.channel.channel_security_groups[0] #=> String
|
|
9545
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
|
|
9546
9581
|
#
|
|
9547
9582
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
|
|
9548
9583
|
#
|
|
@@ -10476,6 +10511,8 @@ module Aws::MediaLive
|
|
|
10476
10511
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
|
|
10477
10512
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
|
|
10478
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
|
|
10479
10516
|
# resp.channel.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
|
|
10480
10517
|
# resp.channel.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
|
|
10481
10518
|
# resp.channel.input_attachments[0].input_settings.filter_strength #=> Integer
|
|
@@ -10542,6 +10579,9 @@ module Aws::MediaLive
|
|
|
10542
10579
|
# resp.channel.channel_security_groups #=> Array
|
|
10543
10580
|
# resp.channel.channel_security_groups[0] #=> String
|
|
10544
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
|
|
10545
10585
|
#
|
|
10546
10586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelClass AWS API Documentation
|
|
10547
10587
|
#
|
|
@@ -12084,6 +12124,8 @@ module Aws::MediaLive
|
|
|
12084
12124
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.top_offset #=> Float
|
|
12085
12125
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.width #=> Float
|
|
12086
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
|
|
12087
12129
|
# resp.input_attachments[0].input_settings.deblock_filter #=> String, one of "DISABLED", "ENABLED"
|
|
12088
12130
|
# resp.input_attachments[0].input_settings.denoise_filter #=> String, one of "DISABLED", "ENABLED"
|
|
12089
12131
|
# resp.input_attachments[0].input_settings.filter_strength #=> Integer
|
|
@@ -12151,6 +12193,9 @@ module Aws::MediaLive
|
|
|
12151
12193
|
# resp.channel_security_groups #=> Array
|
|
12152
12194
|
# resp.channel_security_groups[0] #=> String
|
|
12153
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
|
|
12154
12199
|
#
|
|
12155
12200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RestartChannelPipelines AWS API Documentation
|
|
12156
12201
|
#
|
|
@@ -15491,7 +15536,7 @@ module Aws::MediaLive
|
|
|
15491
15536
|
tracer: tracer
|
|
15492
15537
|
)
|
|
15493
15538
|
context[:gem_name] = 'aws-sdk-medialive'
|
|
15494
|
-
context[:gem_version] = '1.
|
|
15539
|
+
context[:gem_version] = '1.188.0'
|
|
15495
15540
|
Seahorse::Client::Request.new(handlers, context)
|
|
15496
15541
|
end
|
|
15497
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
|
|
data/lib/aws-sdk-medialive.rb
CHANGED
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
|