aws-sdk-medialive 1.147.0 → 1.149.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +115 -15
- data/lib/aws-sdk-medialive/client_api.rb +31 -0
- data/lib/aws-sdk-medialive/types.rb +124 -7
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +53 -4
- data/sig/types.rbs +34 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 82060ed7ac7693485b0eaedc73bda9ffbb0aa8b66c8eec4718ebfaad0a071053
|
4
|
+
data.tar.gz: 6ee4ad5d8b0fc0931552412291d15f72c871901ae222ca264f03ff4f92684b9e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95509fa8b540803890d49bd0927be06bffffa317bbfc5f9a7aa1b9ff8d8deba3fafe1ff2c1e3ffe0a94d22fe4b247f9de06d367cf0781a88142d50e034fb6034
|
7
|
+
data.tar.gz: 4e0704d9a319dbc07d554af00ef16605e72e9cf7a9c874d8303e8755586781e1462e1b47e130c1c167012c996aaf9d6194ffbea4c9ea0f100ea3a6747d317220
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.149.0 (2025-04-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added support for SMPTE 2110 inputs when running a channel in a MediaLive Anywhere cluster. This feature enables ingestion of SMPTE 2110-compliant video, audio, and ancillary streams by reading SDP files that AWS Elemental MediaLive can retrieve from a network source.
|
8
|
+
|
9
|
+
1.148.0 (2025-03-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add an enum option DISABLED for Output Locking Mode under Global Configuration.
|
13
|
+
|
4
14
|
1.147.0 (2025-03-10)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.149.0
|
@@ -1262,7 +1262,7 @@ module Aws::MediaLive
|
|
1262
1262
|
# resp.channel.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
|
1263
1263
|
# resp.channel.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
|
1264
1264
|
# resp.channel.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
|
1265
|
-
# resp.channel.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
|
1265
|
+
# resp.channel.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING", "DISABLED"
|
1266
1266
|
# resp.channel.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
|
1267
1267
|
# resp.channel.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
|
1268
1268
|
# resp.channel.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
|
@@ -1929,6 +1929,9 @@ module Aws::MediaLive
|
|
1929
1929
|
# Settings for a Multicast input. Contains a list of multicast Urls and
|
1930
1930
|
# optional source ip addresses.
|
1931
1931
|
#
|
1932
|
+
# @option params [Types::Smpte2110ReceiverGroupSettings] :smpte_2110_receiver_group_settings
|
1933
|
+
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
1934
|
+
#
|
1932
1935
|
# @return [Types::CreateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1933
1936
|
#
|
1934
1937
|
# * {Types::CreateInputResponse#input #input} => Types::Input
|
@@ -1973,7 +1976,7 @@ module Aws::MediaLive
|
|
1973
1976
|
# tags: {
|
1974
1977
|
# "__string" => "__string",
|
1975
1978
|
# },
|
1976
|
-
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI, TS_FILE, SRT_CALLER, MULTICAST
|
1979
|
+
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI, TS_FILE, SRT_CALLER, MULTICAST, SMPTE_2110_RECEIVER_GROUP
|
1977
1980
|
# vpc: {
|
1978
1981
|
# security_group_ids: ["__string"],
|
1979
1982
|
# subnet_ids: ["__string"], # required
|
@@ -2001,6 +2004,30 @@ module Aws::MediaLive
|
|
2001
2004
|
# },
|
2002
2005
|
# ],
|
2003
2006
|
# },
|
2007
|
+
# smpte_2110_receiver_group_settings: {
|
2008
|
+
# smpte_2110_receiver_groups: [
|
2009
|
+
# {
|
2010
|
+
# sdp_settings: {
|
2011
|
+
# ancillary_sdps: [
|
2012
|
+
# {
|
2013
|
+
# media_index: 1,
|
2014
|
+
# sdp_url: "__string",
|
2015
|
+
# },
|
2016
|
+
# ],
|
2017
|
+
# audio_sdps: [
|
2018
|
+
# {
|
2019
|
+
# media_index: 1,
|
2020
|
+
# sdp_url: "__string",
|
2021
|
+
# },
|
2022
|
+
# ],
|
2023
|
+
# video_sdp: {
|
2024
|
+
# media_index: 1,
|
2025
|
+
# sdp_url: "__string",
|
2026
|
+
# },
|
2027
|
+
# },
|
2028
|
+
# },
|
2029
|
+
# ],
|
2030
|
+
# },
|
2004
2031
|
# })
|
2005
2032
|
#
|
2006
2033
|
# @example Response structure
|
@@ -2038,7 +2065,7 @@ module Aws::MediaLive
|
|
2038
2065
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2039
2066
|
# resp.input.tags #=> Hash
|
2040
2067
|
# resp.input.tags["__string"] #=> String
|
2041
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER", "MULTICAST"
|
2068
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP"
|
2042
2069
|
# resp.input.srt_settings.srt_caller_sources #=> Array
|
2043
2070
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
2044
2071
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -2050,6 +2077,15 @@ module Aws::MediaLive
|
|
2050
2077
|
# resp.input.multicast_settings.sources #=> Array
|
2051
2078
|
# resp.input.multicast_settings.sources[0].source_ip #=> String
|
2052
2079
|
# resp.input.multicast_settings.sources[0].url #=> String
|
2080
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
2081
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
2082
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
2083
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
2084
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
2085
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
2086
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
2087
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
2088
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
2053
2089
|
#
|
2054
2090
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
2055
2091
|
#
|
@@ -2315,7 +2351,7 @@ module Aws::MediaLive
|
|
2315
2351
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2316
2352
|
# resp.input.tags #=> Hash
|
2317
2353
|
# resp.input.tags["__string"] #=> String
|
2318
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER", "MULTICAST"
|
2354
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP"
|
2319
2355
|
# resp.input.srt_settings.srt_caller_sources #=> Array
|
2320
2356
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
2321
2357
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -2327,6 +2363,15 @@ module Aws::MediaLive
|
|
2327
2363
|
# resp.input.multicast_settings.sources #=> Array
|
2328
2364
|
# resp.input.multicast_settings.sources[0].source_ip #=> String
|
2329
2365
|
# resp.input.multicast_settings.sources[0].url #=> String
|
2366
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
2367
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
2368
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
2369
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
2370
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
2371
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
2372
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
2373
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
2374
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
2330
2375
|
#
|
2331
2376
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreatePartnerInput AWS API Documentation
|
2332
2377
|
#
|
@@ -2590,7 +2635,7 @@ module Aws::MediaLive
|
|
2590
2635
|
# resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
|
2591
2636
|
# resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
|
2592
2637
|
# resp.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
|
2593
|
-
# resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
|
2638
|
+
# resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING", "DISABLED"
|
2594
2639
|
# resp.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
|
2595
2640
|
# resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
|
2596
2641
|
# resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
|
@@ -3735,7 +3780,7 @@ module Aws::MediaLive
|
|
3735
3780
|
# resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
|
3736
3781
|
# resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
|
3737
3782
|
# resp.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
|
3738
|
-
# resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
|
3783
|
+
# resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING", "DISABLED"
|
3739
3784
|
# resp.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
|
3740
3785
|
# resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
|
3741
3786
|
# resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
|
@@ -4389,6 +4434,7 @@ module Aws::MediaLive
|
|
4389
4434
|
# * {Types::DescribeInputResponse#srt_settings #srt_settings} => Types::SrtSettings
|
4390
4435
|
# * {Types::DescribeInputResponse#input_network_location #input_network_location} => String
|
4391
4436
|
# * {Types::DescribeInputResponse#multicast_settings #multicast_settings} => Types::MulticastSettings
|
4437
|
+
# * {Types::DescribeInputResponse#smpte_2110_receiver_group_settings #smpte_2110_receiver_group_settings} => Types::Smpte2110ReceiverGroupSettings
|
4392
4438
|
#
|
4393
4439
|
# @example Request syntax with placeholder values
|
4394
4440
|
#
|
@@ -4431,7 +4477,7 @@ module Aws::MediaLive
|
|
4431
4477
|
# resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
4432
4478
|
# resp.tags #=> Hash
|
4433
4479
|
# resp.tags["__string"] #=> String
|
4434
|
-
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER", "MULTICAST"
|
4480
|
+
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP"
|
4435
4481
|
# resp.srt_settings.srt_caller_sources #=> Array
|
4436
4482
|
# resp.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
4437
4483
|
# resp.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -4443,6 +4489,15 @@ module Aws::MediaLive
|
|
4443
4489
|
# resp.multicast_settings.sources #=> Array
|
4444
4490
|
# resp.multicast_settings.sources[0].source_ip #=> String
|
4445
4491
|
# resp.multicast_settings.sources[0].url #=> String
|
4492
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
4493
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
4494
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
4495
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
4496
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
4497
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
4498
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
4499
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
4500
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
4446
4501
|
#
|
4447
4502
|
#
|
4448
4503
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -5410,7 +5465,7 @@ module Aws::MediaLive
|
|
5410
5465
|
# resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
5411
5466
|
# resp.inputs[0].tags #=> Hash
|
5412
5467
|
# resp.inputs[0].tags["__string"] #=> String
|
5413
|
-
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER", "MULTICAST"
|
5468
|
+
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP"
|
5414
5469
|
# resp.inputs[0].srt_settings.srt_caller_sources #=> Array
|
5415
5470
|
# resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
5416
5471
|
# resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -5422,6 +5477,15 @@ module Aws::MediaLive
|
|
5422
5477
|
# resp.inputs[0].multicast_settings.sources #=> Array
|
5423
5478
|
# resp.inputs[0].multicast_settings.sources[0].source_ip #=> String
|
5424
5479
|
# resp.inputs[0].multicast_settings.sources[0].url #=> String
|
5480
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
5481
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
5482
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
5483
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
5484
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
5485
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
5486
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
5487
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
5488
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
5425
5489
|
# resp.next_token #=> String
|
5426
5490
|
#
|
5427
5491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
|
@@ -6069,7 +6133,7 @@ module Aws::MediaLive
|
|
6069
6133
|
# resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
|
6070
6134
|
# resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
|
6071
6135
|
# resp.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
|
6072
|
-
# resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
|
6136
|
+
# resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING", "DISABLED"
|
6073
6137
|
# resp.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
|
6074
6138
|
# resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
|
6075
6139
|
# resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
|
@@ -7021,7 +7085,7 @@ module Aws::MediaLive
|
|
7021
7085
|
# resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
|
7022
7086
|
# resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
|
7023
7087
|
# resp.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
|
7024
|
-
# resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
|
7088
|
+
# resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING", "DISABLED"
|
7025
7089
|
# resp.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
|
7026
7090
|
# resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
|
7027
7091
|
# resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
|
@@ -8003,7 +8067,7 @@ module Aws::MediaLive
|
|
8003
8067
|
# resp.channel.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
|
8004
8068
|
# resp.channel.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
|
8005
8069
|
# resp.channel.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
|
8006
|
-
# resp.channel.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
|
8070
|
+
# resp.channel.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING", "DISABLED"
|
8007
8071
|
# resp.channel.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
|
8008
8072
|
# resp.channel.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
|
8009
8073
|
# resp.channel.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
|
@@ -8870,7 +8934,7 @@ module Aws::MediaLive
|
|
8870
8934
|
# resp.channel.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
|
8871
8935
|
# resp.channel.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
|
8872
8936
|
# resp.channel.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
|
8873
|
-
# resp.channel.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
|
8937
|
+
# resp.channel.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING", "DISABLED"
|
8874
8938
|
# resp.channel.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
|
8875
8939
|
# resp.channel.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
|
8876
8940
|
# resp.channel.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
|
@@ -9518,6 +9582,9 @@ module Aws::MediaLive
|
|
9518
9582
|
# Settings for a Multicast input. Contains a list of multicast Urls and
|
9519
9583
|
# optional source ip addresses.
|
9520
9584
|
#
|
9585
|
+
# @option params [Types::Smpte2110ReceiverGroupSettings] :smpte_2110_receiver_group_settings
|
9586
|
+
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
9587
|
+
#
|
9521
9588
|
# @return [Types::UpdateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9522
9589
|
#
|
9523
9590
|
# * {Types::UpdateInputResponse#input #input} => Types::Input
|
@@ -9581,6 +9648,30 @@ module Aws::MediaLive
|
|
9581
9648
|
# },
|
9582
9649
|
# ],
|
9583
9650
|
# },
|
9651
|
+
# smpte_2110_receiver_group_settings: {
|
9652
|
+
# smpte_2110_receiver_groups: [
|
9653
|
+
# {
|
9654
|
+
# sdp_settings: {
|
9655
|
+
# ancillary_sdps: [
|
9656
|
+
# {
|
9657
|
+
# media_index: 1,
|
9658
|
+
# sdp_url: "__string",
|
9659
|
+
# },
|
9660
|
+
# ],
|
9661
|
+
# audio_sdps: [
|
9662
|
+
# {
|
9663
|
+
# media_index: 1,
|
9664
|
+
# sdp_url: "__string",
|
9665
|
+
# },
|
9666
|
+
# ],
|
9667
|
+
# video_sdp: {
|
9668
|
+
# media_index: 1,
|
9669
|
+
# sdp_url: "__string",
|
9670
|
+
# },
|
9671
|
+
# },
|
9672
|
+
# },
|
9673
|
+
# ],
|
9674
|
+
# },
|
9584
9675
|
# })
|
9585
9676
|
#
|
9586
9677
|
# @example Response structure
|
@@ -9618,7 +9709,7 @@ module Aws::MediaLive
|
|
9618
9709
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
9619
9710
|
# resp.input.tags #=> Hash
|
9620
9711
|
# resp.input.tags["__string"] #=> String
|
9621
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER", "MULTICAST"
|
9712
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP"
|
9622
9713
|
# resp.input.srt_settings.srt_caller_sources #=> Array
|
9623
9714
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
9624
9715
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -9630,6 +9721,15 @@ module Aws::MediaLive
|
|
9630
9721
|
# resp.input.multicast_settings.sources #=> Array
|
9631
9722
|
# resp.input.multicast_settings.sources[0].source_ip #=> String
|
9632
9723
|
# resp.input.multicast_settings.sources[0].url #=> String
|
9724
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
9725
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
9726
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
9727
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
9728
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
9729
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
9730
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
9731
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
9732
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
9633
9733
|
#
|
9634
9734
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
9635
9735
|
#
|
@@ -10280,7 +10380,7 @@ module Aws::MediaLive
|
|
10280
10380
|
# resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_slate.username #=> String
|
10281
10381
|
# resp.encoder_settings.global_configuration.input_loss_behavior.input_loss_image_type #=> String, one of "COLOR", "SLATE"
|
10282
10382
|
# resp.encoder_settings.global_configuration.input_loss_behavior.repeat_frame_msec #=> Integer
|
10283
|
-
# resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING"
|
10383
|
+
# resp.encoder_settings.global_configuration.output_locking_mode #=> String, one of "EPOCH_LOCKING", "PIPELINE_LOCKING", "DISABLED"
|
10284
10384
|
# resp.encoder_settings.global_configuration.output_timing_source #=> String, one of "INPUT_CLOCK", "SYSTEM_CLOCK"
|
10285
10385
|
# resp.encoder_settings.global_configuration.support_low_framerate_inputs #=> String, one of "DISABLED", "ENABLED"
|
10286
10386
|
# resp.encoder_settings.global_configuration.output_locking_settings.epoch_locking_settings.custom_epoch #=> String
|
@@ -13807,7 +13907,7 @@ module Aws::MediaLive
|
|
13807
13907
|
tracer: tracer
|
13808
13908
|
)
|
13809
13909
|
context[:gem_name] = 'aws-sdk-medialive'
|
13810
|
-
context[:gem_version] = '1.
|
13910
|
+
context[:gem_version] = '1.149.0'
|
13811
13911
|
Seahorse::Client::Request.new(handlers, context)
|
13812
13912
|
end
|
13813
13913
|
|
@@ -536,6 +536,7 @@ module Aws::MediaLive
|
|
536
536
|
InputPrepareScheduleActionSettings = Shapes::StructureShape.new(name: 'InputPrepareScheduleActionSettings')
|
537
537
|
InputRequestDestinationRoute = Shapes::StructureShape.new(name: 'InputRequestDestinationRoute')
|
538
538
|
InputResolution = Shapes::StringShape.new(name: 'InputResolution')
|
539
|
+
InputSdpLocation = Shapes::StructureShape.new(name: 'InputSdpLocation')
|
539
540
|
InputSecurityGroup = Shapes::StructureShape.new(name: 'InputSecurityGroup')
|
540
541
|
InputSecurityGroupState = Shapes::StringShape.new(name: 'InputSecurityGroupState')
|
541
542
|
InputSecurityGroupWhitelistRequest = Shapes::StructureShape.new(name: 'InputSecurityGroupWhitelistRequest')
|
@@ -837,6 +838,9 @@ module Aws::MediaLive
|
|
837
838
|
SmoothGroupStreamManifestBehavior = Shapes::StringShape.new(name: 'SmoothGroupStreamManifestBehavior')
|
838
839
|
SmoothGroupTimestampOffsetMode = Shapes::StringShape.new(name: 'SmoothGroupTimestampOffsetMode')
|
839
840
|
Smpte2038DataPreference = Shapes::StringShape.new(name: 'Smpte2038DataPreference')
|
841
|
+
Smpte2110ReceiverGroup = Shapes::StructureShape.new(name: 'Smpte2110ReceiverGroup')
|
842
|
+
Smpte2110ReceiverGroupSdpSettings = Shapes::StructureShape.new(name: 'Smpte2110ReceiverGroupSdpSettings')
|
843
|
+
Smpte2110ReceiverGroupSettings = Shapes::StructureShape.new(name: 'Smpte2110ReceiverGroupSettings')
|
840
844
|
SmpteTtDestinationSettings = Shapes::StructureShape.new(name: 'SmpteTtDestinationSettings')
|
841
845
|
SrtCallerDecryption = Shapes::StructureShape.new(name: 'SrtCallerDecryption')
|
842
846
|
SrtCallerDecryptionRequest = Shapes::StructureShape.new(name: 'SrtCallerDecryptionRequest')
|
@@ -1111,6 +1115,7 @@ module Aws::MediaLive
|
|
1111
1115
|
__listOfInputDeviceSummary = Shapes::ListShape.new(name: '__listOfInputDeviceSummary')
|
1112
1116
|
__listOfInputDeviceUhdAudioChannelPairConfig = Shapes::ListShape.new(name: '__listOfInputDeviceUhdAudioChannelPairConfig')
|
1113
1117
|
__listOfInputRequestDestinationRoute = Shapes::ListShape.new(name: '__listOfInputRequestDestinationRoute')
|
1118
|
+
__listOfInputSdpLocation = Shapes::ListShape.new(name: '__listOfInputSdpLocation')
|
1114
1119
|
__listOfInputSecurityGroup = Shapes::ListShape.new(name: '__listOfInputSecurityGroup')
|
1115
1120
|
__listOfInputSource = Shapes::ListShape.new(name: '__listOfInputSource')
|
1116
1121
|
__listOfInputSourceRequest = Shapes::ListShape.new(name: '__listOfInputSourceRequest')
|
@@ -1150,6 +1155,7 @@ module Aws::MediaLive
|
|
1150
1155
|
__listOfScheduleAction = Shapes::ListShape.new(name: '__listOfScheduleAction')
|
1151
1156
|
__listOfScte35Descriptor = Shapes::ListShape.new(name: '__listOfScte35Descriptor')
|
1152
1157
|
__listOfSignalMapSummary = Shapes::ListShape.new(name: '__listOfSignalMapSummary')
|
1158
|
+
__listOfSmpte2110ReceiverGroup = Shapes::ListShape.new(name: '__listOfSmpte2110ReceiverGroup')
|
1153
1159
|
__listOfSrtCallerSource = Shapes::ListShape.new(name: '__listOfSrtCallerSource')
|
1154
1160
|
__listOfSrtCallerSourceRequest = Shapes::ListShape.new(name: '__listOfSrtCallerSourceRequest')
|
1155
1161
|
__listOfSrtOutputDestinationSettings = Shapes::ListShape.new(name: '__listOfSrtOutputDestinationSettings')
|
@@ -1971,6 +1977,7 @@ module Aws::MediaLive
|
|
1971
1977
|
CreateInput.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettingsRequest, location_name: "srtSettings"))
|
1972
1978
|
CreateInput.add_member(:input_network_location, Shapes::ShapeRef.new(shape: InputNetworkLocation, location_name: "inputNetworkLocation"))
|
1973
1979
|
CreateInput.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettingsCreateRequest, location_name: "multicastSettings"))
|
1980
|
+
CreateInput.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
|
1974
1981
|
CreateInput.struct_class = Types::CreateInput
|
1975
1982
|
|
1976
1983
|
CreateInputRequest.add_member(:destinations, Shapes::ShapeRef.new(shape: __listOfInputDestinationRequest, location_name: "destinations"))
|
@@ -1987,6 +1994,7 @@ module Aws::MediaLive
|
|
1987
1994
|
CreateInputRequest.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettingsRequest, location_name: "srtSettings"))
|
1988
1995
|
CreateInputRequest.add_member(:input_network_location, Shapes::ShapeRef.new(shape: InputNetworkLocation, location_name: "inputNetworkLocation"))
|
1989
1996
|
CreateInputRequest.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettingsCreateRequest, location_name: "multicastSettings"))
|
1997
|
+
CreateInputRequest.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
|
1990
1998
|
CreateInputRequest.struct_class = Types::CreateInputRequest
|
1991
1999
|
|
1992
2000
|
CreateInputResponse.add_member(:input, Shapes::ShapeRef.new(shape: Input, location_name: "input"))
|
@@ -2489,6 +2497,7 @@ module Aws::MediaLive
|
|
2489
2497
|
DescribeInputResponse.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettings, location_name: "srtSettings"))
|
2490
2498
|
DescribeInputResponse.add_member(:input_network_location, Shapes::ShapeRef.new(shape: InputNetworkLocation, location_name: "inputNetworkLocation"))
|
2491
2499
|
DescribeInputResponse.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettings, location_name: "multicastSettings"))
|
2500
|
+
DescribeInputResponse.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
|
2492
2501
|
DescribeInputResponse.struct_class = Types::DescribeInputResponse
|
2493
2502
|
|
2494
2503
|
DescribeInputSecurityGroupRequest.add_member(:input_security_group_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputSecurityGroupId"))
|
@@ -3271,6 +3280,7 @@ module Aws::MediaLive
|
|
3271
3280
|
Input.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettings, location_name: "srtSettings"))
|
3272
3281
|
Input.add_member(:input_network_location, Shapes::ShapeRef.new(shape: InputNetworkLocation, location_name: "inputNetworkLocation"))
|
3273
3282
|
Input.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettings, location_name: "multicastSettings"))
|
3283
|
+
Input.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
|
3274
3284
|
Input.struct_class = Types::Input
|
3275
3285
|
|
3276
3286
|
InputAttachment.add_member(:automatic_input_failover_settings, Shapes::ShapeRef.new(shape: AutomaticInputFailoverSettings, location_name: "automaticInputFailoverSettings"))
|
@@ -3441,6 +3451,10 @@ module Aws::MediaLive
|
|
3441
3451
|
InputRequestDestinationRoute.add_member(:gateway, Shapes::ShapeRef.new(shape: __string, location_name: "gateway"))
|
3442
3452
|
InputRequestDestinationRoute.struct_class = Types::InputRequestDestinationRoute
|
3443
3453
|
|
3454
|
+
InputSdpLocation.add_member(:media_index, Shapes::ShapeRef.new(shape: __integer, location_name: "mediaIndex"))
|
3455
|
+
InputSdpLocation.add_member(:sdp_url, Shapes::ShapeRef.new(shape: __string, location_name: "sdpUrl"))
|
3456
|
+
InputSdpLocation.struct_class = Types::InputSdpLocation
|
3457
|
+
|
3444
3458
|
InputSecurityGroup.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
3445
3459
|
InputSecurityGroup.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
3446
3460
|
InputSecurityGroup.add_member(:inputs, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "inputs"))
|
@@ -4515,6 +4529,17 @@ module Aws::MediaLive
|
|
4515
4529
|
SignalMapSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
4516
4530
|
SignalMapSummary.struct_class = Types::SignalMapSummary
|
4517
4531
|
|
4532
|
+
Smpte2110ReceiverGroup.add_member(:sdp_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSdpSettings, location_name: "sdpSettings"))
|
4533
|
+
Smpte2110ReceiverGroup.struct_class = Types::Smpte2110ReceiverGroup
|
4534
|
+
|
4535
|
+
Smpte2110ReceiverGroupSdpSettings.add_member(:ancillary_sdps, Shapes::ShapeRef.new(shape: __listOfInputSdpLocation, location_name: "ancillarySdps"))
|
4536
|
+
Smpte2110ReceiverGroupSdpSettings.add_member(:audio_sdps, Shapes::ShapeRef.new(shape: __listOfInputSdpLocation, location_name: "audioSdps"))
|
4537
|
+
Smpte2110ReceiverGroupSdpSettings.add_member(:video_sdp, Shapes::ShapeRef.new(shape: InputSdpLocation, location_name: "videoSdp"))
|
4538
|
+
Smpte2110ReceiverGroupSdpSettings.struct_class = Types::Smpte2110ReceiverGroupSdpSettings
|
4539
|
+
|
4540
|
+
Smpte2110ReceiverGroupSettings.add_member(:smpte_2110_receiver_groups, Shapes::ShapeRef.new(shape: __listOfSmpte2110ReceiverGroup, location_name: "smpte2110ReceiverGroups"))
|
4541
|
+
Smpte2110ReceiverGroupSettings.struct_class = Types::Smpte2110ReceiverGroupSettings
|
4542
|
+
|
4518
4543
|
SmpteTtDestinationSettings.struct_class = Types::SmpteTtDestinationSettings
|
4519
4544
|
|
4520
4545
|
SrtCallerDecryption.add_member(:algorithm, Shapes::ShapeRef.new(shape: Algorithm, location_name: "algorithm"))
|
@@ -5210,6 +5235,7 @@ module Aws::MediaLive
|
|
5210
5235
|
UpdateInput.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfInputSourceRequest, location_name: "sources"))
|
5211
5236
|
UpdateInput.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettingsRequest, location_name: "srtSettings"))
|
5212
5237
|
UpdateInput.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettingsUpdateRequest, location_name: "multicastSettings"))
|
5238
|
+
UpdateInput.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
|
5213
5239
|
UpdateInput.struct_class = Types::UpdateInput
|
5214
5240
|
|
5215
5241
|
UpdateInputDevice.add_member(:hd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceConfigurableSettings, location_name: "hdDeviceSettings"))
|
@@ -5253,6 +5279,7 @@ module Aws::MediaLive
|
|
5253
5279
|
UpdateInputRequest.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfInputSourceRequest, location_name: "sources"))
|
5254
5280
|
UpdateInputRequest.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettingsRequest, location_name: "srtSettings"))
|
5255
5281
|
UpdateInputRequest.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettingsUpdateRequest, location_name: "multicastSettings"))
|
5282
|
+
UpdateInputRequest.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
|
5256
5283
|
UpdateInputRequest.struct_class = Types::UpdateInputRequest
|
5257
5284
|
|
5258
5285
|
UpdateInputResponse.add_member(:input, Shapes::ShapeRef.new(shape: Input, location_name: "input"))
|
@@ -5517,6 +5544,8 @@ module Aws::MediaLive
|
|
5517
5544
|
|
5518
5545
|
__listOfInputRequestDestinationRoute.member = Shapes::ShapeRef.new(shape: InputRequestDestinationRoute)
|
5519
5546
|
|
5547
|
+
__listOfInputSdpLocation.member = Shapes::ShapeRef.new(shape: InputSdpLocation)
|
5548
|
+
|
5520
5549
|
__listOfInputSecurityGroup.member = Shapes::ShapeRef.new(shape: InputSecurityGroup)
|
5521
5550
|
|
5522
5551
|
__listOfInputSource.member = Shapes::ShapeRef.new(shape: InputSource)
|
@@ -5595,6 +5624,8 @@ module Aws::MediaLive
|
|
5595
5624
|
|
5596
5625
|
__listOfSignalMapSummary.member = Shapes::ShapeRef.new(shape: SignalMapSummary)
|
5597
5626
|
|
5627
|
+
__listOfSmpte2110ReceiverGroup.member = Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroup)
|
5628
|
+
|
5598
5629
|
__listOfSrtCallerSource.member = Shapes::ShapeRef.new(shape: SrtCallerSource)
|
5599
5630
|
|
5600
5631
|
__listOfSrtCallerSourceRequest.member = Shapes::ShapeRef.new(shape: SrtCallerSourceRequest)
|
@@ -2387,6 +2387,11 @@ module Aws::MediaLive
|
|
2387
2387
|
# Multicast Input settings.
|
2388
2388
|
# @return [Types::MulticastSettingsCreateRequest]
|
2389
2389
|
#
|
2390
|
+
# @!attribute [rw] smpte_2110_receiver_group_settings
|
2391
|
+
# Include this parameter if the input is a SMPTE 2110 input, to
|
2392
|
+
# identify the stream sources for this input.
|
2393
|
+
# @return [Types::Smpte2110ReceiverGroupSettings]
|
2394
|
+
#
|
2390
2395
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
2391
2396
|
#
|
2392
2397
|
class CreateInput < Struct.new(
|
@@ -2403,7 +2408,8 @@ module Aws::MediaLive
|
|
2403
2408
|
:vpc,
|
2404
2409
|
:srt_settings,
|
2405
2410
|
:input_network_location,
|
2406
|
-
:multicast_settings
|
2411
|
+
:multicast_settings,
|
2412
|
+
:smpte_2110_receiver_group_settings)
|
2407
2413
|
SENSITIVE = []
|
2408
2414
|
include Aws::Structure
|
2409
2415
|
end
|
@@ -2466,6 +2472,10 @@ module Aws::MediaLive
|
|
2466
2472
|
# and optional source ip addresses.
|
2467
2473
|
# @return [Types::MulticastSettingsCreateRequest]
|
2468
2474
|
#
|
2475
|
+
# @!attribute [rw] smpte_2110_receiver_group_settings
|
2476
|
+
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
2477
|
+
# @return [Types::Smpte2110ReceiverGroupSettings]
|
2478
|
+
#
|
2469
2479
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInputRequest AWS API Documentation
|
2470
2480
|
#
|
2471
2481
|
class CreateInputRequest < Struct.new(
|
@@ -2482,7 +2492,8 @@ module Aws::MediaLive
|
|
2482
2492
|
:vpc,
|
2483
2493
|
:srt_settings,
|
2484
2494
|
:input_network_location,
|
2485
|
-
:multicast_settings
|
2495
|
+
:multicast_settings,
|
2496
|
+
:smpte_2110_receiver_group_settings)
|
2486
2497
|
SENSITIVE = []
|
2487
2498
|
include Aws::Structure
|
2488
2499
|
end
|
@@ -3514,6 +3525,10 @@ module Aws::MediaLive
|
|
3514
3525
|
# and optional source ip addresses.
|
3515
3526
|
# @return [Types::MulticastSettings]
|
3516
3527
|
#
|
3528
|
+
# @!attribute [rw] smpte_2110_receiver_group_settings
|
3529
|
+
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
3530
|
+
# @return [Types::Smpte2110ReceiverGroupSettings]
|
3531
|
+
#
|
3517
3532
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputResponse AWS API Documentation
|
3518
3533
|
#
|
3519
3534
|
class DescribeInputResponse < Struct.new(
|
@@ -3535,7 +3550,8 @@ module Aws::MediaLive
|
|
3535
3550
|
:type,
|
3536
3551
|
:srt_settings,
|
3537
3552
|
:input_network_location,
|
3538
|
-
:multicast_settings
|
3553
|
+
:multicast_settings,
|
3554
|
+
:smpte_2110_receiver_group_settings)
|
3539
3555
|
SENSITIVE = []
|
3540
3556
|
include Aws::Structure
|
3541
3557
|
end
|
@@ -4964,7 +4980,11 @@ module Aws::MediaLive
|
|
4964
4980
|
# PIPELINE\_LOCKING - MediaLive will attempt to synchronize the output
|
4965
4981
|
# of each pipeline to the other. EPOCH\_LOCKING - MediaLive will
|
4966
4982
|
# attempt to synchronize the output of each pipeline to the Unix
|
4967
|
-
# epoch.
|
4983
|
+
# epoch. DISABLED - MediaLive will not attempt to synchronize the
|
4984
|
+
# output of pipelines. We advise against disabling output locking
|
4985
|
+
# because it has negative side effects in most workflows. For more
|
4986
|
+
# information, see the section about output locking (pipeline locking)
|
4987
|
+
# in the Medialive user guide.
|
4968
4988
|
# @return [String]
|
4969
4989
|
#
|
4970
4990
|
# @!attribute [rw] output_timing_source
|
@@ -6574,6 +6594,11 @@ module Aws::MediaLive
|
|
6574
6594
|
# Multicast Input settings.
|
6575
6595
|
# @return [Types::MulticastSettings]
|
6576
6596
|
#
|
6597
|
+
# @!attribute [rw] smpte_2110_receiver_group_settings
|
6598
|
+
# Include this parameter if the input is a SMPTE 2110 input, to
|
6599
|
+
# identify the stream sources for this input.
|
6600
|
+
# @return [Types::Smpte2110ReceiverGroupSettings]
|
6601
|
+
#
|
6577
6602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Input AWS API Documentation
|
6578
6603
|
#
|
6579
6604
|
class Input < Struct.new(
|
@@ -6595,7 +6620,8 @@ module Aws::MediaLive
|
|
6595
6620
|
:type,
|
6596
6621
|
:srt_settings,
|
6597
6622
|
:input_network_location,
|
6598
|
-
:multicast_settings
|
6623
|
+
:multicast_settings,
|
6624
|
+
:smpte_2110_receiver_group_settings)
|
6599
6625
|
SENSITIVE = []
|
6600
6626
|
include Aws::Structure
|
6601
6627
|
end
|
@@ -12867,6 +12893,11 @@ module Aws::MediaLive
|
|
12867
12893
|
# Multicast Input settings.
|
12868
12894
|
# @return [Types::MulticastSettingsUpdateRequest]
|
12869
12895
|
#
|
12896
|
+
# @!attribute [rw] smpte_2110_receiver_group_settings
|
12897
|
+
# Include this parameter if the input is a SMPTE 2110 input, to
|
12898
|
+
# identify the stream sources for this input.
|
12899
|
+
# @return [Types::Smpte2110ReceiverGroupSettings]
|
12900
|
+
#
|
12870
12901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
12871
12902
|
#
|
12872
12903
|
class UpdateInput < Struct.new(
|
@@ -12878,7 +12909,8 @@ module Aws::MediaLive
|
|
12878
12909
|
:role_arn,
|
12879
12910
|
:sources,
|
12880
12911
|
:srt_settings,
|
12881
|
-
:multicast_settings
|
12912
|
+
:multicast_settings,
|
12913
|
+
:smpte_2110_receiver_group_settings)
|
12882
12914
|
SENSITIVE = []
|
12883
12915
|
include Aws::Structure
|
12884
12916
|
end
|
@@ -13063,6 +13095,10 @@ module Aws::MediaLive
|
|
13063
13095
|
# and optional source ip addresses.
|
13064
13096
|
# @return [Types::MulticastSettingsUpdateRequest]
|
13065
13097
|
#
|
13098
|
+
# @!attribute [rw] smpte_2110_receiver_group_settings
|
13099
|
+
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
13100
|
+
# @return [Types::Smpte2110ReceiverGroupSettings]
|
13101
|
+
#
|
13066
13102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputRequest AWS API Documentation
|
13067
13103
|
#
|
13068
13104
|
class UpdateInputRequest < Struct.new(
|
@@ -13075,7 +13111,8 @@ module Aws::MediaLive
|
|
13075
13111
|
:role_arn,
|
13076
13112
|
:sources,
|
13077
13113
|
:srt_settings,
|
13078
|
-
:multicast_settings
|
13114
|
+
:multicast_settings,
|
13115
|
+
:smpte_2110_receiver_group_settings)
|
13079
13116
|
SENSITIVE = []
|
13080
13117
|
include Aws::Structure
|
13081
13118
|
end
|
@@ -21082,6 +21119,86 @@ module Aws::MediaLive
|
|
21082
21119
|
include Aws::Structure
|
21083
21120
|
end
|
21084
21121
|
|
21122
|
+
# The location of the SDP file for one of the SMPTE 2110 streams in a
|
21123
|
+
# receiver group.
|
21124
|
+
#
|
21125
|
+
# @!attribute [rw] media_index
|
21126
|
+
# The index of the media stream in the SDP file for one SMPTE 2110
|
21127
|
+
# stream.
|
21128
|
+
# @return [Integer]
|
21129
|
+
#
|
21130
|
+
# @!attribute [rw] sdp_url
|
21131
|
+
# The URL of the SDP file for one SMPTE 2110 stream.
|
21132
|
+
# @return [String]
|
21133
|
+
#
|
21134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputSdpLocation AWS API Documentation
|
21135
|
+
#
|
21136
|
+
class InputSdpLocation < Struct.new(
|
21137
|
+
:media_index,
|
21138
|
+
:sdp_url)
|
21139
|
+
SENSITIVE = []
|
21140
|
+
include Aws::Structure
|
21141
|
+
end
|
21142
|
+
|
21143
|
+
# A receiver group is a collection of video, audio, and ancillary
|
21144
|
+
# streams that you want to group together and attach to one input.
|
21145
|
+
#
|
21146
|
+
# @!attribute [rw] sdp_settings
|
21147
|
+
# The single Smpte2110ReceiverGroupSdpSettings that identify the
|
21148
|
+
# video, audio, and ancillary streams for this receiver group.
|
21149
|
+
# @return [Types::Smpte2110ReceiverGroupSdpSettings]
|
21150
|
+
#
|
21151
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Smpte2110ReceiverGroup AWS API Documentation
|
21152
|
+
#
|
21153
|
+
class Smpte2110ReceiverGroup < Struct.new(
|
21154
|
+
:sdp_settings)
|
21155
|
+
SENSITIVE = []
|
21156
|
+
include Aws::Structure
|
21157
|
+
end
|
21158
|
+
|
21159
|
+
# Information about the SDP files that describe the SMPTE 2110 streams
|
21160
|
+
# that go into one SMPTE 2110 receiver group.
|
21161
|
+
#
|
21162
|
+
# @!attribute [rw] ancillary_sdps
|
21163
|
+
# A list of InputSdpLocations. Each item in the list specifies the SDP
|
21164
|
+
# file and index for one ancillary SMPTE 2110 stream. Each stream
|
21165
|
+
# encapsulates one captions stream (out of any number you can include)
|
21166
|
+
# or the single SCTE 35 stream that you can include.
|
21167
|
+
# @return [Array<Types::InputSdpLocation>]
|
21168
|
+
#
|
21169
|
+
# @!attribute [rw] audio_sdps
|
21170
|
+
# A list of InputSdpLocations. Each item in the list specifies the SDP
|
21171
|
+
# file and index for one audio SMPTE 2110 stream.
|
21172
|
+
# @return [Array<Types::InputSdpLocation>]
|
21173
|
+
#
|
21174
|
+
# @!attribute [rw] video_sdp
|
21175
|
+
# The InputSdpLocation that specifies the SDP file and index for the
|
21176
|
+
# single video SMPTE 2110 stream for this 2110 input.
|
21177
|
+
# @return [Types::InputSdpLocation]
|
21178
|
+
#
|
21179
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Smpte2110ReceiverGroupSdpSettings AWS API Documentation
|
21180
|
+
#
|
21181
|
+
class Smpte2110ReceiverGroupSdpSettings < Struct.new(
|
21182
|
+
:ancillary_sdps,
|
21183
|
+
:audio_sdps,
|
21184
|
+
:video_sdp)
|
21185
|
+
SENSITIVE = []
|
21186
|
+
include Aws::Structure
|
21187
|
+
end
|
21188
|
+
|
21189
|
+
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
21190
|
+
#
|
21191
|
+
# @!attribute [rw] smpte_2110_receiver_groups
|
21192
|
+
# @return [Array<Types::Smpte2110ReceiverGroup>]
|
21193
|
+
#
|
21194
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Smpte2110ReceiverGroupSettings AWS API Documentation
|
21195
|
+
#
|
21196
|
+
class Smpte2110ReceiverGroupSettings < Struct.new(
|
21197
|
+
:smpte_2110_receiver_groups)
|
21198
|
+
SENSITIVE = []
|
21199
|
+
include Aws::Structure
|
21200
|
+
end
|
21201
|
+
|
21085
21202
|
end
|
21086
21203
|
end
|
21087
21204
|
|
data/lib/aws-sdk-medialive.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -621,7 +621,7 @@ module Aws
|
|
621
621
|
input_loss_image_type: ("COLOR" | "SLATE")?,
|
622
622
|
repeat_frame_msec: ::Integer?
|
623
623
|
}?,
|
624
|
-
output_locking_mode: ("EPOCH_LOCKING" | "PIPELINE_LOCKING")?,
|
624
|
+
output_locking_mode: ("EPOCH_LOCKING" | "PIPELINE_LOCKING" | "DISABLED")?,
|
625
625
|
output_timing_source: ("INPUT_CLOCK" | "SYSTEM_CLOCK")?,
|
626
626
|
support_low_framerate_inputs: ("DISABLED" | "ENABLED")?,
|
627
627
|
output_locking_settings: {
|
@@ -1586,7 +1586,7 @@ module Aws
|
|
1586
1586
|
},
|
1587
1587
|
],
|
1588
1588
|
?tags: Hash[::String, ::String],
|
1589
|
-
?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST"),
|
1589
|
+
?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP"),
|
1590
1590
|
?vpc: {
|
1591
1591
|
security_group_ids: Array[::String]?,
|
1592
1592
|
subnet_ids: Array[::String]
|
@@ -1613,6 +1613,30 @@ module Aws
|
|
1613
1613
|
url: ::String
|
1614
1614
|
},
|
1615
1615
|
]?
|
1616
|
+
},
|
1617
|
+
?smpte_2110_receiver_group_settings: {
|
1618
|
+
smpte_2110_receiver_groups: Array[
|
1619
|
+
{
|
1620
|
+
sdp_settings: {
|
1621
|
+
ancillary_sdps: Array[
|
1622
|
+
{
|
1623
|
+
media_index: ::Integer?,
|
1624
|
+
sdp_url: ::String?
|
1625
|
+
},
|
1626
|
+
]?,
|
1627
|
+
audio_sdps: Array[
|
1628
|
+
{
|
1629
|
+
media_index: ::Integer?,
|
1630
|
+
sdp_url: ::String?
|
1631
|
+
},
|
1632
|
+
]?,
|
1633
|
+
video_sdp: {
|
1634
|
+
media_index: ::Integer?,
|
1635
|
+
sdp_url: ::String?
|
1636
|
+
}?
|
1637
|
+
}?
|
1638
|
+
},
|
1639
|
+
]?
|
1616
1640
|
}
|
1617
1641
|
) -> _CreateInputResponseSuccess
|
1618
1642
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInputResponseSuccess
|
@@ -1878,10 +1902,11 @@ module Aws
|
|
1878
1902
|
def sources: () -> ::Array[Types::InputSource]
|
1879
1903
|
def state: () -> ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
1880
1904
|
def tags: () -> ::Hash[::String, ::String]
|
1881
|
-
def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST")
|
1905
|
+
def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP")
|
1882
1906
|
def srt_settings: () -> Types::SrtSettings
|
1883
1907
|
def input_network_location: () -> ("AWS" | "ON_PREMISES")
|
1884
1908
|
def multicast_settings: () -> Types::MulticastSettings
|
1909
|
+
def smpte_2110_receiver_group_settings: () -> Types::Smpte2110ReceiverGroupSettings
|
1885
1910
|
end
|
1886
1911
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_input-instance_method
|
1887
1912
|
def describe_input: (
|
@@ -2683,7 +2708,7 @@ module Aws
|
|
2683
2708
|
input_loss_image_type: ("COLOR" | "SLATE")?,
|
2684
2709
|
repeat_frame_msec: ::Integer?
|
2685
2710
|
}?,
|
2686
|
-
output_locking_mode: ("EPOCH_LOCKING" | "PIPELINE_LOCKING")?,
|
2711
|
+
output_locking_mode: ("EPOCH_LOCKING" | "PIPELINE_LOCKING" | "DISABLED")?,
|
2687
2712
|
output_timing_source: ("INPUT_CLOCK" | "SYSTEM_CLOCK")?,
|
2688
2713
|
support_low_framerate_inputs: ("DISABLED" | "ENABLED")?,
|
2689
2714
|
output_locking_settings: {
|
@@ -3699,6 +3724,30 @@ module Aws
|
|
3699
3724
|
url: ::String
|
3700
3725
|
},
|
3701
3726
|
]?
|
3727
|
+
},
|
3728
|
+
?smpte_2110_receiver_group_settings: {
|
3729
|
+
smpte_2110_receiver_groups: Array[
|
3730
|
+
{
|
3731
|
+
sdp_settings: {
|
3732
|
+
ancillary_sdps: Array[
|
3733
|
+
{
|
3734
|
+
media_index: ::Integer?,
|
3735
|
+
sdp_url: ::String?
|
3736
|
+
},
|
3737
|
+
]?,
|
3738
|
+
audio_sdps: Array[
|
3739
|
+
{
|
3740
|
+
media_index: ::Integer?,
|
3741
|
+
sdp_url: ::String?
|
3742
|
+
},
|
3743
|
+
]?,
|
3744
|
+
video_sdp: {
|
3745
|
+
media_index: ::Integer?,
|
3746
|
+
sdp_url: ::String?
|
3747
|
+
}?
|
3748
|
+
}?
|
3749
|
+
},
|
3750
|
+
]?
|
3702
3751
|
}
|
3703
3752
|
) -> _UpdateInputResponseSuccess
|
3704
3753
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInputResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -619,11 +619,12 @@ module Aws::MediaLive
|
|
619
619
|
attr_accessor role_arn: ::String
|
620
620
|
attr_accessor sources: ::Array[Types::InputSourceRequest]
|
621
621
|
attr_accessor tags: ::Hash[::String, ::String]
|
622
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST")
|
622
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP")
|
623
623
|
attr_accessor vpc: Types::InputVpcRequest
|
624
624
|
attr_accessor srt_settings: Types::SrtSettingsRequest
|
625
625
|
attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
|
626
626
|
attr_accessor multicast_settings: Types::MulticastSettingsCreateRequest
|
627
|
+
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
627
628
|
SENSITIVE: []
|
628
629
|
end
|
629
630
|
|
@@ -637,11 +638,12 @@ module Aws::MediaLive
|
|
637
638
|
attr_accessor role_arn: ::String
|
638
639
|
attr_accessor sources: ::Array[Types::InputSourceRequest]
|
639
640
|
attr_accessor tags: ::Hash[::String, ::String]
|
640
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST")
|
641
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP")
|
641
642
|
attr_accessor vpc: Types::InputVpcRequest
|
642
643
|
attr_accessor srt_settings: Types::SrtSettingsRequest
|
643
644
|
attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
|
644
645
|
attr_accessor multicast_settings: Types::MulticastSettingsCreateRequest
|
646
|
+
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
645
647
|
SENSITIVE: []
|
646
648
|
end
|
647
649
|
|
@@ -977,10 +979,11 @@ module Aws::MediaLive
|
|
977
979
|
attr_accessor sources: ::Array[Types::InputSource]
|
978
980
|
attr_accessor state: ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
979
981
|
attr_accessor tags: ::Hash[::String, ::String]
|
980
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST")
|
982
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP")
|
981
983
|
attr_accessor srt_settings: Types::SrtSettings
|
982
984
|
attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
|
983
985
|
attr_accessor multicast_settings: Types::MulticastSettings
|
986
|
+
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
984
987
|
SENSITIVE: []
|
985
988
|
end
|
986
989
|
|
@@ -1345,7 +1348,7 @@ module Aws::MediaLive
|
|
1345
1348
|
attr_accessor initial_audio_gain: ::Integer
|
1346
1349
|
attr_accessor input_end_action: ("NONE" | "SWITCH_AND_LOOP_INPUTS")
|
1347
1350
|
attr_accessor input_loss_behavior: Types::InputLossBehavior
|
1348
|
-
attr_accessor output_locking_mode: ("EPOCH_LOCKING" | "PIPELINE_LOCKING")
|
1351
|
+
attr_accessor output_locking_mode: ("EPOCH_LOCKING" | "PIPELINE_LOCKING" | "DISABLED")
|
1349
1352
|
attr_accessor output_timing_source: ("INPUT_CLOCK" | "SYSTEM_CLOCK")
|
1350
1353
|
attr_accessor support_low_framerate_inputs: ("DISABLED" | "ENABLED")
|
1351
1354
|
attr_accessor output_locking_settings: Types::OutputLockingSettings
|
@@ -1631,10 +1634,11 @@ module Aws::MediaLive
|
|
1631
1634
|
attr_accessor sources: ::Array[Types::InputSource]
|
1632
1635
|
attr_accessor state: ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
1633
1636
|
attr_accessor tags: ::Hash[::String, ::String]
|
1634
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST")
|
1637
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP")
|
1635
1638
|
attr_accessor srt_settings: Types::SrtSettings
|
1636
1639
|
attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
|
1637
1640
|
attr_accessor multicast_settings: Types::MulticastSettings
|
1641
|
+
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
1638
1642
|
SENSITIVE: []
|
1639
1643
|
end
|
1640
1644
|
|
@@ -3294,6 +3298,7 @@ module Aws::MediaLive
|
|
3294
3298
|
attr_accessor sources: ::Array[Types::InputSourceRequest]
|
3295
3299
|
attr_accessor srt_settings: Types::SrtSettingsRequest
|
3296
3300
|
attr_accessor multicast_settings: Types::MulticastSettingsUpdateRequest
|
3301
|
+
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
3297
3302
|
SENSITIVE: []
|
3298
3303
|
end
|
3299
3304
|
|
@@ -3345,6 +3350,7 @@ module Aws::MediaLive
|
|
3345
3350
|
attr_accessor sources: ::Array[Types::InputSourceRequest]
|
3346
3351
|
attr_accessor srt_settings: Types::SrtSettingsRequest
|
3347
3352
|
attr_accessor multicast_settings: Types::MulticastSettingsUpdateRequest
|
3353
|
+
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
3348
3354
|
SENSITIVE: []
|
3349
3355
|
end
|
3350
3356
|
|
@@ -5502,5 +5508,28 @@ module Aws::MediaLive
|
|
5502
5508
|
attr_accessor id_3: ::String
|
5503
5509
|
SENSITIVE: []
|
5504
5510
|
end
|
5511
|
+
|
5512
|
+
class InputSdpLocation
|
5513
|
+
attr_accessor media_index: ::Integer
|
5514
|
+
attr_accessor sdp_url: ::String
|
5515
|
+
SENSITIVE: []
|
5516
|
+
end
|
5517
|
+
|
5518
|
+
class Smpte2110ReceiverGroup
|
5519
|
+
attr_accessor sdp_settings: Types::Smpte2110ReceiverGroupSdpSettings
|
5520
|
+
SENSITIVE: []
|
5521
|
+
end
|
5522
|
+
|
5523
|
+
class Smpte2110ReceiverGroupSdpSettings
|
5524
|
+
attr_accessor ancillary_sdps: ::Array[Types::InputSdpLocation]
|
5525
|
+
attr_accessor audio_sdps: ::Array[Types::InputSdpLocation]
|
5526
|
+
attr_accessor video_sdp: Types::InputSdpLocation
|
5527
|
+
SENSITIVE: []
|
5528
|
+
end
|
5529
|
+
|
5530
|
+
class Smpte2110ReceiverGroupSettings
|
5531
|
+
attr_accessor smpte_2110_receiver_groups: ::Array[Types::Smpte2110ReceiverGroup]
|
5532
|
+
SENSITIVE: []
|
5533
|
+
end
|
5505
5534
|
end
|
5506
5535
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-medialive
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.149.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: 2025-
|
11
|
+
date: 2025-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|