aws-sdk-medialive 1.148.0 → 1.150.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 +393 -7
- data/lib/aws-sdk-medialive/client_api.rb +222 -0
- data/lib/aws-sdk-medialive/types.rb +547 -14
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +128 -5
- data/sig/types.rbs +142 -4
- 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: a185077b63f74de8187acf5d821b0e2b9775c2ae8f9012266332f831c9d3f276
|
4
|
+
data.tar.gz: 894e8f53d029a118322b7f73ad75b55de35e1b688e0787f57e0ec7f8c747ca20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb0f08f0a115729f42399ff96254b70b244dde4b3e1102f745dc5e15de6709d84c50a646eca07b35f656f10ca79f90726ce21f09e8993f9ad8db7e3e094bedc3
|
7
|
+
data.tar.gz: b3abc3eb4db3577a285d1968590e3316237ef5884cceb4412a97f8c2c322ba15e3d5dd839682fe4cf43e4db932373929be94c4c127161ad93374fcd457f8e435
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.150.0 (2025-04-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Elemental MediaLive now supports SDI inputs to MediaLive Anywhere Channels in workflows that use AWS SDKs.
|
8
|
+
|
9
|
+
1.149.0 (2025-04-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
4
14
|
1.148.0 (2025-03-11)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.150.0
|
@@ -1929,6 +1929,12 @@ 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
|
+
#
|
1935
|
+
# @option params [Array<String>] :sdi_sources
|
1936
|
+
# SDI Sources for this Input.
|
1937
|
+
#
|
1932
1938
|
# @return [Types::CreateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1933
1939
|
#
|
1934
1940
|
# * {Types::CreateInputResponse#input #input} => Types::Input
|
@@ -1973,7 +1979,7 @@ module Aws::MediaLive
|
|
1973
1979
|
# tags: {
|
1974
1980
|
# "__string" => "__string",
|
1975
1981
|
# },
|
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
|
1982
|
+
# 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
1983
|
# vpc: {
|
1978
1984
|
# security_group_ids: ["__string"],
|
1979
1985
|
# subnet_ids: ["__string"], # required
|
@@ -2001,6 +2007,31 @@ module Aws::MediaLive
|
|
2001
2007
|
# },
|
2002
2008
|
# ],
|
2003
2009
|
# },
|
2010
|
+
# smpte_2110_receiver_group_settings: {
|
2011
|
+
# smpte_2110_receiver_groups: [
|
2012
|
+
# {
|
2013
|
+
# sdp_settings: {
|
2014
|
+
# ancillary_sdps: [
|
2015
|
+
# {
|
2016
|
+
# media_index: 1,
|
2017
|
+
# sdp_url: "__string",
|
2018
|
+
# },
|
2019
|
+
# ],
|
2020
|
+
# audio_sdps: [
|
2021
|
+
# {
|
2022
|
+
# media_index: 1,
|
2023
|
+
# sdp_url: "__string",
|
2024
|
+
# },
|
2025
|
+
# ],
|
2026
|
+
# video_sdp: {
|
2027
|
+
# media_index: 1,
|
2028
|
+
# sdp_url: "__string",
|
2029
|
+
# },
|
2030
|
+
# },
|
2031
|
+
# },
|
2032
|
+
# ],
|
2033
|
+
# },
|
2034
|
+
# sdi_sources: ["__string"],
|
2004
2035
|
# })
|
2005
2036
|
#
|
2006
2037
|
# @example Response structure
|
@@ -2038,7 +2069,7 @@ module Aws::MediaLive
|
|
2038
2069
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2039
2070
|
# resp.input.tags #=> Hash
|
2040
2071
|
# 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"
|
2072
|
+
# 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
2073
|
# resp.input.srt_settings.srt_caller_sources #=> Array
|
2043
2074
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
2044
2075
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -2050,6 +2081,17 @@ module Aws::MediaLive
|
|
2050
2081
|
# resp.input.multicast_settings.sources #=> Array
|
2051
2082
|
# resp.input.multicast_settings.sources[0].source_ip #=> String
|
2052
2083
|
# resp.input.multicast_settings.sources[0].url #=> String
|
2084
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
2085
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
2086
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
2087
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
2088
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
2089
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
2090
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
2091
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
2092
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
2093
|
+
# resp.input.sdi_sources #=> Array
|
2094
|
+
# resp.input.sdi_sources[0] #=> String
|
2053
2095
|
#
|
2054
2096
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
2055
2097
|
#
|
@@ -2315,7 +2357,7 @@ module Aws::MediaLive
|
|
2315
2357
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2316
2358
|
# resp.input.tags #=> Hash
|
2317
2359
|
# 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"
|
2360
|
+
# 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
2361
|
# resp.input.srt_settings.srt_caller_sources #=> Array
|
2320
2362
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
2321
2363
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -2327,6 +2369,17 @@ module Aws::MediaLive
|
|
2327
2369
|
# resp.input.multicast_settings.sources #=> Array
|
2328
2370
|
# resp.input.multicast_settings.sources[0].source_ip #=> String
|
2329
2371
|
# resp.input.multicast_settings.sources[0].url #=> String
|
2372
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
2373
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
2374
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
2375
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
2376
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
2377
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
2378
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
2379
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
2380
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
2381
|
+
# resp.input.sdi_sources #=> Array
|
2382
|
+
# resp.input.sdi_sources[0] #=> String
|
2330
2383
|
#
|
2331
2384
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreatePartnerInput AWS API Documentation
|
2332
2385
|
#
|
@@ -4389,6 +4442,8 @@ module Aws::MediaLive
|
|
4389
4442
|
# * {Types::DescribeInputResponse#srt_settings #srt_settings} => Types::SrtSettings
|
4390
4443
|
# * {Types::DescribeInputResponse#input_network_location #input_network_location} => String
|
4391
4444
|
# * {Types::DescribeInputResponse#multicast_settings #multicast_settings} => Types::MulticastSettings
|
4445
|
+
# * {Types::DescribeInputResponse#smpte_2110_receiver_group_settings #smpte_2110_receiver_group_settings} => Types::Smpte2110ReceiverGroupSettings
|
4446
|
+
# * {Types::DescribeInputResponse#sdi_sources #sdi_sources} => Array<String>
|
4392
4447
|
#
|
4393
4448
|
# @example Request syntax with placeholder values
|
4394
4449
|
#
|
@@ -4431,7 +4486,7 @@ module Aws::MediaLive
|
|
4431
4486
|
# resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
4432
4487
|
# resp.tags #=> Hash
|
4433
4488
|
# 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"
|
4489
|
+
# 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
4490
|
# resp.srt_settings.srt_caller_sources #=> Array
|
4436
4491
|
# resp.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
4437
4492
|
# resp.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -4443,6 +4498,17 @@ module Aws::MediaLive
|
|
4443
4498
|
# resp.multicast_settings.sources #=> Array
|
4444
4499
|
# resp.multicast_settings.sources[0].source_ip #=> String
|
4445
4500
|
# resp.multicast_settings.sources[0].url #=> String
|
4501
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
4502
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
4503
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
4504
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
4505
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
4506
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
4507
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
4508
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
4509
|
+
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
4510
|
+
# resp.sdi_sources #=> Array
|
4511
|
+
# resp.sdi_sources[0] #=> String
|
4446
4512
|
#
|
4447
4513
|
#
|
4448
4514
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -5410,7 +5476,7 @@ module Aws::MediaLive
|
|
5410
5476
|
# resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
5411
5477
|
# resp.inputs[0].tags #=> Hash
|
5412
5478
|
# 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"
|
5479
|
+
# 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
5480
|
# resp.inputs[0].srt_settings.srt_caller_sources #=> Array
|
5415
5481
|
# resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
5416
5482
|
# resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -5422,6 +5488,17 @@ module Aws::MediaLive
|
|
5422
5488
|
# resp.inputs[0].multicast_settings.sources #=> Array
|
5423
5489
|
# resp.inputs[0].multicast_settings.sources[0].source_ip #=> String
|
5424
5490
|
# resp.inputs[0].multicast_settings.sources[0].url #=> String
|
5491
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
5492
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
5493
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
5494
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
5495
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
5496
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
5497
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
5498
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
5499
|
+
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
5500
|
+
# resp.inputs[0].sdi_sources #=> Array
|
5501
|
+
# resp.inputs[0].sdi_sources[0] #=> String
|
5425
5502
|
# resp.next_token #=> String
|
5426
5503
|
#
|
5427
5504
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
|
@@ -9518,6 +9595,12 @@ module Aws::MediaLive
|
|
9518
9595
|
# Settings for a Multicast input. Contains a list of multicast Urls and
|
9519
9596
|
# optional source ip addresses.
|
9520
9597
|
#
|
9598
|
+
# @option params [Types::Smpte2110ReceiverGroupSettings] :smpte_2110_receiver_group_settings
|
9599
|
+
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
9600
|
+
#
|
9601
|
+
# @option params [Array<String>] :sdi_sources
|
9602
|
+
# SDI Sources for this Input.
|
9603
|
+
#
|
9521
9604
|
# @return [Types::UpdateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9522
9605
|
#
|
9523
9606
|
# * {Types::UpdateInputResponse#input #input} => Types::Input
|
@@ -9581,6 +9664,31 @@ module Aws::MediaLive
|
|
9581
9664
|
# },
|
9582
9665
|
# ],
|
9583
9666
|
# },
|
9667
|
+
# smpte_2110_receiver_group_settings: {
|
9668
|
+
# smpte_2110_receiver_groups: [
|
9669
|
+
# {
|
9670
|
+
# sdp_settings: {
|
9671
|
+
# ancillary_sdps: [
|
9672
|
+
# {
|
9673
|
+
# media_index: 1,
|
9674
|
+
# sdp_url: "__string",
|
9675
|
+
# },
|
9676
|
+
# ],
|
9677
|
+
# audio_sdps: [
|
9678
|
+
# {
|
9679
|
+
# media_index: 1,
|
9680
|
+
# sdp_url: "__string",
|
9681
|
+
# },
|
9682
|
+
# ],
|
9683
|
+
# video_sdp: {
|
9684
|
+
# media_index: 1,
|
9685
|
+
# sdp_url: "__string",
|
9686
|
+
# },
|
9687
|
+
# },
|
9688
|
+
# },
|
9689
|
+
# ],
|
9690
|
+
# },
|
9691
|
+
# sdi_sources: ["__string"],
|
9584
9692
|
# })
|
9585
9693
|
#
|
9586
9694
|
# @example Response structure
|
@@ -9618,7 +9726,7 @@ module Aws::MediaLive
|
|
9618
9726
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
9619
9727
|
# resp.input.tags #=> Hash
|
9620
9728
|
# 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"
|
9729
|
+
# 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
9730
|
# resp.input.srt_settings.srt_caller_sources #=> Array
|
9623
9731
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
9624
9732
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
@@ -9630,6 +9738,17 @@ module Aws::MediaLive
|
|
9630
9738
|
# resp.input.multicast_settings.sources #=> Array
|
9631
9739
|
# resp.input.multicast_settings.sources[0].source_ip #=> String
|
9632
9740
|
# resp.input.multicast_settings.sources[0].url #=> String
|
9741
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups #=> Array
|
9742
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps #=> Array
|
9743
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].media_index #=> Integer
|
9744
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.ancillary_sdps[0].sdp_url #=> String
|
9745
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps #=> Array
|
9746
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].media_index #=> Integer
|
9747
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.audio_sdps[0].sdp_url #=> String
|
9748
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.media_index #=> Integer
|
9749
|
+
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
9750
|
+
# resp.input.sdi_sources #=> Array
|
9751
|
+
# resp.input.sdi_sources[0] #=> String
|
9633
9752
|
#
|
9634
9753
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
9635
9754
|
#
|
@@ -12758,6 +12877,7 @@ module Aws::MediaLive
|
|
12758
12877
|
# * {Types::CreateNodeResponse#node_interface_mappings #node_interface_mappings} => Array<Types::NodeInterfaceMapping>
|
12759
12878
|
# * {Types::CreateNodeResponse#role #role} => String
|
12760
12879
|
# * {Types::CreateNodeResponse#state #state} => String
|
12880
|
+
# * {Types::CreateNodeResponse#sdi_source_mappings #sdi_source_mappings} => Array<Types::SdiSourceMapping>
|
12761
12881
|
#
|
12762
12882
|
# @example Request syntax with placeholder values
|
12763
12883
|
#
|
@@ -12794,6 +12914,10 @@ module Aws::MediaLive
|
|
12794
12914
|
# resp.node_interface_mappings[0].physical_interface_name #=> String
|
12795
12915
|
# resp.role #=> String, one of "BACKUP", "ACTIVE"
|
12796
12916
|
# resp.state #=> String, one of "CREATED", "REGISTERING", "READY_TO_ACTIVATE", "REGISTRATION_FAILED", "ACTIVATION_FAILED", "ACTIVE", "READY", "IN_USE", "DEREGISTERING", "DRAINING", "DEREGISTRATION_FAILED", "DEREGISTERED"
|
12917
|
+
# resp.sdi_source_mappings #=> Array
|
12918
|
+
# resp.sdi_source_mappings[0].card_number #=> Integer
|
12919
|
+
# resp.sdi_source_mappings[0].channel_number #=> Integer
|
12920
|
+
# resp.sdi_source_mappings[0].sdi_source #=> String
|
12797
12921
|
#
|
12798
12922
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateNode AWS API Documentation
|
12799
12923
|
#
|
@@ -13025,6 +13149,7 @@ module Aws::MediaLive
|
|
13025
13149
|
# * {Types::DeleteNodeResponse#node_interface_mappings #node_interface_mappings} => Array<Types::NodeInterfaceMapping>
|
13026
13150
|
# * {Types::DeleteNodeResponse#role #role} => String
|
13027
13151
|
# * {Types::DeleteNodeResponse#state #state} => String
|
13152
|
+
# * {Types::DeleteNodeResponse#sdi_source_mappings #sdi_source_mappings} => Array<Types::SdiSourceMapping>
|
13028
13153
|
#
|
13029
13154
|
# @example Request syntax with placeholder values
|
13030
13155
|
#
|
@@ -13049,6 +13174,10 @@ module Aws::MediaLive
|
|
13049
13174
|
# resp.node_interface_mappings[0].physical_interface_name #=> String
|
13050
13175
|
# resp.role #=> String, one of "BACKUP", "ACTIVE"
|
13051
13176
|
# resp.state #=> String, one of "CREATED", "REGISTERING", "READY_TO_ACTIVATE", "REGISTRATION_FAILED", "ACTIVATION_FAILED", "ACTIVE", "READY", "IN_USE", "DEREGISTERING", "DRAINING", "DEREGISTRATION_FAILED", "DEREGISTERED"
|
13177
|
+
# resp.sdi_source_mappings #=> Array
|
13178
|
+
# resp.sdi_source_mappings[0].card_number #=> Integer
|
13179
|
+
# resp.sdi_source_mappings[0].channel_number #=> Integer
|
13180
|
+
# resp.sdi_source_mappings[0].sdi_source #=> String
|
13052
13181
|
#
|
13053
13182
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteNode AWS API Documentation
|
13054
13183
|
#
|
@@ -13222,6 +13351,7 @@ module Aws::MediaLive
|
|
13222
13351
|
# * {Types::DescribeNodeResponse#node_interface_mappings #node_interface_mappings} => Array<Types::NodeInterfaceMapping>
|
13223
13352
|
# * {Types::DescribeNodeResponse#role #role} => String
|
13224
13353
|
# * {Types::DescribeNodeResponse#state #state} => String
|
13354
|
+
# * {Types::DescribeNodeResponse#sdi_source_mappings #sdi_source_mappings} => Array<Types::SdiSourceMapping>
|
13225
13355
|
#
|
13226
13356
|
# @example Request syntax with placeholder values
|
13227
13357
|
#
|
@@ -13246,6 +13376,10 @@ module Aws::MediaLive
|
|
13246
13376
|
# resp.node_interface_mappings[0].physical_interface_name #=> String
|
13247
13377
|
# resp.role #=> String, one of "BACKUP", "ACTIVE"
|
13248
13378
|
# resp.state #=> String, one of "CREATED", "REGISTERING", "READY_TO_ACTIVATE", "REGISTRATION_FAILED", "ACTIVATION_FAILED", "ACTIVE", "READY", "IN_USE", "DEREGISTERING", "DRAINING", "DEREGISTRATION_FAILED", "DEREGISTERED"
|
13379
|
+
# resp.sdi_source_mappings #=> Array
|
13380
|
+
# resp.sdi_source_mappings[0].card_number #=> Integer
|
13381
|
+
# resp.sdi_source_mappings[0].channel_number #=> Integer
|
13382
|
+
# resp.sdi_source_mappings[0].sdi_source #=> String
|
13249
13383
|
#
|
13250
13384
|
#
|
13251
13385
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -13441,6 +13575,10 @@ module Aws::MediaLive
|
|
13441
13575
|
# resp.nodes[0].node_interface_mappings[0].physical_interface_name #=> String
|
13442
13576
|
# resp.nodes[0].role #=> String, one of "BACKUP", "ACTIVE"
|
13443
13577
|
# 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"
|
13578
|
+
# resp.nodes[0].sdi_source_mappings #=> Array
|
13579
|
+
# resp.nodes[0].sdi_source_mappings[0].card_number #=> Integer
|
13580
|
+
# resp.nodes[0].sdi_source_mappings[0].channel_number #=> Integer
|
13581
|
+
# resp.nodes[0].sdi_source_mappings[0].sdi_source #=> String
|
13444
13582
|
#
|
13445
13583
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListNodes AWS API Documentation
|
13446
13584
|
#
|
@@ -13659,6 +13797,9 @@ module Aws::MediaLive
|
|
13659
13797
|
# available for encoding. BACKUP means the Node is a redundant Node and
|
13660
13798
|
# might get used if an ACTIVE Node fails.
|
13661
13799
|
#
|
13800
|
+
# @option params [Array<Types::SdiSourceMappingUpdateRequest>] :sdi_source_mappings
|
13801
|
+
# The mappings of a SDI capture card port to a logical SDI data stream
|
13802
|
+
#
|
13662
13803
|
# @return [Types::UpdateNodeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13663
13804
|
#
|
13664
13805
|
# * {Types::UpdateNodeResponse#arn #arn} => String
|
@@ -13671,6 +13812,7 @@ module Aws::MediaLive
|
|
13671
13812
|
# * {Types::UpdateNodeResponse#node_interface_mappings #node_interface_mappings} => Array<Types::NodeInterfaceMapping>
|
13672
13813
|
# * {Types::UpdateNodeResponse#role #role} => String
|
13673
13814
|
# * {Types::UpdateNodeResponse#state #state} => String
|
13815
|
+
# * {Types::UpdateNodeResponse#sdi_source_mappings #sdi_source_mappings} => Array<Types::SdiSourceMapping>
|
13674
13816
|
#
|
13675
13817
|
# @example Request syntax with placeholder values
|
13676
13818
|
#
|
@@ -13679,6 +13821,13 @@ module Aws::MediaLive
|
|
13679
13821
|
# name: "__string",
|
13680
13822
|
# node_id: "__string", # required
|
13681
13823
|
# role: "BACKUP", # accepts BACKUP, ACTIVE
|
13824
|
+
# sdi_source_mappings: [
|
13825
|
+
# {
|
13826
|
+
# card_number: 1,
|
13827
|
+
# channel_number: 1,
|
13828
|
+
# sdi_source: "__string",
|
13829
|
+
# },
|
13830
|
+
# ],
|
13682
13831
|
# })
|
13683
13832
|
#
|
13684
13833
|
# @example Response structure
|
@@ -13697,6 +13846,10 @@ module Aws::MediaLive
|
|
13697
13846
|
# resp.node_interface_mappings[0].physical_interface_name #=> String
|
13698
13847
|
# resp.role #=> String, one of "BACKUP", "ACTIVE"
|
13699
13848
|
# resp.state #=> String, one of "CREATED", "REGISTERING", "READY_TO_ACTIVATE", "REGISTRATION_FAILED", "ACTIVATION_FAILED", "ACTIVE", "READY", "IN_USE", "DEREGISTERING", "DRAINING", "DEREGISTRATION_FAILED", "DEREGISTERED"
|
13849
|
+
# resp.sdi_source_mappings #=> Array
|
13850
|
+
# resp.sdi_source_mappings[0].card_number #=> Integer
|
13851
|
+
# resp.sdi_source_mappings[0].channel_number #=> Integer
|
13852
|
+
# resp.sdi_source_mappings[0].sdi_source #=> String
|
13700
13853
|
#
|
13701
13854
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateNode AWS API Documentation
|
13702
13855
|
#
|
@@ -13732,6 +13885,7 @@ module Aws::MediaLive
|
|
13732
13885
|
# * {Types::UpdateNodeStateResponse#node_interface_mappings #node_interface_mappings} => Array<Types::NodeInterfaceMapping>
|
13733
13886
|
# * {Types::UpdateNodeStateResponse#role #role} => String
|
13734
13887
|
# * {Types::UpdateNodeStateResponse#state #state} => String
|
13888
|
+
# * {Types::UpdateNodeStateResponse#sdi_source_mappings #sdi_source_mappings} => Array<Types::SdiSourceMapping>
|
13735
13889
|
#
|
13736
13890
|
# @example Request syntax with placeholder values
|
13737
13891
|
#
|
@@ -13757,6 +13911,10 @@ module Aws::MediaLive
|
|
13757
13911
|
# resp.node_interface_mappings[0].physical_interface_name #=> String
|
13758
13912
|
# resp.role #=> String, one of "BACKUP", "ACTIVE"
|
13759
13913
|
# resp.state #=> String, one of "CREATED", "REGISTERING", "READY_TO_ACTIVATE", "REGISTRATION_FAILED", "ACTIVATION_FAILED", "ACTIVE", "READY", "IN_USE", "DEREGISTERING", "DRAINING", "DEREGISTRATION_FAILED", "DEREGISTERED"
|
13914
|
+
# resp.sdi_source_mappings #=> Array
|
13915
|
+
# resp.sdi_source_mappings[0].card_number #=> Integer
|
13916
|
+
# resp.sdi_source_mappings[0].channel_number #=> Integer
|
13917
|
+
# resp.sdi_source_mappings[0].sdi_source #=> String
|
13760
13918
|
#
|
13761
13919
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateNodeState AWS API Documentation
|
13762
13920
|
#
|
@@ -13789,6 +13947,234 @@ module Aws::MediaLive
|
|
13789
13947
|
req.send_request(options)
|
13790
13948
|
end
|
13791
13949
|
|
13950
|
+
# Create an SdiSource for each video source that uses the SDI protocol.
|
13951
|
+
# You will reference the SdiSource when you create an SDI input in
|
13952
|
+
# MediaLive. You will also reference it in an SdiSourceMapping, in order
|
13953
|
+
# to create a connection between the logical SdiSource and the physical
|
13954
|
+
# SDI card and port that the physical SDI source uses.
|
13955
|
+
#
|
13956
|
+
# @option params [String] :mode
|
13957
|
+
# Applies only if the type is QUAD. Specify the mode for handling the
|
13958
|
+
# quad-link signal: QUADRANT or INTERLEAVE.
|
13959
|
+
#
|
13960
|
+
# @option params [String] :name
|
13961
|
+
# Specify a name that is unique in the AWS account. We recommend you
|
13962
|
+
# assign a name that describes the source, for example curling-cameraA.
|
13963
|
+
# Names are case-sensitive.
|
13964
|
+
#
|
13965
|
+
# @option params [String] :request_id
|
13966
|
+
# 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
|
13967
|
+
# not need to pass this option.**
|
13968
|
+
#
|
13969
|
+
# @option params [Hash<String,String>] :tags
|
13970
|
+
# A collection of key-value pairs.
|
13971
|
+
#
|
13972
|
+
# @option params [String] :type
|
13973
|
+
# Specify the type of the SDI source: SINGLE: The source is a
|
13974
|
+
# single-link source. QUAD: The source is one part of a quad-link
|
13975
|
+
# source.
|
13976
|
+
#
|
13977
|
+
# @return [Types::CreateSdiSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13978
|
+
#
|
13979
|
+
# * {Types::CreateSdiSourceResponse#sdi_source #sdi_source} => Types::SdiSource
|
13980
|
+
#
|
13981
|
+
# @example Request syntax with placeholder values
|
13982
|
+
#
|
13983
|
+
# resp = client.create_sdi_source({
|
13984
|
+
# mode: "QUADRANT", # accepts QUADRANT, INTERLEAVE
|
13985
|
+
# name: "__string",
|
13986
|
+
# request_id: "__string",
|
13987
|
+
# tags: {
|
13988
|
+
# "__string" => "__string",
|
13989
|
+
# },
|
13990
|
+
# type: "SINGLE", # accepts SINGLE, QUAD
|
13991
|
+
# })
|
13992
|
+
#
|
13993
|
+
# @example Response structure
|
13994
|
+
#
|
13995
|
+
# resp.sdi_source.arn #=> String
|
13996
|
+
# resp.sdi_source.id #=> String
|
13997
|
+
# resp.sdi_source.inputs #=> Array
|
13998
|
+
# resp.sdi_source.inputs[0] #=> String
|
13999
|
+
# resp.sdi_source.mode #=> String, one of "QUADRANT", "INTERLEAVE"
|
14000
|
+
# resp.sdi_source.name #=> String
|
14001
|
+
# resp.sdi_source.state #=> String, one of "IDLE", "IN_USE", "DELETED"
|
14002
|
+
# resp.sdi_source.type #=> String, one of "SINGLE", "QUAD"
|
14003
|
+
#
|
14004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateSdiSource AWS API Documentation
|
14005
|
+
#
|
14006
|
+
# @overload create_sdi_source(params = {})
|
14007
|
+
# @param [Hash] params ({})
|
14008
|
+
def create_sdi_source(params = {}, options = {})
|
14009
|
+
req = build_request(:create_sdi_source, params)
|
14010
|
+
req.send_request(options)
|
14011
|
+
end
|
14012
|
+
|
14013
|
+
# Delete an SdiSource. The SdiSource must not be part of any
|
14014
|
+
# SidSourceMapping and must not be attached to any input.
|
14015
|
+
#
|
14016
|
+
# @option params [required, String] :sdi_source_id
|
14017
|
+
#
|
14018
|
+
# @return [Types::DeleteSdiSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14019
|
+
#
|
14020
|
+
# * {Types::DeleteSdiSourceResponse#sdi_source #sdi_source} => Types::SdiSource
|
14021
|
+
#
|
14022
|
+
# @example Request syntax with placeholder values
|
14023
|
+
#
|
14024
|
+
# resp = client.delete_sdi_source({
|
14025
|
+
# sdi_source_id: "__string", # required
|
14026
|
+
# })
|
14027
|
+
#
|
14028
|
+
# @example Response structure
|
14029
|
+
#
|
14030
|
+
# resp.sdi_source.arn #=> String
|
14031
|
+
# resp.sdi_source.id #=> String
|
14032
|
+
# resp.sdi_source.inputs #=> Array
|
14033
|
+
# resp.sdi_source.inputs[0] #=> String
|
14034
|
+
# resp.sdi_source.mode #=> String, one of "QUADRANT", "INTERLEAVE"
|
14035
|
+
# resp.sdi_source.name #=> String
|
14036
|
+
# resp.sdi_source.state #=> String, one of "IDLE", "IN_USE", "DELETED"
|
14037
|
+
# resp.sdi_source.type #=> String, one of "SINGLE", "QUAD"
|
14038
|
+
#
|
14039
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteSdiSource AWS API Documentation
|
14040
|
+
#
|
14041
|
+
# @overload delete_sdi_source(params = {})
|
14042
|
+
# @param [Hash] params ({})
|
14043
|
+
def delete_sdi_source(params = {}, options = {})
|
14044
|
+
req = build_request(:delete_sdi_source, params)
|
14045
|
+
req.send_request(options)
|
14046
|
+
end
|
14047
|
+
|
14048
|
+
# Gets details about a SdiSource.
|
14049
|
+
#
|
14050
|
+
# @option params [required, String] :sdi_source_id
|
14051
|
+
#
|
14052
|
+
# @return [Types::DescribeSdiSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14053
|
+
#
|
14054
|
+
# * {Types::DescribeSdiSourceResponse#sdi_source #sdi_source} => Types::SdiSource
|
14055
|
+
#
|
14056
|
+
# @example Request syntax with placeholder values
|
14057
|
+
#
|
14058
|
+
# resp = client.describe_sdi_source({
|
14059
|
+
# sdi_source_id: "__string", # required
|
14060
|
+
# })
|
14061
|
+
#
|
14062
|
+
# @example Response structure
|
14063
|
+
#
|
14064
|
+
# resp.sdi_source.arn #=> String
|
14065
|
+
# resp.sdi_source.id #=> String
|
14066
|
+
# resp.sdi_source.inputs #=> Array
|
14067
|
+
# resp.sdi_source.inputs[0] #=> String
|
14068
|
+
# resp.sdi_source.mode #=> String, one of "QUADRANT", "INTERLEAVE"
|
14069
|
+
# resp.sdi_source.name #=> String
|
14070
|
+
# resp.sdi_source.state #=> String, one of "IDLE", "IN_USE", "DELETED"
|
14071
|
+
# resp.sdi_source.type #=> String, one of "SINGLE", "QUAD"
|
14072
|
+
#
|
14073
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeSdiSource AWS API Documentation
|
14074
|
+
#
|
14075
|
+
# @overload describe_sdi_source(params = {})
|
14076
|
+
# @param [Hash] params ({})
|
14077
|
+
def describe_sdi_source(params = {}, options = {})
|
14078
|
+
req = build_request(:describe_sdi_source, params)
|
14079
|
+
req.send_request(options)
|
14080
|
+
end
|
14081
|
+
|
14082
|
+
# List all the SdiSources in the AWS account.
|
14083
|
+
#
|
14084
|
+
# @option params [Integer] :max_results
|
14085
|
+
#
|
14086
|
+
# @option params [String] :next_token
|
14087
|
+
#
|
14088
|
+
# @return [Types::ListSdiSourcesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14089
|
+
#
|
14090
|
+
# * {Types::ListSdiSourcesResponse#next_token #next_token} => String
|
14091
|
+
# * {Types::ListSdiSourcesResponse#sdi_sources #sdi_sources} => Array<Types::SdiSourceSummary>
|
14092
|
+
#
|
14093
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
14094
|
+
#
|
14095
|
+
# @example Request syntax with placeholder values
|
14096
|
+
#
|
14097
|
+
# resp = client.list_sdi_sources({
|
14098
|
+
# max_results: 1,
|
14099
|
+
# next_token: "__string",
|
14100
|
+
# })
|
14101
|
+
#
|
14102
|
+
# @example Response structure
|
14103
|
+
#
|
14104
|
+
# resp.next_token #=> String
|
14105
|
+
# resp.sdi_sources #=> Array
|
14106
|
+
# resp.sdi_sources[0].arn #=> String
|
14107
|
+
# resp.sdi_sources[0].id #=> String
|
14108
|
+
# resp.sdi_sources[0].inputs #=> Array
|
14109
|
+
# resp.sdi_sources[0].inputs[0] #=> String
|
14110
|
+
# resp.sdi_sources[0].mode #=> String, one of "QUADRANT", "INTERLEAVE"
|
14111
|
+
# resp.sdi_sources[0].name #=> String
|
14112
|
+
# resp.sdi_sources[0].state #=> String, one of "IDLE", "IN_USE", "DELETED"
|
14113
|
+
# resp.sdi_sources[0].type #=> String, one of "SINGLE", "QUAD"
|
14114
|
+
#
|
14115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListSdiSources AWS API Documentation
|
14116
|
+
#
|
14117
|
+
# @overload list_sdi_sources(params = {})
|
14118
|
+
# @param [Hash] params ({})
|
14119
|
+
def list_sdi_sources(params = {}, options = {})
|
14120
|
+
req = build_request(:list_sdi_sources, params)
|
14121
|
+
req.send_request(options)
|
14122
|
+
end
|
14123
|
+
|
14124
|
+
# Change some of the settings in an SdiSource.
|
14125
|
+
#
|
14126
|
+
# @option params [String] :mode
|
14127
|
+
# Include this parameter only if you want to change the name of the
|
14128
|
+
# SdiSource. Specify a name that is unique in the AWS account. We
|
14129
|
+
# recommend you assign a name that describes the source, for example
|
14130
|
+
# curling-cameraA. Names are case-sensitive.
|
14131
|
+
#
|
14132
|
+
# @option params [String] :name
|
14133
|
+
# Include this parameter only if you want to change the name of the
|
14134
|
+
# SdiSource. Specify a name that is unique in the AWS account. We
|
14135
|
+
# recommend you assign a name that describes the source, for example
|
14136
|
+
# curling-cameraA. Names are case-sensitive.
|
14137
|
+
#
|
14138
|
+
# @option params [required, String] :sdi_source_id
|
14139
|
+
#
|
14140
|
+
# @option params [String] :type
|
14141
|
+
# Include this parameter only if you want to change the mode. Specify
|
14142
|
+
# the type of the SDI source: SINGLE: The source is a single-link
|
14143
|
+
# source. QUAD: The source is one part of a quad-link source.
|
14144
|
+
#
|
14145
|
+
# @return [Types::UpdateSdiSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14146
|
+
#
|
14147
|
+
# * {Types::UpdateSdiSourceResponse#sdi_source #sdi_source} => Types::SdiSource
|
14148
|
+
#
|
14149
|
+
# @example Request syntax with placeholder values
|
14150
|
+
#
|
14151
|
+
# resp = client.update_sdi_source({
|
14152
|
+
# mode: "QUADRANT", # accepts QUADRANT, INTERLEAVE
|
14153
|
+
# name: "__string",
|
14154
|
+
# sdi_source_id: "__string", # required
|
14155
|
+
# type: "SINGLE", # accepts SINGLE, QUAD
|
14156
|
+
# })
|
14157
|
+
#
|
14158
|
+
# @example Response structure
|
14159
|
+
#
|
14160
|
+
# resp.sdi_source.arn #=> String
|
14161
|
+
# resp.sdi_source.id #=> String
|
14162
|
+
# resp.sdi_source.inputs #=> Array
|
14163
|
+
# resp.sdi_source.inputs[0] #=> String
|
14164
|
+
# resp.sdi_source.mode #=> String, one of "QUADRANT", "INTERLEAVE"
|
14165
|
+
# resp.sdi_source.name #=> String
|
14166
|
+
# resp.sdi_source.state #=> String, one of "IDLE", "IN_USE", "DELETED"
|
14167
|
+
# resp.sdi_source.type #=> String, one of "SINGLE", "QUAD"
|
14168
|
+
#
|
14169
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateSdiSource AWS API Documentation
|
14170
|
+
#
|
14171
|
+
# @overload update_sdi_source(params = {})
|
14172
|
+
# @param [Hash] params ({})
|
14173
|
+
def update_sdi_source(params = {}, options = {})
|
14174
|
+
req = build_request(:update_sdi_source, params)
|
14175
|
+
req.send_request(options)
|
14176
|
+
end
|
14177
|
+
|
13792
14178
|
# @!endgroup
|
13793
14179
|
|
13794
14180
|
# @param params ({})
|
@@ -13807,7 +14193,7 @@ module Aws::MediaLive
|
|
13807
14193
|
tracer: tracer
|
13808
14194
|
)
|
13809
14195
|
context[:gem_name] = 'aws-sdk-medialive'
|
13810
|
-
context[:gem_version] = '1.
|
14196
|
+
context[:gem_version] = '1.150.0'
|
13811
14197
|
Seahorse::Client::Request.new(handlers, context)
|
13812
14198
|
end
|
13813
14199
|
|