aws-sdk-medialive 1.148.0 → 1.151.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +446 -7
- data/lib/aws-sdk-medialive/client_api.rb +238 -0
- data/lib/aws-sdk-medialive/types.rb +610 -17
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +152 -9
- data/sig/types.rbs +154 -4
- metadata +2 -2
@@ -1392,6 +1392,12 @@ module Aws::MediaLive
|
|
1392
1392
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
1393
1393
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
1394
1394
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
1395
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings #=> Array
|
1396
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].caption_channel #=> Integer
|
1397
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].language_code #=> String
|
1398
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
|
1399
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_period #=> Integer
|
1400
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_passthrough #=> String, one of "DISABLED", "ENABLED"
|
1395
1401
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
1396
1402
|
# resp.channel.encoder_settings.output_groups[0].outputs #=> Array
|
1397
1403
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -1929,6 +1935,12 @@ module Aws::MediaLive
|
|
1929
1935
|
# Settings for a Multicast input. Contains a list of multicast Urls and
|
1930
1936
|
# optional source ip addresses.
|
1931
1937
|
#
|
1938
|
+
# @option params [Types::Smpte2110ReceiverGroupSettings] :smpte_2110_receiver_group_settings
|
1939
|
+
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
1940
|
+
#
|
1941
|
+
# @option params [Array<String>] :sdi_sources
|
1942
|
+
# SDI Sources for this Input.
|
1943
|
+
#
|
1932
1944
|
# @return [Types::CreateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1933
1945
|
#
|
1934
1946
|
# * {Types::CreateInputResponse#input #input} => Types::Input
|
@@ -1973,7 +1985,7 @@ module Aws::MediaLive
|
|
1973
1985
|
# tags: {
|
1974
1986
|
# "__string" => "__string",
|
1975
1987
|
# },
|
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
|
1988
|
+
# 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, SDI
|
1977
1989
|
# vpc: {
|
1978
1990
|
# security_group_ids: ["__string"],
|
1979
1991
|
# subnet_ids: ["__string"], # required
|
@@ -2001,6 +2013,31 @@ module Aws::MediaLive
|
|
2001
2013
|
# },
|
2002
2014
|
# ],
|
2003
2015
|
# },
|
2016
|
+
# smpte_2110_receiver_group_settings: {
|
2017
|
+
# smpte_2110_receiver_groups: [
|
2018
|
+
# {
|
2019
|
+
# sdp_settings: {
|
2020
|
+
# ancillary_sdps: [
|
2021
|
+
# {
|
2022
|
+
# media_index: 1,
|
2023
|
+
# sdp_url: "__string",
|
2024
|
+
# },
|
2025
|
+
# ],
|
2026
|
+
# audio_sdps: [
|
2027
|
+
# {
|
2028
|
+
# media_index: 1,
|
2029
|
+
# sdp_url: "__string",
|
2030
|
+
# },
|
2031
|
+
# ],
|
2032
|
+
# video_sdp: {
|
2033
|
+
# media_index: 1,
|
2034
|
+
# sdp_url: "__string",
|
2035
|
+
# },
|
2036
|
+
# },
|
2037
|
+
# },
|
2038
|
+
# ],
|
2039
|
+
# },
|
2040
|
+
# sdi_sources: ["__string"],
|
2004
2041
|
# })
|
2005
2042
|
#
|
2006
2043
|
# @example Response structure
|
@@ -2038,7 +2075,7 @@ module Aws::MediaLive
|
|
2038
2075
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2039
2076
|
# resp.input.tags #=> Hash
|
2040
2077
|
# 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"
|
2078
|
+
# 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", "SDI"
|
2042
2079
|
# resp.input.srt_settings.srt_caller_sources #=> Array
|
2043
2080
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
2044
2081
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -2050,6 +2087,17 @@ module Aws::MediaLive
|
|
2050
2087
|
# resp.input.multicast_settings.sources #=> Array
|
2051
2088
|
# resp.input.multicast_settings.sources[0].source_ip #=> String
|
2052
2089
|
# resp.input.multicast_settings.sources[0].url #=> String
|
2090
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
2091
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
2092
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
2093
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
2094
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
2095
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
2096
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
2097
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
2098
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
2099
|
+
# resp.input.sdi_sources #=> Array
|
2100
|
+
# resp.input.sdi_sources[0] #=> String
|
2053
2101
|
#
|
2054
2102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
2055
2103
|
#
|
@@ -2315,7 +2363,7 @@ module Aws::MediaLive
|
|
2315
2363
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2316
2364
|
# resp.input.tags #=> Hash
|
2317
2365
|
# 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"
|
2366
|
+
# 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", "SDI"
|
2319
2367
|
# resp.input.srt_settings.srt_caller_sources #=> Array
|
2320
2368
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
2321
2369
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -2327,6 +2375,17 @@ module Aws::MediaLive
|
|
2327
2375
|
# resp.input.multicast_settings.sources #=> Array
|
2328
2376
|
# resp.input.multicast_settings.sources[0].source_ip #=> String
|
2329
2377
|
# resp.input.multicast_settings.sources[0].url #=> String
|
2378
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
2379
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
2380
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
2381
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
2382
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
2383
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
2384
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
2385
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
2386
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
2387
|
+
# resp.input.sdi_sources #=> Array
|
2388
|
+
# resp.input.sdi_sources[0] #=> String
|
2330
2389
|
#
|
2331
2390
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreatePartnerInput AWS API Documentation
|
2332
2391
|
#
|
@@ -2720,6 +2779,12 @@ module Aws::MediaLive
|
|
2720
2779
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
2721
2780
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
2722
2781
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
2782
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings #=> Array
|
2783
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].caption_channel #=> Integer
|
2784
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].language_code #=> String
|
2785
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
|
2786
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_period #=> Integer
|
2787
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_passthrough #=> String, one of "DISABLED", "ENABLED"
|
2723
2788
|
# resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
2724
2789
|
# resp.encoder_settings.output_groups[0].outputs #=> Array
|
2725
2790
|
# resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -3865,6 +3930,12 @@ module Aws::MediaLive
|
|
3865
3930
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
3866
3931
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
3867
3932
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
3933
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings #=> Array
|
3934
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].caption_channel #=> Integer
|
3935
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].language_code #=> String
|
3936
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
|
3937
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_period #=> Integer
|
3938
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_passthrough #=> String, one of "DISABLED", "ENABLED"
|
3868
3939
|
# resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
3869
3940
|
# resp.encoder_settings.output_groups[0].outputs #=> Array
|
3870
3941
|
# resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -4389,6 +4460,8 @@ module Aws::MediaLive
|
|
4389
4460
|
# * {Types::DescribeInputResponse#srt_settings #srt_settings} => Types::SrtSettings
|
4390
4461
|
# * {Types::DescribeInputResponse#input_network_location #input_network_location} => String
|
4391
4462
|
# * {Types::DescribeInputResponse#multicast_settings #multicast_settings} => Types::MulticastSettings
|
4463
|
+
# * {Types::DescribeInputResponse#smpte_2110_receiver_group_settings #smpte_2110_receiver_group_settings} => Types::Smpte2110ReceiverGroupSettings
|
4464
|
+
# * {Types::DescribeInputResponse#sdi_sources #sdi_sources} => Array<String>
|
4392
4465
|
#
|
4393
4466
|
# @example Request syntax with placeholder values
|
4394
4467
|
#
|
@@ -4431,7 +4504,7 @@ module Aws::MediaLive
|
|
4431
4504
|
# resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
4432
4505
|
# resp.tags #=> Hash
|
4433
4506
|
# 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"
|
4507
|
+
# 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", "SDI"
|
4435
4508
|
# resp.srt_settings.srt_caller_sources #=> Array
|
4436
4509
|
# resp.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
4437
4510
|
# resp.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -4443,6 +4516,17 @@ module Aws::MediaLive
|
|
4443
4516
|
# resp.multicast_settings.sources #=> Array
|
4444
4517
|
# resp.multicast_settings.sources[0].source_ip #=> String
|
4445
4518
|
# resp.multicast_settings.sources[0].url #=> String
|
4519
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
4520
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
4521
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
4522
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
4523
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
4524
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
4525
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
4526
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
4527
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
4528
|
+
# resp.sdi_sources #=> Array
|
4529
|
+
# resp.sdi_sources[0] #=> String
|
4446
4530
|
#
|
4447
4531
|
#
|
4448
4532
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4532,6 +4616,7 @@ module Aws::MediaLive
|
|
4532
4616
|
# resp.uhd_device_settings.audio_channel_pairs #=> Array
|
4533
4617
|
# resp.uhd_device_settings.audio_channel_pairs[0].id #=> Integer
|
4534
4618
|
# resp.uhd_device_settings.audio_channel_pairs[0].profile #=> String, one of "DISABLED", "VBR-AAC_HHE-16000", "VBR-AAC_HE-64000", "VBR-AAC_LC-128000", "CBR-AAC_HQ-192000", "CBR-AAC_HQ-256000", "CBR-AAC_HQ-384000", "CBR-AAC_HQ-512000"
|
4619
|
+
# resp.uhd_device_settings.input_resolution #=> String
|
4535
4620
|
# resp.tags #=> Hash
|
4536
4621
|
# resp.tags["__string"] #=> String
|
4537
4622
|
# resp.availability_zone #=> String
|
@@ -5294,6 +5379,7 @@ module Aws::MediaLive
|
|
5294
5379
|
# resp.input_devices[0].uhd_device_settings.audio_channel_pairs #=> Array
|
5295
5380
|
# resp.input_devices[0].uhd_device_settings.audio_channel_pairs[0].id #=> Integer
|
5296
5381
|
# resp.input_devices[0].uhd_device_settings.audio_channel_pairs[0].profile #=> String, one of "DISABLED", "VBR-AAC_HHE-16000", "VBR-AAC_HE-64000", "VBR-AAC_LC-128000", "CBR-AAC_HQ-192000", "CBR-AAC_HQ-256000", "CBR-AAC_HQ-384000", "CBR-AAC_HQ-512000"
|
5382
|
+
# resp.input_devices[0].uhd_device_settings.input_resolution #=> String
|
5297
5383
|
# resp.input_devices[0].tags #=> Hash
|
5298
5384
|
# resp.input_devices[0].tags["__string"] #=> String
|
5299
5385
|
# resp.input_devices[0].availability_zone #=> String
|
@@ -5410,7 +5496,7 @@ module Aws::MediaLive
|
|
5410
5496
|
# resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
5411
5497
|
# resp.inputs[0].tags #=> Hash
|
5412
5498
|
# 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"
|
5499
|
+
# 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", "SDI"
|
5414
5500
|
# resp.inputs[0].srt_settings.srt_caller_sources #=> Array
|
5415
5501
|
# resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
5416
5502
|
# resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -5422,6 +5508,17 @@ module Aws::MediaLive
|
|
5422
5508
|
# resp.inputs[0].multicast_settings.sources #=> Array
|
5423
5509
|
# resp.inputs[0].multicast_settings.sources[0].source_ip #=> String
|
5424
5510
|
# resp.inputs[0].multicast_settings.sources[0].url #=> String
|
5511
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
5512
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
5513
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
5514
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
5515
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
5516
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
5517
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
5518
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
5519
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
5520
|
+
# resp.inputs[0].sdi_sources #=> Array
|
5521
|
+
# resp.inputs[0].sdi_sources[0] #=> String
|
5425
5522
|
# resp.next_token #=> String
|
5426
5523
|
#
|
5427
5524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
|
@@ -6199,6 +6296,12 @@ module Aws::MediaLive
|
|
6199
6296
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
6200
6297
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
6201
6298
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
6299
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings #=> Array
|
6300
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].caption_channel #=> Integer
|
6301
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].language_code #=> String
|
6302
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
|
6303
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_period #=> Integer
|
6304
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_passthrough #=> String, one of "DISABLED", "ENABLED"
|
6202
6305
|
# resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
6203
6306
|
# resp.encoder_settings.output_groups[0].outputs #=> Array
|
6204
6307
|
# resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -7151,6 +7254,12 @@ module Aws::MediaLive
|
|
7151
7254
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
7152
7255
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
7153
7256
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
7257
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings #=> Array
|
7258
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].caption_channel #=> Integer
|
7259
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].language_code #=> String
|
7260
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
|
7261
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_period #=> Integer
|
7262
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_passthrough #=> String, one of "DISABLED", "ENABLED"
|
7154
7263
|
# resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
7155
7264
|
# resp.encoder_settings.output_groups[0].outputs #=> Array
|
7156
7265
|
# resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -8133,6 +8242,12 @@ module Aws::MediaLive
|
|
8133
8242
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
8134
8243
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
8135
8244
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
8245
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings #=> Array
|
8246
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].caption_channel #=> Integer
|
8247
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].language_code #=> String
|
8248
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
|
8249
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_period #=> Integer
|
8250
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_passthrough #=> String, one of "DISABLED", "ENABLED"
|
8136
8251
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
8137
8252
|
# resp.channel.encoder_settings.output_groups[0].outputs #=> Array
|
8138
8253
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -9000,6 +9115,12 @@ module Aws::MediaLive
|
|
9000
9115
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
9001
9116
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
9002
9117
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
9118
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings #=> Array
|
9119
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].caption_channel #=> Integer
|
9120
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].language_code #=> String
|
9121
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
|
9122
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_period #=> Integer
|
9123
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_passthrough #=> String, one of "DISABLED", "ENABLED"
|
9003
9124
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
9004
9125
|
# resp.channel.encoder_settings.output_groups[0].outputs #=> Array
|
9005
9126
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -9518,6 +9639,12 @@ module Aws::MediaLive
|
|
9518
9639
|
# Settings for a Multicast input. Contains a list of multicast Urls and
|
9519
9640
|
# optional source ip addresses.
|
9520
9641
|
#
|
9642
|
+
# @option params [Types::Smpte2110ReceiverGroupSettings] :smpte_2110_receiver_group_settings
|
9643
|
+
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
9644
|
+
#
|
9645
|
+
# @option params [Array<String>] :sdi_sources
|
9646
|
+
# SDI Sources for this Input.
|
9647
|
+
#
|
9521
9648
|
# @return [Types::UpdateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9522
9649
|
#
|
9523
9650
|
# * {Types::UpdateInputResponse#input #input} => Types::Input
|
@@ -9581,6 +9708,31 @@ module Aws::MediaLive
|
|
9581
9708
|
# },
|
9582
9709
|
# ],
|
9583
9710
|
# },
|
9711
|
+
# smpte_2110_receiver_group_settings: {
|
9712
|
+
# smpte_2110_receiver_groups: [
|
9713
|
+
# {
|
9714
|
+
# sdp_settings: {
|
9715
|
+
# ancillary_sdps: [
|
9716
|
+
# {
|
9717
|
+
# media_index: 1,
|
9718
|
+
# sdp_url: "__string",
|
9719
|
+
# },
|
9720
|
+
# ],
|
9721
|
+
# audio_sdps: [
|
9722
|
+
# {
|
9723
|
+
# media_index: 1,
|
9724
|
+
# sdp_url: "__string",
|
9725
|
+
# },
|
9726
|
+
# ],
|
9727
|
+
# video_sdp: {
|
9728
|
+
# media_index: 1,
|
9729
|
+
# sdp_url: "__string",
|
9730
|
+
# },
|
9731
|
+
# },
|
9732
|
+
# },
|
9733
|
+
# ],
|
9734
|
+
# },
|
9735
|
+
# sdi_sources: ["__string"],
|
9584
9736
|
# })
|
9585
9737
|
#
|
9586
9738
|
# @example Response structure
|
@@ -9618,7 +9770,7 @@ module Aws::MediaLive
|
|
9618
9770
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
9619
9771
|
# resp.input.tags #=> Hash
|
9620
9772
|
# 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"
|
9773
|
+
# 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", "SDI"
|
9622
9774
|
# resp.input.srt_settings.srt_caller_sources #=> Array
|
9623
9775
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
9624
9776
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -9630,6 +9782,17 @@ module Aws::MediaLive
|
|
9630
9782
|
# resp.input.multicast_settings.sources #=> Array
|
9631
9783
|
# resp.input.multicast_settings.sources[0].source_ip #=> String
|
9632
9784
|
# resp.input.multicast_settings.sources[0].url #=> String
|
9785
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
9786
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
9787
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
9788
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
9789
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
9790
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
9791
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
9792
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
9793
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
9794
|
+
# resp.input.sdi_sources #=> Array
|
9795
|
+
# resp.input.sdi_sources[0] #=> String
|
9633
9796
|
#
|
9634
9797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
9635
9798
|
#
|
@@ -9693,6 +9856,7 @@ module Aws::MediaLive
|
|
9693
9856
|
# profile: "DISABLED", # accepts DISABLED, VBR-AAC_HHE-16000, VBR-AAC_HE-64000, VBR-AAC_LC-128000, CBR-AAC_HQ-192000, CBR-AAC_HQ-256000, CBR-AAC_HQ-384000, CBR-AAC_HQ-512000
|
9694
9857
|
# },
|
9695
9858
|
# ],
|
9859
|
+
# input_resolution: "__string",
|
9696
9860
|
# },
|
9697
9861
|
# input_device_id: "__string", # required
|
9698
9862
|
# name: "__string",
|
@@ -9713,6 +9877,7 @@ module Aws::MediaLive
|
|
9713
9877
|
# profile: "DISABLED", # accepts DISABLED, VBR-AAC_HHE-16000, VBR-AAC_HE-64000, VBR-AAC_LC-128000, CBR-AAC_HQ-192000, CBR-AAC_HQ-256000, CBR-AAC_HQ-384000, CBR-AAC_HQ-512000
|
9714
9878
|
# },
|
9715
9879
|
# ],
|
9880
|
+
# input_resolution: "__string",
|
9716
9881
|
# },
|
9717
9882
|
# availability_zone: "__string",
|
9718
9883
|
# })
|
@@ -9760,6 +9925,7 @@ module Aws::MediaLive
|
|
9760
9925
|
# resp.uhd_device_settings.audio_channel_pairs #=> Array
|
9761
9926
|
# resp.uhd_device_settings.audio_channel_pairs[0].id #=> Integer
|
9762
9927
|
# resp.uhd_device_settings.audio_channel_pairs[0].profile #=> String, one of "DISABLED", "VBR-AAC_HHE-16000", "VBR-AAC_HE-64000", "VBR-AAC_LC-128000", "CBR-AAC_HQ-192000", "CBR-AAC_HQ-256000", "CBR-AAC_HQ-384000", "CBR-AAC_HQ-512000"
|
9928
|
+
# resp.uhd_device_settings.input_resolution #=> String
|
9763
9929
|
# resp.tags #=> Hash
|
9764
9930
|
# resp.tags["__string"] #=> String
|
9765
9931
|
# resp.availability_zone #=> String
|
@@ -10410,6 +10576,12 @@ module Aws::MediaLive
|
|
10410
10576
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
|
10411
10577
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_behavior #=> String, one of "DISABLED", "ENABLED"
|
10412
10578
|
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.id_3_name_modifier #=> String
|
10579
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings #=> Array
|
10580
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].caption_channel #=> Integer
|
10581
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.caption_language_mappings[0].language_code #=> String
|
10582
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_frame #=> String, one of "NONE", "PRIV", "TDRL"
|
10583
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_id_3_period #=> Integer
|
10584
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.timed_metadata_passthrough #=> String, one of "DISABLED", "ENABLED"
|
10413
10585
|
# resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
|
10414
10586
|
# resp.encoder_settings.output_groups[0].outputs #=> Array
|
10415
10587
|
# resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
|
@@ -12758,6 +12930,7 @@ module Aws::MediaLive
|
|
12758
12930
|
# * {Types::CreateNodeResponse#node_interface_mappings #node_interface_mappings} => Array<Types::NodeInterfaceMapping>
|
12759
12931
|
# * {Types::CreateNodeResponse#role #role} => String
|
12760
12932
|
# * {Types::CreateNodeResponse#state #state} => String
|
12933
|
+
# * {Types::CreateNodeResponse#sdi_source_mappings #sdi_source_mappings} => Array<Types::SdiSourceMapping>
|
12761
12934
|
#
|
12762
12935
|
# @example Request syntax with placeholder values
|
12763
12936
|
#
|
@@ -12794,6 +12967,10 @@ module Aws::MediaLive
|
|
12794
12967
|
# resp.node_interface_mappings[0].physical_interface_name #=> String
|
12795
12968
|
# resp.role #=> String, one of "BACKUP", "ACTIVE"
|
12796
12969
|
# resp.state #=> String, one of "CREATED", "REGISTERING", "READY_TO_ACTIVATE", "REGISTRATION_FAILED", "ACTIVATION_FAILED", "ACTIVE", "READY", "IN_USE", "DEREGISTERING", "DRAINING", "DEREGISTRATION_FAILED", "DEREGISTERED"
|
12970
|
+
# resp.sdi_source_mappings #=> Array
|
12971
|
+
# resp.sdi_source_mappings[0].card_number #=> Integer
|
12972
|
+
# resp.sdi_source_mappings[0].channel_number #=> Integer
|
12973
|
+
# resp.sdi_source_mappings[0].sdi_source #=> String
|
12797
12974
|
#
|
12798
12975
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateNode AWS API Documentation
|
12799
12976
|
#
|
@@ -13025,6 +13202,7 @@ module Aws::MediaLive
|
|
13025
13202
|
# * {Types::DeleteNodeResponse#node_interface_mappings #node_interface_mappings} => Array<Types::NodeInterfaceMapping>
|
13026
13203
|
# * {Types::DeleteNodeResponse#role #role} => String
|
13027
13204
|
# * {Types::DeleteNodeResponse#state #state} => String
|
13205
|
+
# * {Types::DeleteNodeResponse#sdi_source_mappings #sdi_source_mappings} => Array<Types::SdiSourceMapping>
|
13028
13206
|
#
|
13029
13207
|
# @example Request syntax with placeholder values
|
13030
13208
|
#
|
@@ -13049,6 +13227,10 @@ module Aws::MediaLive
|
|
13049
13227
|
# resp.node_interface_mappings[0].physical_interface_name #=> String
|
13050
13228
|
# resp.role #=> String, one of "BACKUP", "ACTIVE"
|
13051
13229
|
# resp.state #=> String, one of "CREATED", "REGISTERING", "READY_TO_ACTIVATE", "REGISTRATION_FAILED", "ACTIVATION_FAILED", "ACTIVE", "READY", "IN_USE", "DEREGISTERING", "DRAINING", "DEREGISTRATION_FAILED", "DEREGISTERED"
|
13230
|
+
# resp.sdi_source_mappings #=> Array
|
13231
|
+
# resp.sdi_source_mappings[0].card_number #=> Integer
|
13232
|
+
# resp.sdi_source_mappings[0].channel_number #=> Integer
|
13233
|
+
# resp.sdi_source_mappings[0].sdi_source #=> String
|
13052
13234
|
#
|
13053
13235
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteNode AWS API Documentation
|
13054
13236
|
#
|
@@ -13222,6 +13404,7 @@ module Aws::MediaLive
|
|
13222
13404
|
# * {Types::DescribeNodeResponse#node_interface_mappings #node_interface_mappings} => Array<Types::NodeInterfaceMapping>
|
13223
13405
|
# * {Types::DescribeNodeResponse#role #role} => String
|
13224
13406
|
# * {Types::DescribeNodeResponse#state #state} => String
|
13407
|
+
# * {Types::DescribeNodeResponse#sdi_source_mappings #sdi_source_mappings} => Array<Types::SdiSourceMapping>
|
13225
13408
|
#
|
13226
13409
|
# @example Request syntax with placeholder values
|
13227
13410
|
#
|
@@ -13246,6 +13429,10 @@ module Aws::MediaLive
|
|
13246
13429
|
# resp.node_interface_mappings[0].physical_interface_name #=> String
|
13247
13430
|
# resp.role #=> String, one of "BACKUP", "ACTIVE"
|
13248
13431
|
# resp.state #=> String, one of "CREATED", "REGISTERING", "READY_TO_ACTIVATE", "REGISTRATION_FAILED", "ACTIVATION_FAILED", "ACTIVE", "READY", "IN_USE", "DEREGISTERING", "DRAINING", "DEREGISTRATION_FAILED", "DEREGISTERED"
|
13432
|
+
# resp.sdi_source_mappings #=> Array
|
13433
|
+
# resp.sdi_source_mappings[0].card_number #=> Integer
|
13434
|
+
# resp.sdi_source_mappings[0].channel_number #=> Integer
|
13435
|
+
# resp.sdi_source_mappings[0].sdi_source #=> String
|
13249
13436
|
#
|
13250
13437
|
#
|
13251
13438
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -13441,6 +13628,10 @@ module Aws::MediaLive
|
|
13441
13628
|
# resp.nodes[0].node_interface_mappings[0].physical_interface_name #=> String
|
13442
13629
|
# resp.nodes[0].role #=> String, one of "BACKUP", "ACTIVE"
|
13443
13630
|
# resp.nodes[0].state #=> String, one of "CREATED", "REGISTERING", "READY_TO_ACTIVATE", "REGISTRATION_FAILED", "ACTIVATION_FAILED", "ACTIVE", "READY", "IN_USE", "DEREGISTERING", "DRAINING", "DEREGISTRATION_FAILED", "DEREGISTERED"
|
13631
|
+
# resp.nodes[0].sdi_source_mappings #=> Array
|
13632
|
+
# resp.nodes[0].sdi_source_mappings[0].card_number #=> Integer
|
13633
|
+
# resp.nodes[0].sdi_source_mappings[0].channel_number #=> Integer
|
13634
|
+
# resp.nodes[0].sdi_source_mappings[0].sdi_source #=> String
|
13444
13635
|
#
|
13445
13636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListNodes AWS API Documentation
|
13446
13637
|
#
|
@@ -13659,6 +13850,9 @@ module Aws::MediaLive
|
|
13659
13850
|
# available for encoding. BACKUP means the Node is a redundant Node and
|
13660
13851
|
# might get used if an ACTIVE Node fails.
|
13661
13852
|
#
|
13853
|
+
# @option params [Array<Types::SdiSourceMappingUpdateRequest>] :sdi_source_mappings
|
13854
|
+
# The mappings of a SDI capture card port to a logical SDI data stream
|
13855
|
+
#
|
13662
13856
|
# @return [Types::UpdateNodeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13663
13857
|
#
|
13664
13858
|
# * {Types::UpdateNodeResponse#arn #arn} => String
|
@@ -13671,6 +13865,7 @@ module Aws::MediaLive
|
|
13671
13865
|
# * {Types::UpdateNodeResponse#node_interface_mappings #node_interface_mappings} => Array<Types::NodeInterfaceMapping>
|
13672
13866
|
# * {Types::UpdateNodeResponse#role #role} => String
|
13673
13867
|
# * {Types::UpdateNodeResponse#state #state} => String
|
13868
|
+
# * {Types::UpdateNodeResponse#sdi_source_mappings #sdi_source_mappings} => Array<Types::SdiSourceMapping>
|
13674
13869
|
#
|
13675
13870
|
# @example Request syntax with placeholder values
|
13676
13871
|
#
|
@@ -13679,6 +13874,13 @@ module Aws::MediaLive
|
|
13679
13874
|
# name: "__string",
|
13680
13875
|
# node_id: "__string", # required
|
13681
13876
|
# role: "BACKUP", # accepts BACKUP, ACTIVE
|
13877
|
+
# sdi_source_mappings: [
|
13878
|
+
# {
|
13879
|
+
# card_number: 1,
|
13880
|
+
# channel_number: 1,
|
13881
|
+
# sdi_source: "__string",
|
13882
|
+
# },
|
13883
|
+
# ],
|
13682
13884
|
# })
|
13683
13885
|
#
|
13684
13886
|
# @example Response structure
|
@@ -13697,6 +13899,10 @@ module Aws::MediaLive
|
|
13697
13899
|
# resp.node_interface_mappings[0].physical_interface_name #=> String
|
13698
13900
|
# resp.role #=> String, one of "BACKUP", "ACTIVE"
|
13699
13901
|
# resp.state #=> String, one of "CREATED", "REGISTERING", "READY_TO_ACTIVATE", "REGISTRATION_FAILED", "ACTIVATION_FAILED", "ACTIVE", "READY", "IN_USE", "DEREGISTERING", "DRAINING", "DEREGISTRATION_FAILED", "DEREGISTERED"
|
13902
|
+
# resp.sdi_source_mappings #=> Array
|
13903
|
+
# resp.sdi_source_mappings[0].card_number #=> Integer
|
13904
|
+
# resp.sdi_source_mappings[0].channel_number #=> Integer
|
13905
|
+
# resp.sdi_source_mappings[0].sdi_source #=> String
|
13700
13906
|
#
|
13701
13907
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateNode AWS API Documentation
|
13702
13908
|
#
|
@@ -13732,6 +13938,7 @@ module Aws::MediaLive
|
|
13732
13938
|
# * {Types::UpdateNodeStateResponse#node_interface_mappings #node_interface_mappings} => Array<Types::NodeInterfaceMapping>
|
13733
13939
|
# * {Types::UpdateNodeStateResponse#role #role} => String
|
13734
13940
|
# * {Types::UpdateNodeStateResponse#state #state} => String
|
13941
|
+
# * {Types::UpdateNodeStateResponse#sdi_source_mappings #sdi_source_mappings} => Array<Types::SdiSourceMapping>
|
13735
13942
|
#
|
13736
13943
|
# @example Request syntax with placeholder values
|
13737
13944
|
#
|
@@ -13757,6 +13964,10 @@ module Aws::MediaLive
|
|
13757
13964
|
# resp.node_interface_mappings[0].physical_interface_name #=> String
|
13758
13965
|
# resp.role #=> String, one of "BACKUP", "ACTIVE"
|
13759
13966
|
# resp.state #=> String, one of "CREATED", "REGISTERING", "READY_TO_ACTIVATE", "REGISTRATION_FAILED", "ACTIVATION_FAILED", "ACTIVE", "READY", "IN_USE", "DEREGISTERING", "DRAINING", "DEREGISTRATION_FAILED", "DEREGISTERED"
|
13967
|
+
# resp.sdi_source_mappings #=> Array
|
13968
|
+
# resp.sdi_source_mappings[0].card_number #=> Integer
|
13969
|
+
# resp.sdi_source_mappings[0].channel_number #=> Integer
|
13970
|
+
# resp.sdi_source_mappings[0].sdi_source #=> String
|
13760
13971
|
#
|
13761
13972
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateNodeState AWS API Documentation
|
13762
13973
|
#
|
@@ -13789,6 +14000,234 @@ module Aws::MediaLive
|
|
13789
14000
|
req.send_request(options)
|
13790
14001
|
end
|
13791
14002
|
|
14003
|
+
# Create an SdiSource for each video source that uses the SDI protocol.
|
14004
|
+
# You will reference the SdiSource when you create an SDI input in
|
14005
|
+
# MediaLive. You will also reference it in an SdiSourceMapping, in order
|
14006
|
+
# to create a connection between the logical SdiSource and the physical
|
14007
|
+
# SDI card and port that the physical SDI source uses.
|
14008
|
+
#
|
14009
|
+
# @option params [String] :mode
|
14010
|
+
# Applies only if the type is QUAD. Specify the mode for handling the
|
14011
|
+
# quad-link signal: QUADRANT or INTERLEAVE.
|
14012
|
+
#
|
14013
|
+
# @option params [String] :name
|
14014
|
+
# Specify a name that is unique in the AWS account. We recommend you
|
14015
|
+
# assign a name that describes the source, for example curling-cameraA.
|
14016
|
+
# Names are case-sensitive.
|
14017
|
+
#
|
14018
|
+
# @option params [String] :request_id
|
14019
|
+
# An ID that you assign to a create request. This ID ensures idempotency when creating resources.**A suitable default value is auto-generated.** You should normally
|
14020
|
+
# not need to pass this option.**
|
14021
|
+
#
|
14022
|
+
# @option params [Hash<String,String>] :tags
|
14023
|
+
# A collection of key-value pairs.
|
14024
|
+
#
|
14025
|
+
# @option params [String] :type
|
14026
|
+
# Specify the type of the SDI source: SINGLE: The source is a
|
14027
|
+
# single-link source. QUAD: The source is one part of a quad-link
|
14028
|
+
# source.
|
14029
|
+
#
|
14030
|
+
# @return [Types::CreateSdiSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14031
|
+
#
|
14032
|
+
# * {Types::CreateSdiSourceResponse#sdi_source #sdi_source} => Types::SdiSource
|
14033
|
+
#
|
14034
|
+
# @example Request syntax with placeholder values
|
14035
|
+
#
|
14036
|
+
# resp = client.create_sdi_source({
|
14037
|
+
# mode: "QUADRANT", # accepts QUADRANT, INTERLEAVE
|
14038
|
+
# name: "__string",
|
14039
|
+
# request_id: "__string",
|
14040
|
+
# tags: {
|
14041
|
+
# "__string" => "__string",
|
14042
|
+
# },
|
14043
|
+
# type: "SINGLE", # accepts SINGLE, QUAD
|
14044
|
+
# })
|
14045
|
+
#
|
14046
|
+
# @example Response structure
|
14047
|
+
#
|
14048
|
+
# resp.sdi_source.arn #=> String
|
14049
|
+
# resp.sdi_source.id #=> String
|
14050
|
+
# resp.sdi_source.inputs #=> Array
|
14051
|
+
# resp.sdi_source.inputs[0] #=> String
|
14052
|
+
# resp.sdi_source.mode #=> String, one of "QUADRANT", "INTERLEAVE"
|
14053
|
+
# resp.sdi_source.name #=> String
|
14054
|
+
# resp.sdi_source.state #=> String, one of "IDLE", "IN_USE", "DELETED"
|
14055
|
+
# resp.sdi_source.type #=> String, one of "SINGLE", "QUAD"
|
14056
|
+
#
|
14057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateSdiSource AWS API Documentation
|
14058
|
+
#
|
14059
|
+
# @overload create_sdi_source(params = {})
|
14060
|
+
# @param [Hash] params ({})
|
14061
|
+
def create_sdi_source(params = {}, options = {})
|
14062
|
+
req = build_request(:create_sdi_source, params)
|
14063
|
+
req.send_request(options)
|
14064
|
+
end
|
14065
|
+
|
14066
|
+
# Delete an SdiSource. The SdiSource must not be part of any
|
14067
|
+
# SidSourceMapping and must not be attached to any input.
|
14068
|
+
#
|
14069
|
+
# @option params [required, String] :sdi_source_id
|
14070
|
+
#
|
14071
|
+
# @return [Types::DeleteSdiSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14072
|
+
#
|
14073
|
+
# * {Types::DeleteSdiSourceResponse#sdi_source #sdi_source} => Types::SdiSource
|
14074
|
+
#
|
14075
|
+
# @example Request syntax with placeholder values
|
14076
|
+
#
|
14077
|
+
# resp = client.delete_sdi_source({
|
14078
|
+
# sdi_source_id: "__string", # required
|
14079
|
+
# })
|
14080
|
+
#
|
14081
|
+
# @example Response structure
|
14082
|
+
#
|
14083
|
+
# resp.sdi_source.arn #=> String
|
14084
|
+
# resp.sdi_source.id #=> String
|
14085
|
+
# resp.sdi_source.inputs #=> Array
|
14086
|
+
# resp.sdi_source.inputs[0] #=> String
|
14087
|
+
# resp.sdi_source.mode #=> String, one of "QUADRANT", "INTERLEAVE"
|
14088
|
+
# resp.sdi_source.name #=> String
|
14089
|
+
# resp.sdi_source.state #=> String, one of "IDLE", "IN_USE", "DELETED"
|
14090
|
+
# resp.sdi_source.type #=> String, one of "SINGLE", "QUAD"
|
14091
|
+
#
|
14092
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteSdiSource AWS API Documentation
|
14093
|
+
#
|
14094
|
+
# @overload delete_sdi_source(params = {})
|
14095
|
+
# @param [Hash] params ({})
|
14096
|
+
def delete_sdi_source(params = {}, options = {})
|
14097
|
+
req = build_request(:delete_sdi_source, params)
|
14098
|
+
req.send_request(options)
|
14099
|
+
end
|
14100
|
+
|
14101
|
+
# Gets details about a SdiSource.
|
14102
|
+
#
|
14103
|
+
# @option params [required, String] :sdi_source_id
|
14104
|
+
#
|
14105
|
+
# @return [Types::DescribeSdiSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14106
|
+
#
|
14107
|
+
# * {Types::DescribeSdiSourceResponse#sdi_source #sdi_source} => Types::SdiSource
|
14108
|
+
#
|
14109
|
+
# @example Request syntax with placeholder values
|
14110
|
+
#
|
14111
|
+
# resp = client.describe_sdi_source({
|
14112
|
+
# sdi_source_id: "__string", # required
|
14113
|
+
# })
|
14114
|
+
#
|
14115
|
+
# @example Response structure
|
14116
|
+
#
|
14117
|
+
# resp.sdi_source.arn #=> String
|
14118
|
+
# resp.sdi_source.id #=> String
|
14119
|
+
# resp.sdi_source.inputs #=> Array
|
14120
|
+
# resp.sdi_source.inputs[0] #=> String
|
14121
|
+
# resp.sdi_source.mode #=> String, one of "QUADRANT", "INTERLEAVE"
|
14122
|
+
# resp.sdi_source.name #=> String
|
14123
|
+
# resp.sdi_source.state #=> String, one of "IDLE", "IN_USE", "DELETED"
|
14124
|
+
# resp.sdi_source.type #=> String, one of "SINGLE", "QUAD"
|
14125
|
+
#
|
14126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeSdiSource AWS API Documentation
|
14127
|
+
#
|
14128
|
+
# @overload describe_sdi_source(params = {})
|
14129
|
+
# @param [Hash] params ({})
|
14130
|
+
def describe_sdi_source(params = {}, options = {})
|
14131
|
+
req = build_request(:describe_sdi_source, params)
|
14132
|
+
req.send_request(options)
|
14133
|
+
end
|
14134
|
+
|
14135
|
+
# List all the SdiSources in the AWS account.
|
14136
|
+
#
|
14137
|
+
# @option params [Integer] :max_results
|
14138
|
+
#
|
14139
|
+
# @option params [String] :next_token
|
14140
|
+
#
|
14141
|
+
# @return [Types::ListSdiSourcesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14142
|
+
#
|
14143
|
+
# * {Types::ListSdiSourcesResponse#next_token #next_token} => String
|
14144
|
+
# * {Types::ListSdiSourcesResponse#sdi_sources #sdi_sources} => Array<Types::SdiSourceSummary>
|
14145
|
+
#
|
14146
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
14147
|
+
#
|
14148
|
+
# @example Request syntax with placeholder values
|
14149
|
+
#
|
14150
|
+
# resp = client.list_sdi_sources({
|
14151
|
+
# max_results: 1,
|
14152
|
+
# next_token: "__string",
|
14153
|
+
# })
|
14154
|
+
#
|
14155
|
+
# @example Response structure
|
14156
|
+
#
|
14157
|
+
# resp.next_token #=> String
|
14158
|
+
# resp.sdi_sources #=> Array
|
14159
|
+
# resp.sdi_sources[0].arn #=> String
|
14160
|
+
# resp.sdi_sources[0].id #=> String
|
14161
|
+
# resp.sdi_sources[0].inputs #=> Array
|
14162
|
+
# resp.sdi_sources[0].inputs[0] #=> String
|
14163
|
+
# resp.sdi_sources[0].mode #=> String, one of "QUADRANT", "INTERLEAVE"
|
14164
|
+
# resp.sdi_sources[0].name #=> String
|
14165
|
+
# resp.sdi_sources[0].state #=> String, one of "IDLE", "IN_USE", "DELETED"
|
14166
|
+
# resp.sdi_sources[0].type #=> String, one of "SINGLE", "QUAD"
|
14167
|
+
#
|
14168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListSdiSources AWS API Documentation
|
14169
|
+
#
|
14170
|
+
# @overload list_sdi_sources(params = {})
|
14171
|
+
# @param [Hash] params ({})
|
14172
|
+
def list_sdi_sources(params = {}, options = {})
|
14173
|
+
req = build_request(:list_sdi_sources, params)
|
14174
|
+
req.send_request(options)
|
14175
|
+
end
|
14176
|
+
|
14177
|
+
# Change some of the settings in an SdiSource.
|
14178
|
+
#
|
14179
|
+
# @option params [String] :mode
|
14180
|
+
# Include this parameter only if you want to change the name of the
|
14181
|
+
# SdiSource. Specify a name that is unique in the AWS account. We
|
14182
|
+
# recommend you assign a name that describes the source, for example
|
14183
|
+
# curling-cameraA. Names are case-sensitive.
|
14184
|
+
#
|
14185
|
+
# @option params [String] :name
|
14186
|
+
# Include this parameter only if you want to change the name of the
|
14187
|
+
# SdiSource. Specify a name that is unique in the AWS account. We
|
14188
|
+
# recommend you assign a name that describes the source, for example
|
14189
|
+
# curling-cameraA. Names are case-sensitive.
|
14190
|
+
#
|
14191
|
+
# @option params [required, String] :sdi_source_id
|
14192
|
+
#
|
14193
|
+
# @option params [String] :type
|
14194
|
+
# Include this parameter only if you want to change the mode. Specify
|
14195
|
+
# the type of the SDI source: SINGLE: The source is a single-link
|
14196
|
+
# source. QUAD: The source is one part of a quad-link source.
|
14197
|
+
#
|
14198
|
+
# @return [Types::UpdateSdiSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14199
|
+
#
|
14200
|
+
# * {Types::UpdateSdiSourceResponse#sdi_source #sdi_source} => Types::SdiSource
|
14201
|
+
#
|
14202
|
+
# @example Request syntax with placeholder values
|
14203
|
+
#
|
14204
|
+
# resp = client.update_sdi_source({
|
14205
|
+
# mode: "QUADRANT", # accepts QUADRANT, INTERLEAVE
|
14206
|
+
# name: "__string",
|
14207
|
+
# sdi_source_id: "__string", # required
|
14208
|
+
# type: "SINGLE", # accepts SINGLE, QUAD
|
14209
|
+
# })
|
14210
|
+
#
|
14211
|
+
# @example Response structure
|
14212
|
+
#
|
14213
|
+
# resp.sdi_source.arn #=> String
|
14214
|
+
# resp.sdi_source.id #=> String
|
14215
|
+
# resp.sdi_source.inputs #=> Array
|
14216
|
+
# resp.sdi_source.inputs[0] #=> String
|
14217
|
+
# resp.sdi_source.mode #=> String, one of "QUADRANT", "INTERLEAVE"
|
14218
|
+
# resp.sdi_source.name #=> String
|
14219
|
+
# resp.sdi_source.state #=> String, one of "IDLE", "IN_USE", "DELETED"
|
14220
|
+
# resp.sdi_source.type #=> String, one of "SINGLE", "QUAD"
|
14221
|
+
#
|
14222
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateSdiSource AWS API Documentation
|
14223
|
+
#
|
14224
|
+
# @overload update_sdi_source(params = {})
|
14225
|
+
# @param [Hash] params ({})
|
14226
|
+
def update_sdi_source(params = {}, options = {})
|
14227
|
+
req = build_request(:update_sdi_source, params)
|
14228
|
+
req.send_request(options)
|
14229
|
+
end
|
14230
|
+
|
13792
14231
|
# @!endgroup
|
13793
14232
|
|
13794
14233
|
# @param params ({})
|
@@ -13807,7 +14246,7 @@ module Aws::MediaLive
|
|
13807
14246
|
tracer: tracer
|
13808
14247
|
)
|
13809
14248
|
context[:gem_name] = 'aws-sdk-medialive'
|
13810
|
-
context[:gem_version] = '1.
|
14249
|
+
context[:gem_version] = '1.151.0'
|
13811
14250
|
Seahorse::Client::Request.new(handlers, context)
|
13812
14251
|
end
|
13813
14252
|
|