aws-sdk-medialive 1.167.0 → 1.169.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 +72 -7
- data/lib/aws-sdk-medialive/client_api.rb +46 -0
- data/lib/aws-sdk-medialive/types.rb +197 -10
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +27 -6
- data/sig/types.rbs +46 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7786a18cf1c687584bb64c49eca7f50df4be698ab9be28570cde005b810719ca
|
|
4
|
+
data.tar.gz: b023cd962439bdf70794618423469e0d0bc3284d960f0fbf47c1340d1a798496
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f3871d992bd36a1a3c23d5199bed696102b9974d2a0f6fde3ca53a1ef0af718543e607a46bf3c62bb58af8aaf70b761dda704c74bc9a7441a80c91c3a1410e8d
|
|
7
|
+
data.tar.gz: 0dca34f169a13eb89674a0e6913a79c50a3b30f1125019bf245aad78f256feba7892a692aa6a49e371f68a6fe1e7c18604d432f5207b71ef69ba38d6b4759e60
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.169.0 (2025-11-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - MediaLive is adding support for MediaConnect Router by supporting a new input type called MEDIACONNECT_ROUTER. This new input type will provide seamless encrypted transport between MediaConnect Router and your MediaLive channel.
|
|
8
|
+
|
|
9
|
+
1.168.0 (2025-11-17)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds configurations for spatial/temporal adaptive quantization in AV1 codec, and conversion to HLG output color space in H265 codec.
|
|
13
|
+
|
|
4
14
|
1.167.0 (2025-11-14)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.169.0
|
|
@@ -1807,6 +1807,8 @@ module Aws::MediaLive
|
|
|
1807
1807
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.bitrate #=> Integer
|
|
1808
1808
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.rate_control_mode #=> String, one of "CBR", "QVBR"
|
|
1809
1809
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.min_bitrate #=> Integer
|
|
1810
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.spatial_aq #=> String, one of "DISABLED", "ENABLED"
|
|
1811
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
|
1810
1812
|
# resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
|
|
1811
1813
|
# resp.channel.encoder_settings.video_descriptions[0].name #=> String
|
|
1812
1814
|
# resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
|
@@ -1978,6 +1980,10 @@ module Aws::MediaLive
|
|
|
1978
1980
|
# @option params [Array<String>] :sdi_sources
|
|
1979
1981
|
# SDI Sources for this Input.
|
|
1980
1982
|
#
|
|
1983
|
+
# @option params [Types::RouterSettings] :router_settings
|
|
1984
|
+
# This is the collection of settings that are used during the creation
|
|
1985
|
+
# of a MediaConnect router input.
|
|
1986
|
+
#
|
|
1981
1987
|
# @return [Types::CreateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1982
1988
|
#
|
|
1983
1989
|
# * {Types::CreateInputResponse#input #input} => Types::Input
|
|
@@ -2022,7 +2028,7 @@ module Aws::MediaLive
|
|
|
2022
2028
|
# tags: {
|
|
2023
2029
|
# "__string" => "__string",
|
|
2024
2030
|
# },
|
|
2025
|
-
# 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
|
|
2031
|
+
# 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, MEDIACONNECT_ROUTER
|
|
2026
2032
|
# vpc: {
|
|
2027
2033
|
# security_group_ids: ["__string"],
|
|
2028
2034
|
# subnet_ids: ["__string"], # required
|
|
@@ -2075,6 +2081,15 @@ module Aws::MediaLive
|
|
|
2075
2081
|
# ],
|
|
2076
2082
|
# },
|
|
2077
2083
|
# sdi_sources: ["__string"],
|
|
2084
|
+
# router_settings: {
|
|
2085
|
+
# destinations: [
|
|
2086
|
+
# {
|
|
2087
|
+
# availability_zone_name: "__string", # required
|
|
2088
|
+
# },
|
|
2089
|
+
# ],
|
|
2090
|
+
# encryption_type: "AUTOMATIC", # accepts AUTOMATIC, SECRETS_MANAGER
|
|
2091
|
+
# secret_arn: "__string",
|
|
2092
|
+
# },
|
|
2078
2093
|
# })
|
|
2079
2094
|
#
|
|
2080
2095
|
# @example Response structure
|
|
@@ -2112,7 +2127,7 @@ module Aws::MediaLive
|
|
|
2112
2127
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
|
2113
2128
|
# resp.input.tags #=> Hash
|
|
2114
2129
|
# resp.input.tags["__string"] #=> String
|
|
2115
|
-
# 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"
|
|
2130
|
+
# 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", "MEDIACONNECT_ROUTER"
|
|
2116
2131
|
# resp.input.srt_settings.srt_caller_sources #=> Array
|
|
2117
2132
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
|
2118
2133
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
|
@@ -2135,6 +2150,11 @@ module Aws::MediaLive
|
|
|
2135
2150
|
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
|
2136
2151
|
# resp.input.sdi_sources #=> Array
|
|
2137
2152
|
# resp.input.sdi_sources[0] #=> String
|
|
2153
|
+
# resp.input.router_settings.destinations #=> Array
|
|
2154
|
+
# resp.input.router_settings.destinations[0].availability_zone_name #=> String
|
|
2155
|
+
# resp.input.router_settings.destinations[0].router_output_arn #=> String
|
|
2156
|
+
# resp.input.router_settings.encryption_type #=> String, one of "AUTOMATIC", "SECRETS_MANAGER"
|
|
2157
|
+
# resp.input.router_settings.secret_arn #=> String
|
|
2138
2158
|
#
|
|
2139
2159
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
|
2140
2160
|
#
|
|
@@ -2400,7 +2420,7 @@ module Aws::MediaLive
|
|
|
2400
2420
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
|
2401
2421
|
# resp.input.tags #=> Hash
|
|
2402
2422
|
# resp.input.tags["__string"] #=> String
|
|
2403
|
-
# 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"
|
|
2423
|
+
# 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", "MEDIACONNECT_ROUTER"
|
|
2404
2424
|
# resp.input.srt_settings.srt_caller_sources #=> Array
|
|
2405
2425
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
|
2406
2426
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
|
@@ -2423,6 +2443,11 @@ module Aws::MediaLive
|
|
|
2423
2443
|
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
|
2424
2444
|
# resp.input.sdi_sources #=> Array
|
|
2425
2445
|
# resp.input.sdi_sources[0] #=> String
|
|
2446
|
+
# resp.input.router_settings.destinations #=> Array
|
|
2447
|
+
# resp.input.router_settings.destinations[0].availability_zone_name #=> String
|
|
2448
|
+
# resp.input.router_settings.destinations[0].router_output_arn #=> String
|
|
2449
|
+
# resp.input.router_settings.encryption_type #=> String, one of "AUTOMATIC", "SECRETS_MANAGER"
|
|
2450
|
+
# resp.input.router_settings.secret_arn #=> String
|
|
2426
2451
|
#
|
|
2427
2452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreatePartnerInput AWS API Documentation
|
|
2428
2453
|
#
|
|
@@ -3225,6 +3250,8 @@ module Aws::MediaLive
|
|
|
3225
3250
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.bitrate #=> Integer
|
|
3226
3251
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.rate_control_mode #=> String, one of "CBR", "QVBR"
|
|
3227
3252
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.min_bitrate #=> Integer
|
|
3253
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.spatial_aq #=> String, one of "DISABLED", "ENABLED"
|
|
3254
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
|
3228
3255
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
|
3229
3256
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
|
3230
3257
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
|
@@ -4407,6 +4434,8 @@ module Aws::MediaLive
|
|
|
4407
4434
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.bitrate #=> Integer
|
|
4408
4435
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.rate_control_mode #=> String, one of "CBR", "QVBR"
|
|
4409
4436
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.min_bitrate #=> Integer
|
|
4437
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.spatial_aq #=> String, one of "DISABLED", "ENABLED"
|
|
4438
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
|
4410
4439
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
|
4411
4440
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
|
4412
4441
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
|
@@ -4561,6 +4590,7 @@ module Aws::MediaLive
|
|
|
4561
4590
|
# * {Types::DescribeInputResponse#multicast_settings #multicast_settings} => Types::MulticastSettings
|
|
4562
4591
|
# * {Types::DescribeInputResponse#smpte_2110_receiver_group_settings #smpte_2110_receiver_group_settings} => Types::Smpte2110ReceiverGroupSettings
|
|
4563
4592
|
# * {Types::DescribeInputResponse#sdi_sources #sdi_sources} => Array<String>
|
|
4593
|
+
# * {Types::DescribeInputResponse#router_settings #router_settings} => Types::RouterInputSettings
|
|
4564
4594
|
#
|
|
4565
4595
|
# @example Request syntax with placeholder values
|
|
4566
4596
|
#
|
|
@@ -4603,7 +4633,7 @@ module Aws::MediaLive
|
|
|
4603
4633
|
# resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
|
4604
4634
|
# resp.tags #=> Hash
|
|
4605
4635
|
# resp.tags["__string"] #=> String
|
|
4606
|
-
# 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"
|
|
4636
|
+
# 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", "MEDIACONNECT_ROUTER"
|
|
4607
4637
|
# resp.srt_settings.srt_caller_sources #=> Array
|
|
4608
4638
|
# resp.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
|
4609
4639
|
# resp.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
|
@@ -4626,6 +4656,11 @@ module Aws::MediaLive
|
|
|
4626
4656
|
# resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
|
4627
4657
|
# resp.sdi_sources #=> Array
|
|
4628
4658
|
# resp.sdi_sources[0] #=> String
|
|
4659
|
+
# resp.router_settings.destinations #=> Array
|
|
4660
|
+
# resp.router_settings.destinations[0].availability_zone_name #=> String
|
|
4661
|
+
# resp.router_settings.destinations[0].router_output_arn #=> String
|
|
4662
|
+
# resp.router_settings.encryption_type #=> String, one of "AUTOMATIC", "SECRETS_MANAGER"
|
|
4663
|
+
# resp.router_settings.secret_arn #=> String
|
|
4629
4664
|
#
|
|
4630
4665
|
#
|
|
4631
4666
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -5597,7 +5632,7 @@ module Aws::MediaLive
|
|
|
5597
5632
|
# resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
|
5598
5633
|
# resp.inputs[0].tags #=> Hash
|
|
5599
5634
|
# resp.inputs[0].tags["__string"] #=> String
|
|
5600
|
-
# 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"
|
|
5635
|
+
# 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", "MEDIACONNECT_ROUTER"
|
|
5601
5636
|
# resp.inputs[0].srt_settings.srt_caller_sources #=> Array
|
|
5602
5637
|
# resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
|
5603
5638
|
# resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
|
@@ -5620,6 +5655,11 @@ module Aws::MediaLive
|
|
|
5620
5655
|
# resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
|
5621
5656
|
# resp.inputs[0].sdi_sources #=> Array
|
|
5622
5657
|
# resp.inputs[0].sdi_sources[0] #=> String
|
|
5658
|
+
# resp.inputs[0].router_settings.destinations #=> Array
|
|
5659
|
+
# resp.inputs[0].router_settings.destinations[0].availability_zone_name #=> String
|
|
5660
|
+
# resp.inputs[0].router_settings.destinations[0].router_output_arn #=> String
|
|
5661
|
+
# resp.inputs[0].router_settings.encryption_type #=> String, one of "AUTOMATIC", "SECRETS_MANAGER"
|
|
5662
|
+
# resp.inputs[0].router_settings.secret_arn #=> String
|
|
5623
5663
|
# resp.next_token #=> String
|
|
5624
5664
|
#
|
|
5625
5665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
|
|
@@ -6806,6 +6846,8 @@ module Aws::MediaLive
|
|
|
6806
6846
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.bitrate #=> Integer
|
|
6807
6847
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.rate_control_mode #=> String, one of "CBR", "QVBR"
|
|
6808
6848
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.min_bitrate #=> Integer
|
|
6849
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.spatial_aq #=> String, one of "DISABLED", "ENABLED"
|
|
6850
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
|
6809
6851
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
|
6810
6852
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
|
6811
6853
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
|
@@ -7795,6 +7837,8 @@ module Aws::MediaLive
|
|
|
7795
7837
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.bitrate #=> Integer
|
|
7796
7838
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.rate_control_mode #=> String, one of "CBR", "QVBR"
|
|
7797
7839
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.min_bitrate #=> Integer
|
|
7840
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.spatial_aq #=> String, one of "DISABLED", "ENABLED"
|
|
7841
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
|
7798
7842
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
|
7799
7843
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
|
7800
7844
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
|
@@ -8817,6 +8861,8 @@ module Aws::MediaLive
|
|
|
8817
8861
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.bitrate #=> Integer
|
|
8818
8862
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.rate_control_mode #=> String, one of "CBR", "QVBR"
|
|
8819
8863
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.min_bitrate #=> Integer
|
|
8864
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.spatial_aq #=> String, one of "DISABLED", "ENABLED"
|
|
8865
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
|
8820
8866
|
# resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
|
|
8821
8867
|
# resp.channel.encoder_settings.video_descriptions[0].name #=> String
|
|
8822
8868
|
# resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
|
@@ -9722,6 +9768,8 @@ module Aws::MediaLive
|
|
|
9722
9768
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.bitrate #=> Integer
|
|
9723
9769
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.rate_control_mode #=> String, one of "CBR", "QVBR"
|
|
9724
9770
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.min_bitrate #=> Integer
|
|
9771
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.spatial_aq #=> String, one of "DISABLED", "ENABLED"
|
|
9772
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
|
9725
9773
|
# resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
|
|
9726
9774
|
# resp.channel.encoder_settings.video_descriptions[0].name #=> String
|
|
9727
9775
|
# resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
|
@@ -9874,6 +9922,13 @@ module Aws::MediaLive
|
|
|
9874
9922
|
# @option params [Array<String>] :sdi_sources
|
|
9875
9923
|
# SDI Sources for this Input.
|
|
9876
9924
|
#
|
|
9925
|
+
# @option params [Types::SpecialRouterSettings] :special_router_settings
|
|
9926
|
+
# When using MediaConnect Router as the source of a MediaLive input
|
|
9927
|
+
# there's a special handoff that occurs when a router output is
|
|
9928
|
+
# created. This group of settings is set on your behalf by the
|
|
9929
|
+
# MediaConnect Router service using this set of settings. This setting
|
|
9930
|
+
# object can only by used by that service.
|
|
9931
|
+
#
|
|
9877
9932
|
# @return [Types::UpdateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
9878
9933
|
#
|
|
9879
9934
|
# * {Types::UpdateInputResponse#input #input} => Types::Input
|
|
@@ -9962,6 +10017,9 @@ module Aws::MediaLive
|
|
|
9962
10017
|
# ],
|
|
9963
10018
|
# },
|
|
9964
10019
|
# sdi_sources: ["__string"],
|
|
10020
|
+
# special_router_settings: {
|
|
10021
|
+
# router_arn: "__string",
|
|
10022
|
+
# },
|
|
9965
10023
|
# })
|
|
9966
10024
|
#
|
|
9967
10025
|
# @example Response structure
|
|
@@ -9999,7 +10057,7 @@ module Aws::MediaLive
|
|
|
9999
10057
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
|
10000
10058
|
# resp.input.tags #=> Hash
|
|
10001
10059
|
# resp.input.tags["__string"] #=> String
|
|
10002
|
-
# 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"
|
|
10060
|
+
# 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", "MEDIACONNECT_ROUTER"
|
|
10003
10061
|
# resp.input.srt_settings.srt_caller_sources #=> Array
|
|
10004
10062
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
|
10005
10063
|
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
|
@@ -10022,6 +10080,11 @@ module Aws::MediaLive
|
|
|
10022
10080
|
# resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
|
|
10023
10081
|
# resp.input.sdi_sources #=> Array
|
|
10024
10082
|
# resp.input.sdi_sources[0] #=> String
|
|
10083
|
+
# resp.input.router_settings.destinations #=> Array
|
|
10084
|
+
# resp.input.router_settings.destinations[0].availability_zone_name #=> String
|
|
10085
|
+
# resp.input.router_settings.destinations[0].router_output_arn #=> String
|
|
10086
|
+
# resp.input.router_settings.encryption_type #=> String, one of "AUTOMATIC", "SECRETS_MANAGER"
|
|
10087
|
+
# resp.input.router_settings.secret_arn #=> String
|
|
10025
10088
|
#
|
|
10026
10089
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
|
10027
10090
|
#
|
|
@@ -11214,6 +11277,8 @@ module Aws::MediaLive
|
|
|
11214
11277
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.bitrate #=> Integer
|
|
11215
11278
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.rate_control_mode #=> String, one of "CBR", "QVBR"
|
|
11216
11279
|
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.min_bitrate #=> Integer
|
|
11280
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.spatial_aq #=> String, one of "DISABLED", "ENABLED"
|
|
11281
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.av_1_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
|
11217
11282
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
|
11218
11283
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
|
11219
11284
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
|
@@ -14651,7 +14716,7 @@ module Aws::MediaLive
|
|
|
14651
14716
|
tracer: tracer
|
|
14652
14717
|
)
|
|
14653
14718
|
context[:gem_name] = 'aws-sdk-medialive'
|
|
14654
|
-
context[:gem_version] = '1.
|
|
14719
|
+
context[:gem_version] = '1.169.0'
|
|
14655
14720
|
Seahorse::Client::Request.new(handlers, context)
|
|
14656
14721
|
end
|
|
14657
14722
|
|
|
@@ -80,6 +80,8 @@ module Aws::MediaLive
|
|
|
80
80
|
Av1RateControlMode = Shapes::StringShape.new(name: 'Av1RateControlMode')
|
|
81
81
|
Av1SceneChangeDetect = Shapes::StringShape.new(name: 'Av1SceneChangeDetect')
|
|
82
82
|
Av1Settings = Shapes::StructureShape.new(name: 'Av1Settings')
|
|
83
|
+
Av1SpatialAq = Shapes::StringShape.new(name: 'Av1SpatialAq')
|
|
84
|
+
Av1TemporalAq = Shapes::StringShape.new(name: 'Av1TemporalAq')
|
|
83
85
|
AvailBlanking = Shapes::StructureShape.new(name: 'AvailBlanking')
|
|
84
86
|
AvailBlankingState = Shapes::StringShape.new(name: 'AvailBlankingState')
|
|
85
87
|
AvailConfiguration = Shapes::StructureShape.new(name: 'AvailConfiguration')
|
|
@@ -457,6 +459,7 @@ module Aws::MediaLive
|
|
|
457
459
|
H265TimecodeInsertionBehavior = Shapes::StringShape.new(name: 'H265TimecodeInsertionBehavior')
|
|
458
460
|
H265TreeblockSize = Shapes::StringShape.new(name: 'H265TreeblockSize')
|
|
459
461
|
Hdr10Settings = Shapes::StructureShape.new(name: 'Hdr10Settings')
|
|
462
|
+
Hlg2020Settings = Shapes::StructureShape.new(name: 'Hlg2020Settings')
|
|
460
463
|
HlsAdMarkers = Shapes::StringShape.new(name: 'HlsAdMarkers')
|
|
461
464
|
HlsAkamaiHttpTransferMode = Shapes::StringShape.new(name: 'HlsAkamaiHttpTransferMode')
|
|
462
465
|
HlsAkamaiSettings = Shapes::StructureShape.new(name: 'HlsAkamaiSettings')
|
|
@@ -822,6 +825,11 @@ module Aws::MediaLive
|
|
|
822
825
|
Route = Shapes::StructureShape.new(name: 'Route')
|
|
823
826
|
RouteCreateRequest = Shapes::StructureShape.new(name: 'RouteCreateRequest')
|
|
824
827
|
RouteUpdateRequest = Shapes::StructureShape.new(name: 'RouteUpdateRequest')
|
|
828
|
+
RouterDestination = Shapes::StructureShape.new(name: 'RouterDestination')
|
|
829
|
+
RouterDestinationSettings = Shapes::StructureShape.new(name: 'RouterDestinationSettings')
|
|
830
|
+
RouterEncryptionType = Shapes::StringShape.new(name: 'RouterEncryptionType')
|
|
831
|
+
RouterInputSettings = Shapes::StructureShape.new(name: 'RouterInputSettings')
|
|
832
|
+
RouterSettings = Shapes::StructureShape.new(name: 'RouterSettings')
|
|
825
833
|
RtmpAdMarkers = Shapes::StringShape.new(name: 'RtmpAdMarkers')
|
|
826
834
|
RtmpCacheFullBehavior = Shapes::StringShape.new(name: 'RtmpCacheFullBehavior')
|
|
827
835
|
RtmpCaptionData = Shapes::StringShape.new(name: 'RtmpCaptionData')
|
|
@@ -888,6 +896,7 @@ module Aws::MediaLive
|
|
|
888
896
|
Smpte2110ReceiverGroupSdpSettings = Shapes::StructureShape.new(name: 'Smpte2110ReceiverGroupSdpSettings')
|
|
889
897
|
Smpte2110ReceiverGroupSettings = Shapes::StructureShape.new(name: 'Smpte2110ReceiverGroupSettings')
|
|
890
898
|
SmpteTtDestinationSettings = Shapes::StructureShape.new(name: 'SmpteTtDestinationSettings')
|
|
899
|
+
SpecialRouterSettings = Shapes::StructureShape.new(name: 'SpecialRouterSettings')
|
|
891
900
|
SrtCallerDecryption = Shapes::StructureShape.new(name: 'SrtCallerDecryption')
|
|
892
901
|
SrtCallerDecryptionRequest = Shapes::StructureShape.new(name: 'SrtCallerDecryptionRequest')
|
|
893
902
|
SrtCallerSource = Shapes::StructureShape.new(name: 'SrtCallerSource')
|
|
@@ -1207,6 +1216,8 @@ module Aws::MediaLive
|
|
|
1207
1216
|
__listOfRoute = Shapes::ListShape.new(name: '__listOfRoute')
|
|
1208
1217
|
__listOfRouteCreateRequest = Shapes::ListShape.new(name: '__listOfRouteCreateRequest')
|
|
1209
1218
|
__listOfRouteUpdateRequest = Shapes::ListShape.new(name: '__listOfRouteUpdateRequest')
|
|
1219
|
+
__listOfRouterDestination = Shapes::ListShape.new(name: '__listOfRouterDestination')
|
|
1220
|
+
__listOfRouterDestinationSettings = Shapes::ListShape.new(name: '__listOfRouterDestinationSettings')
|
|
1210
1221
|
__listOfRtmpAdMarkers = Shapes::ListShape.new(name: '__listOfRtmpAdMarkers')
|
|
1211
1222
|
__listOfScheduleAction = Shapes::ListShape.new(name: '__listOfScheduleAction')
|
|
1212
1223
|
__listOfScte35Descriptor = Shapes::ListShape.new(name: '__listOfScte35Descriptor')
|
|
@@ -1440,6 +1451,8 @@ module Aws::MediaLive
|
|
|
1440
1451
|
Av1Settings.add_member(:bitrate, Shapes::ShapeRef.new(shape: __integerMin50000Max12000000, location_name: "bitrate"))
|
|
1441
1452
|
Av1Settings.add_member(:rate_control_mode, Shapes::ShapeRef.new(shape: Av1RateControlMode, location_name: "rateControlMode"))
|
|
1442
1453
|
Av1Settings.add_member(:min_bitrate, Shapes::ShapeRef.new(shape: __integerMin0Max8000000, location_name: "minBitrate"))
|
|
1454
|
+
Av1Settings.add_member(:spatial_aq, Shapes::ShapeRef.new(shape: Av1SpatialAq, location_name: "spatialAq"))
|
|
1455
|
+
Av1Settings.add_member(:temporal_aq, Shapes::ShapeRef.new(shape: Av1TemporalAq, location_name: "temporalAq"))
|
|
1443
1456
|
Av1Settings.struct_class = Types::Av1Settings
|
|
1444
1457
|
|
|
1445
1458
|
AvailBlanking.add_member(:avail_blanking_image, Shapes::ShapeRef.new(shape: InputLocation, location_name: "availBlankingImage"))
|
|
@@ -2071,6 +2084,7 @@ module Aws::MediaLive
|
|
|
2071
2084
|
CreateInput.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettingsCreateRequest, location_name: "multicastSettings"))
|
|
2072
2085
|
CreateInput.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
|
|
2073
2086
|
CreateInput.add_member(:sdi_sources, Shapes::ShapeRef.new(shape: InputSdiSources, location_name: "sdiSources"))
|
|
2087
|
+
CreateInput.add_member(:router_settings, Shapes::ShapeRef.new(shape: RouterSettings, location_name: "routerSettings"))
|
|
2074
2088
|
CreateInput.struct_class = Types::CreateInput
|
|
2075
2089
|
|
|
2076
2090
|
CreateInputRequest.add_member(:destinations, Shapes::ShapeRef.new(shape: __listOfInputDestinationRequest, location_name: "destinations"))
|
|
@@ -2089,6 +2103,7 @@ module Aws::MediaLive
|
|
|
2089
2103
|
CreateInputRequest.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettingsCreateRequest, location_name: "multicastSettings"))
|
|
2090
2104
|
CreateInputRequest.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
|
|
2091
2105
|
CreateInputRequest.add_member(:sdi_sources, Shapes::ShapeRef.new(shape: InputSdiSources, location_name: "sdiSources"))
|
|
2106
|
+
CreateInputRequest.add_member(:router_settings, Shapes::ShapeRef.new(shape: RouterSettings, location_name: "routerSettings"))
|
|
2092
2107
|
CreateInputRequest.struct_class = Types::CreateInputRequest
|
|
2093
2108
|
|
|
2094
2109
|
CreateInputResponse.add_member(:input, Shapes::ShapeRef.new(shape: Input, location_name: "input"))
|
|
@@ -2611,6 +2626,7 @@ module Aws::MediaLive
|
|
|
2611
2626
|
DescribeInputResponse.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettings, location_name: "multicastSettings"))
|
|
2612
2627
|
DescribeInputResponse.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
|
|
2613
2628
|
DescribeInputResponse.add_member(:sdi_sources, Shapes::ShapeRef.new(shape: InputSdiSources, location_name: "sdiSources"))
|
|
2629
|
+
DescribeInputResponse.add_member(:router_settings, Shapes::ShapeRef.new(shape: RouterInputSettings, location_name: "routerSettings"))
|
|
2614
2630
|
DescribeInputResponse.struct_class = Types::DescribeInputResponse
|
|
2615
2631
|
|
|
2616
2632
|
DescribeInputSecurityGroupRequest.add_member(:input_security_group_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputSecurityGroupId"))
|
|
@@ -3217,6 +3233,7 @@ module Aws::MediaLive
|
|
|
3217
3233
|
H265ColorSpaceSettings.add_member(:hdr_10_settings, Shapes::ShapeRef.new(shape: Hdr10Settings, location_name: "hdr10Settings"))
|
|
3218
3234
|
H265ColorSpaceSettings.add_member(:rec_601_settings, Shapes::ShapeRef.new(shape: Rec601Settings, location_name: "rec601Settings"))
|
|
3219
3235
|
H265ColorSpaceSettings.add_member(:rec_709_settings, Shapes::ShapeRef.new(shape: Rec709Settings, location_name: "rec709Settings"))
|
|
3236
|
+
H265ColorSpaceSettings.add_member(:hlg_2020_settings, Shapes::ShapeRef.new(shape: Hlg2020Settings, location_name: "hlg2020Settings"))
|
|
3220
3237
|
H265ColorSpaceSettings.struct_class = Types::H265ColorSpaceSettings
|
|
3221
3238
|
|
|
3222
3239
|
H265FilterSettings.add_member(:temporal_filter_settings, Shapes::ShapeRef.new(shape: TemporalFilterSettings, location_name: "temporalFilterSettings"))
|
|
@@ -3271,6 +3288,8 @@ module Aws::MediaLive
|
|
|
3271
3288
|
Hdr10Settings.add_member(:max_fall, Shapes::ShapeRef.new(shape: __integerMin0Max32768, location_name: "maxFall"))
|
|
3272
3289
|
Hdr10Settings.struct_class = Types::Hdr10Settings
|
|
3273
3290
|
|
|
3291
|
+
Hlg2020Settings.struct_class = Types::Hlg2020Settings
|
|
3292
|
+
|
|
3274
3293
|
HlsAkamaiSettings.add_member(:connection_retry_interval, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "connectionRetryInterval"))
|
|
3275
3294
|
HlsAkamaiSettings.add_member(:filecache_duration, Shapes::ShapeRef.new(shape: __integerMin0Max600, location_name: "filecacheDuration"))
|
|
3276
3295
|
HlsAkamaiSettings.add_member(:http_transfer_mode, Shapes::ShapeRef.new(shape: HlsAkamaiHttpTransferMode, location_name: "httpTransferMode"))
|
|
@@ -3410,6 +3429,7 @@ module Aws::MediaLive
|
|
|
3410
3429
|
Input.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettings, location_name: "multicastSettings"))
|
|
3411
3430
|
Input.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
|
|
3412
3431
|
Input.add_member(:sdi_sources, Shapes::ShapeRef.new(shape: InputSdiSources, location_name: "sdiSources"))
|
|
3432
|
+
Input.add_member(:router_settings, Shapes::ShapeRef.new(shape: RouterInputSettings, location_name: "routerSettings"))
|
|
3413
3433
|
Input.struct_class = Types::Input
|
|
3414
3434
|
|
|
3415
3435
|
InputAttachment.add_member(:automatic_input_failover_settings, Shapes::ShapeRef.new(shape: AutomaticInputFailoverSettings, location_name: "automaticInputFailoverSettings"))
|
|
@@ -4617,6 +4637,23 @@ module Aws::MediaLive
|
|
|
4617
4637
|
RouteUpdateRequest.add_member(:gateway, Shapes::ShapeRef.new(shape: __string, location_name: "gateway"))
|
|
4618
4638
|
RouteUpdateRequest.struct_class = Types::RouteUpdateRequest
|
|
4619
4639
|
|
|
4640
|
+
RouterDestination.add_member(:availability_zone_name, Shapes::ShapeRef.new(shape: __string, location_name: "availabilityZoneName"))
|
|
4641
|
+
RouterDestination.add_member(:router_output_arn, Shapes::ShapeRef.new(shape: __string, location_name: "routerOutputArn"))
|
|
4642
|
+
RouterDestination.struct_class = Types::RouterDestination
|
|
4643
|
+
|
|
4644
|
+
RouterDestinationSettings.add_member(:availability_zone_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "availabilityZoneName"))
|
|
4645
|
+
RouterDestinationSettings.struct_class = Types::RouterDestinationSettings
|
|
4646
|
+
|
|
4647
|
+
RouterInputSettings.add_member(:destinations, Shapes::ShapeRef.new(shape: __listOfRouterDestination, location_name: "destinations"))
|
|
4648
|
+
RouterInputSettings.add_member(:encryption_type, Shapes::ShapeRef.new(shape: RouterEncryptionType, location_name: "encryptionType"))
|
|
4649
|
+
RouterInputSettings.add_member(:secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "secretArn"))
|
|
4650
|
+
RouterInputSettings.struct_class = Types::RouterInputSettings
|
|
4651
|
+
|
|
4652
|
+
RouterSettings.add_member(:destinations, Shapes::ShapeRef.new(shape: __listOfRouterDestinationSettings, location_name: "destinations"))
|
|
4653
|
+
RouterSettings.add_member(:encryption_type, Shapes::ShapeRef.new(shape: RouterEncryptionType, location_name: "encryptionType"))
|
|
4654
|
+
RouterSettings.add_member(:secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "secretArn"))
|
|
4655
|
+
RouterSettings.struct_class = Types::RouterSettings
|
|
4656
|
+
|
|
4620
4657
|
RtmpCaptionInfoDestinationSettings.struct_class = Types::RtmpCaptionInfoDestinationSettings
|
|
4621
4658
|
|
|
4622
4659
|
RtmpGroupSettings.add_member(:ad_markers, Shapes::ShapeRef.new(shape: __listOfRtmpAdMarkers, location_name: "adMarkers"))
|
|
@@ -4787,6 +4824,9 @@ module Aws::MediaLive
|
|
|
4787
4824
|
|
|
4788
4825
|
SmpteTtDestinationSettings.struct_class = Types::SmpteTtDestinationSettings
|
|
4789
4826
|
|
|
4827
|
+
SpecialRouterSettings.add_member(:router_arn, Shapes::ShapeRef.new(shape: __string, location_name: "routerArn"))
|
|
4828
|
+
SpecialRouterSettings.struct_class = Types::SpecialRouterSettings
|
|
4829
|
+
|
|
4790
4830
|
SrtCallerDecryption.add_member(:algorithm, Shapes::ShapeRef.new(shape: Algorithm, location_name: "algorithm"))
|
|
4791
4831
|
SrtCallerDecryption.add_member(:passphrase_secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "passphraseSecretArn"))
|
|
4792
4832
|
SrtCallerDecryption.struct_class = Types::SrtCallerDecryption
|
|
@@ -5484,6 +5524,7 @@ module Aws::MediaLive
|
|
|
5484
5524
|
UpdateInput.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettingsUpdateRequest, location_name: "multicastSettings"))
|
|
5485
5525
|
UpdateInput.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
|
|
5486
5526
|
UpdateInput.add_member(:sdi_sources, Shapes::ShapeRef.new(shape: InputSdiSources, location_name: "sdiSources"))
|
|
5527
|
+
UpdateInput.add_member(:special_router_settings, Shapes::ShapeRef.new(shape: SpecialRouterSettings, location_name: "specialRouterSettings"))
|
|
5487
5528
|
UpdateInput.struct_class = Types::UpdateInput
|
|
5488
5529
|
|
|
5489
5530
|
UpdateInputDevice.add_member(:hd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceConfigurableSettings, location_name: "hdDeviceSettings"))
|
|
@@ -5529,6 +5570,7 @@ module Aws::MediaLive
|
|
|
5529
5570
|
UpdateInputRequest.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettingsUpdateRequest, location_name: "multicastSettings"))
|
|
5530
5571
|
UpdateInputRequest.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
|
|
5531
5572
|
UpdateInputRequest.add_member(:sdi_sources, Shapes::ShapeRef.new(shape: InputSdiSources, location_name: "sdiSources"))
|
|
5573
|
+
UpdateInputRequest.add_member(:special_router_settings, Shapes::ShapeRef.new(shape: SpecialRouterSettings, location_name: "specialRouterSettings"))
|
|
5532
5574
|
UpdateInputRequest.struct_class = Types::UpdateInputRequest
|
|
5533
5575
|
|
|
5534
5576
|
UpdateInputResponse.add_member(:input, Shapes::ShapeRef.new(shape: Input, location_name: "input"))
|
|
@@ -5887,6 +5929,10 @@ module Aws::MediaLive
|
|
|
5887
5929
|
|
|
5888
5930
|
__listOfRouteUpdateRequest.member = Shapes::ShapeRef.new(shape: RouteUpdateRequest)
|
|
5889
5931
|
|
|
5932
|
+
__listOfRouterDestination.member = Shapes::ShapeRef.new(shape: RouterDestination)
|
|
5933
|
+
|
|
5934
|
+
__listOfRouterDestinationSettings.member = Shapes::ShapeRef.new(shape: RouterDestinationSettings)
|
|
5935
|
+
|
|
5890
5936
|
__listOfRtmpAdMarkers.member = Shapes::ShapeRef.new(shape: RtmpAdMarkers)
|
|
5891
5937
|
|
|
5892
5938
|
__listOfScheduleAction.member = Shapes::ShapeRef.new(shape: ScheduleAction)
|
|
@@ -2409,6 +2409,11 @@ module Aws::MediaLive
|
|
|
2409
2409
|
# SDI Sources for this Input.
|
|
2410
2410
|
# @return [Array<String>]
|
|
2411
2411
|
#
|
|
2412
|
+
# @!attribute [rw] router_settings
|
|
2413
|
+
# This is the collection of settings that are used during the creation
|
|
2414
|
+
# of a MediaConnect router input.
|
|
2415
|
+
# @return [Types::RouterSettings]
|
|
2416
|
+
#
|
|
2412
2417
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
|
2413
2418
|
#
|
|
2414
2419
|
class CreateInput < Struct.new(
|
|
@@ -2427,7 +2432,8 @@ module Aws::MediaLive
|
|
|
2427
2432
|
:input_network_location,
|
|
2428
2433
|
:multicast_settings,
|
|
2429
2434
|
:smpte_2110_receiver_group_settings,
|
|
2430
|
-
:sdi_sources
|
|
2435
|
+
:sdi_sources,
|
|
2436
|
+
:router_settings)
|
|
2431
2437
|
SENSITIVE = []
|
|
2432
2438
|
include Aws::Structure
|
|
2433
2439
|
end
|
|
@@ -2498,6 +2504,11 @@ module Aws::MediaLive
|
|
|
2498
2504
|
# SDI Sources for this Input.
|
|
2499
2505
|
# @return [Array<String>]
|
|
2500
2506
|
#
|
|
2507
|
+
# @!attribute [rw] router_settings
|
|
2508
|
+
# This is the collection of settings that are used during the creation
|
|
2509
|
+
# of a MediaConnect router input.
|
|
2510
|
+
# @return [Types::RouterSettings]
|
|
2511
|
+
#
|
|
2501
2512
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInputRequest AWS API Documentation
|
|
2502
2513
|
#
|
|
2503
2514
|
class CreateInputRequest < Struct.new(
|
|
@@ -2516,7 +2527,8 @@ module Aws::MediaLive
|
|
|
2516
2527
|
:input_network_location,
|
|
2517
2528
|
:multicast_settings,
|
|
2518
2529
|
:smpte_2110_receiver_group_settings,
|
|
2519
|
-
:sdi_sources
|
|
2530
|
+
:sdi_sources,
|
|
2531
|
+
:router_settings)
|
|
2520
2532
|
SENSITIVE = []
|
|
2521
2533
|
include Aws::Structure
|
|
2522
2534
|
end
|
|
@@ -3556,6 +3568,10 @@ module Aws::MediaLive
|
|
|
3556
3568
|
# SDI Sources for this Input.
|
|
3557
3569
|
# @return [Array<String>]
|
|
3558
3570
|
#
|
|
3571
|
+
# @!attribute [rw] router_settings
|
|
3572
|
+
# The settings for a MediaConnect Router Input.
|
|
3573
|
+
# @return [Types::RouterInputSettings]
|
|
3574
|
+
#
|
|
3559
3575
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputResponse AWS API Documentation
|
|
3560
3576
|
#
|
|
3561
3577
|
class DescribeInputResponse < Struct.new(
|
|
@@ -3579,7 +3595,8 @@ module Aws::MediaLive
|
|
|
3579
3595
|
:input_network_location,
|
|
3580
3596
|
:multicast_settings,
|
|
3581
3597
|
:smpte_2110_receiver_group_settings,
|
|
3582
|
-
:sdi_sources
|
|
3598
|
+
:sdi_sources,
|
|
3599
|
+
:router_settings)
|
|
3583
3600
|
SENSITIVE = []
|
|
3584
3601
|
include Aws::Structure
|
|
3585
3602
|
end
|
|
@@ -5476,6 +5493,10 @@ module Aws::MediaLive
|
|
|
5476
5493
|
# Rec709 Settings
|
|
5477
5494
|
# @return [Types::Rec709Settings]
|
|
5478
5495
|
#
|
|
5496
|
+
# @!attribute [rw] hlg_2020_settings
|
|
5497
|
+
# Hlg2020 Settings
|
|
5498
|
+
# @return [Types::Hlg2020Settings]
|
|
5499
|
+
#
|
|
5479
5500
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/H265ColorSpaceSettings AWS API Documentation
|
|
5480
5501
|
#
|
|
5481
5502
|
class H265ColorSpaceSettings < Struct.new(
|
|
@@ -5483,7 +5504,8 @@ module Aws::MediaLive
|
|
|
5483
5504
|
:dolby_vision_81_settings,
|
|
5484
5505
|
:hdr_10_settings,
|
|
5485
5506
|
:rec_601_settings,
|
|
5486
|
-
:rec_709_settings
|
|
5507
|
+
:rec_709_settings,
|
|
5508
|
+
:hlg_2020_settings)
|
|
5487
5509
|
SENSITIVE = []
|
|
5488
5510
|
include Aws::Structure
|
|
5489
5511
|
end
|
|
@@ -5754,10 +5776,15 @@ module Aws::MediaLive
|
|
|
5754
5776
|
# @return [String]
|
|
5755
5777
|
#
|
|
5756
5778
|
# @!attribute [rw] gop_b_reference
|
|
5757
|
-
#
|
|
5779
|
+
# Allows the encoder to use a B-Frame as a reference frame as well.
|
|
5780
|
+
# ENABLED: B-frames will also serve as reference frames. DISABLED:
|
|
5781
|
+
# B-frames won't be reference frames. Must be DISABLED if resolution
|
|
5782
|
+
# is greater than 1080p or when using tiled hevc encoding.
|
|
5758
5783
|
# @return [String]
|
|
5759
5784
|
#
|
|
5760
5785
|
# @!attribute [rw] gop_num_b_frames
|
|
5786
|
+
# Sets the number of B-frames between reference frames. Set to 2 if
|
|
5787
|
+
# resolution is greater than 1080p or when using tiled hevc encoding.
|
|
5761
5788
|
# @return [Integer]
|
|
5762
5789
|
#
|
|
5763
5790
|
# @!attribute [rw] min_bitrate
|
|
@@ -5768,7 +5795,10 @@ module Aws::MediaLive
|
|
|
5768
5795
|
# @return [Integer]
|
|
5769
5796
|
#
|
|
5770
5797
|
# @!attribute [rw] subgop_length
|
|
5771
|
-
#
|
|
5798
|
+
# Sets the number of B-frames in each sub-GOP. FIXED: Use the value in
|
|
5799
|
+
# Num B-frames. DYNAMIC: Optimizes the number of B-frames in each
|
|
5800
|
+
# sub-GOP to improve visual quality. Must be FIXED if resolution is
|
|
5801
|
+
# greater than 1080p or when using tiled hevc encoding.
|
|
5772
5802
|
# @return [String]
|
|
5773
5803
|
#
|
|
5774
5804
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/H265Settings AWS API Documentation
|
|
@@ -6662,6 +6692,11 @@ module Aws::MediaLive
|
|
|
6662
6692
|
# SDI Sources for this Input.
|
|
6663
6693
|
# @return [Array<String>]
|
|
6664
6694
|
#
|
|
6695
|
+
# @!attribute [rw] router_settings
|
|
6696
|
+
# Information about any MediaConnect router association with this
|
|
6697
|
+
# input.
|
|
6698
|
+
# @return [Types::RouterInputSettings]
|
|
6699
|
+
#
|
|
6665
6700
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Input AWS API Documentation
|
|
6666
6701
|
#
|
|
6667
6702
|
class Input < Struct.new(
|
|
@@ -6685,7 +6720,8 @@ module Aws::MediaLive
|
|
|
6685
6720
|
:input_network_location,
|
|
6686
6721
|
:multicast_settings,
|
|
6687
6722
|
:smpte_2110_receiver_group_settings,
|
|
6688
|
-
:sdi_sources
|
|
6723
|
+
:sdi_sources,
|
|
6724
|
+
:router_settings)
|
|
6689
6725
|
SENSITIVE = []
|
|
6690
6726
|
include Aws::Structure
|
|
6691
6727
|
end
|
|
@@ -13010,6 +13046,14 @@ module Aws::MediaLive
|
|
|
13010
13046
|
# SDI Sources for this Input.
|
|
13011
13047
|
# @return [Array<String>]
|
|
13012
13048
|
#
|
|
13049
|
+
# @!attribute [rw] special_router_settings
|
|
13050
|
+
# When using MediaConnect Router as the source of a MediaLive input
|
|
13051
|
+
# there's a special handoff that occurs when a router output is
|
|
13052
|
+
# created. This group of settings is set on your behalf by the
|
|
13053
|
+
# MediaConnect Router service using this set of settings. This setting
|
|
13054
|
+
# object can only by used by that service.
|
|
13055
|
+
# @return [Types::SpecialRouterSettings]
|
|
13056
|
+
#
|
|
13013
13057
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
|
13014
13058
|
#
|
|
13015
13059
|
class UpdateInput < Struct.new(
|
|
@@ -13023,7 +13067,8 @@ module Aws::MediaLive
|
|
|
13023
13067
|
:srt_settings,
|
|
13024
13068
|
:multicast_settings,
|
|
13025
13069
|
:smpte_2110_receiver_group_settings,
|
|
13026
|
-
:sdi_sources
|
|
13070
|
+
:sdi_sources,
|
|
13071
|
+
:special_router_settings)
|
|
13027
13072
|
SENSITIVE = []
|
|
13028
13073
|
include Aws::Structure
|
|
13029
13074
|
end
|
|
@@ -13216,6 +13261,14 @@ module Aws::MediaLive
|
|
|
13216
13261
|
# SDI Sources for this Input.
|
|
13217
13262
|
# @return [Array<String>]
|
|
13218
13263
|
#
|
|
13264
|
+
# @!attribute [rw] special_router_settings
|
|
13265
|
+
# When using MediaConnect Router as the source of a MediaLive input
|
|
13266
|
+
# there's a special handoff that occurs when a router output is
|
|
13267
|
+
# created. This group of settings is set on your behalf by the
|
|
13268
|
+
# MediaConnect Router service using this set of settings. This setting
|
|
13269
|
+
# object can only by used by that service.
|
|
13270
|
+
# @return [Types::SpecialRouterSettings]
|
|
13271
|
+
#
|
|
13219
13272
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputRequest AWS API Documentation
|
|
13220
13273
|
#
|
|
13221
13274
|
class UpdateInputRequest < Struct.new(
|
|
@@ -13230,7 +13283,8 @@ module Aws::MediaLive
|
|
|
13230
13283
|
:srt_settings,
|
|
13231
13284
|
:multicast_settings,
|
|
13232
13285
|
:smpte_2110_receiver_group_settings,
|
|
13233
|
-
:sdi_sources
|
|
13286
|
+
:sdi_sources,
|
|
13287
|
+
:special_router_settings)
|
|
13234
13288
|
SENSITIVE = []
|
|
13235
13289
|
include Aws::Structure
|
|
13236
13290
|
end
|
|
@@ -18431,6 +18485,22 @@ module Aws::MediaLive
|
|
|
18431
18485
|
# bandwidth for this output.
|
|
18432
18486
|
# @return [Integer]
|
|
18433
18487
|
#
|
|
18488
|
+
# @!attribute [rw] spatial_aq
|
|
18489
|
+
# Spatial AQ makes adjustments within each frame based on spatial
|
|
18490
|
+
# variation of content complexity. Enabled: MediaLive will determine
|
|
18491
|
+
# the appropriate level of spatial AQ to apply. Disabled: No spatial
|
|
18492
|
+
# AQ. For more information, see the topic about video adaptive
|
|
18493
|
+
# quantization in the MediaLive user guide.
|
|
18494
|
+
# @return [String]
|
|
18495
|
+
#
|
|
18496
|
+
# @!attribute [rw] temporal_aq
|
|
18497
|
+
# Temporal AQ makes adjustments within each frame based on variations
|
|
18498
|
+
# in content complexity over time. Enabled: MediaLive will determine
|
|
18499
|
+
# the appropriate level of temporal AQ to apply. Disabled: No temporal
|
|
18500
|
+
# AQ. For more information, see the topic about video adaptive
|
|
18501
|
+
# quantization in the MediaLive user guide.
|
|
18502
|
+
# @return [String]
|
|
18503
|
+
#
|
|
18434
18504
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Av1Settings AWS API Documentation
|
|
18435
18505
|
#
|
|
18436
18506
|
class Av1Settings < Struct.new(
|
|
@@ -18453,7 +18523,9 @@ module Aws::MediaLive
|
|
|
18453
18523
|
:timecode_burnin_settings,
|
|
18454
18524
|
:bitrate,
|
|
18455
18525
|
:rate_control_mode,
|
|
18456
|
-
:min_bitrate
|
|
18526
|
+
:min_bitrate,
|
|
18527
|
+
:spatial_aq,
|
|
18528
|
+
:temporal_aq)
|
|
18457
18529
|
SENSITIVE = []
|
|
18458
18530
|
include Aws::Structure
|
|
18459
18531
|
end
|
|
@@ -22231,6 +22303,121 @@ module Aws::MediaLive
|
|
|
22231
22303
|
include Aws::Structure
|
|
22232
22304
|
end
|
|
22233
22305
|
|
|
22306
|
+
# Hlg2020 Settings
|
|
22307
|
+
#
|
|
22308
|
+
# @api private
|
|
22309
|
+
#
|
|
22310
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Hlg2020Settings AWS API Documentation
|
|
22311
|
+
#
|
|
22312
|
+
class Hlg2020Settings < Aws::EmptyStructure; end
|
|
22313
|
+
|
|
22314
|
+
# @!attribute [rw] availability_zone_name
|
|
22315
|
+
# The Availability Zone (AZ) names of the AZs this destination is
|
|
22316
|
+
# created in.
|
|
22317
|
+
# @return [String]
|
|
22318
|
+
#
|
|
22319
|
+
# @!attribute [rw] router_output_arn
|
|
22320
|
+
# ARN of the output from MediaConnect Router currently connected to
|
|
22321
|
+
# this input.
|
|
22322
|
+
# @return [String]
|
|
22323
|
+
#
|
|
22324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RouterDestination AWS API Documentation
|
|
22325
|
+
#
|
|
22326
|
+
class RouterDestination < Struct.new(
|
|
22327
|
+
:availability_zone_name,
|
|
22328
|
+
:router_output_arn)
|
|
22329
|
+
SENSITIVE = []
|
|
22330
|
+
include Aws::Structure
|
|
22331
|
+
end
|
|
22332
|
+
|
|
22333
|
+
# @!attribute [rw] availability_zone_name
|
|
22334
|
+
# Availability Zone for this MediaConnect Router destination.
|
|
22335
|
+
# @return [String]
|
|
22336
|
+
#
|
|
22337
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RouterDestinationSettings AWS API Documentation
|
|
22338
|
+
#
|
|
22339
|
+
class RouterDestinationSettings < Struct.new(
|
|
22340
|
+
:availability_zone_name)
|
|
22341
|
+
SENSITIVE = []
|
|
22342
|
+
include Aws::Structure
|
|
22343
|
+
end
|
|
22344
|
+
|
|
22345
|
+
# The settings for a MediaConnect Router Input.
|
|
22346
|
+
#
|
|
22347
|
+
# @!attribute [rw] destinations
|
|
22348
|
+
# MediaConnect Router destinations associated with the MediaLive
|
|
22349
|
+
# Input.
|
|
22350
|
+
# @return [Array<Types::RouterDestination>]
|
|
22351
|
+
#
|
|
22352
|
+
# @!attribute [rw] encryption_type
|
|
22353
|
+
# Encryption configuration for MediaConnect router. When using
|
|
22354
|
+
# SECRETS\_MANAGER encryption, you must provide the ARN of the secret
|
|
22355
|
+
# used to encrypt data in transit. When using AUTOMATIC encryption, a
|
|
22356
|
+
# service-managed secret will be used instead.
|
|
22357
|
+
# @return [String]
|
|
22358
|
+
#
|
|
22359
|
+
# @!attribute [rw] secret_arn
|
|
22360
|
+
# ARN of the secret used to encrypt this input.
|
|
22361
|
+
# @return [String]
|
|
22362
|
+
#
|
|
22363
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RouterInputSettings AWS API Documentation
|
|
22364
|
+
#
|
|
22365
|
+
class RouterInputSettings < Struct.new(
|
|
22366
|
+
:destinations,
|
|
22367
|
+
:encryption_type,
|
|
22368
|
+
:secret_arn)
|
|
22369
|
+
SENSITIVE = []
|
|
22370
|
+
include Aws::Structure
|
|
22371
|
+
end
|
|
22372
|
+
|
|
22373
|
+
# This is the collection of settings that are used during the creation
|
|
22374
|
+
# of a MediaConnect router input.
|
|
22375
|
+
#
|
|
22376
|
+
# @!attribute [rw] destinations
|
|
22377
|
+
# Destinations for the input from MediaConnect Router. Provide one for
|
|
22378
|
+
# a single-pipeline input and two for a standard input.
|
|
22379
|
+
# @return [Array<Types::RouterDestinationSettings>]
|
|
22380
|
+
#
|
|
22381
|
+
# @!attribute [rw] encryption_type
|
|
22382
|
+
# Encryption configuration for MediaConnect router. When using
|
|
22383
|
+
# SECRETS\_MANAGER encryption, you must provide the ARN of the secret
|
|
22384
|
+
# used to encrypt data in transit. When using AUTOMATIC encryption, a
|
|
22385
|
+
# service-managed secret will be used instead.
|
|
22386
|
+
# @return [String]
|
|
22387
|
+
#
|
|
22388
|
+
# @!attribute [rw] secret_arn
|
|
22389
|
+
# ARN of the secret used to encrypt this input.
|
|
22390
|
+
# @return [String]
|
|
22391
|
+
#
|
|
22392
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RouterSettings AWS API Documentation
|
|
22393
|
+
#
|
|
22394
|
+
class RouterSettings < Struct.new(
|
|
22395
|
+
:destinations,
|
|
22396
|
+
:encryption_type,
|
|
22397
|
+
:secret_arn)
|
|
22398
|
+
SENSITIVE = []
|
|
22399
|
+
include Aws::Structure
|
|
22400
|
+
end
|
|
22401
|
+
|
|
22402
|
+
# When using MediaConnect Router as the source of a MediaLive input
|
|
22403
|
+
# there's a special handoff that occurs when a router output is
|
|
22404
|
+
# created. This group of settings is set on your behalf by the
|
|
22405
|
+
# MediaConnect Router service using this set of settings. This setting
|
|
22406
|
+
# object can only by used by that service.
|
|
22407
|
+
#
|
|
22408
|
+
# @!attribute [rw] router_arn
|
|
22409
|
+
# This is the arn of the MediaConnect Router resource being associated
|
|
22410
|
+
# with the MediaLive Input.
|
|
22411
|
+
# @return [String]
|
|
22412
|
+
#
|
|
22413
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SpecialRouterSettings AWS API Documentation
|
|
22414
|
+
#
|
|
22415
|
+
class SpecialRouterSettings < Struct.new(
|
|
22416
|
+
:router_arn)
|
|
22417
|
+
SENSITIVE = []
|
|
22418
|
+
include Aws::Structure
|
|
22419
|
+
end
|
|
22420
|
+
|
|
22234
22421
|
end
|
|
22235
22422
|
end
|
|
22236
22423
|
|
data/lib/aws-sdk-medialive.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1291,6 +1291,8 @@ module Aws
|
|
|
1291
1291
|
rec_601_settings: {
|
|
1292
1292
|
}?,
|
|
1293
1293
|
rec_709_settings: {
|
|
1294
|
+
}?,
|
|
1295
|
+
hlg_2020_settings: {
|
|
1294
1296
|
}?
|
|
1295
1297
|
}?,
|
|
1296
1298
|
filter_settings: {
|
|
@@ -1405,7 +1407,9 @@ module Aws
|
|
|
1405
1407
|
}?,
|
|
1406
1408
|
bitrate: ::Integer?,
|
|
1407
1409
|
rate_control_mode: ("CBR" | "QVBR")?,
|
|
1408
|
-
min_bitrate: ::Integer
|
|
1410
|
+
min_bitrate: ::Integer?,
|
|
1411
|
+
spatial_aq: ("DISABLED" | "ENABLED")?,
|
|
1412
|
+
temporal_aq: ("DISABLED" | "ENABLED")?
|
|
1409
1413
|
}?
|
|
1410
1414
|
}?,
|
|
1411
1415
|
height: ::Integer?,
|
|
@@ -1638,7 +1642,7 @@ module Aws
|
|
|
1638
1642
|
},
|
|
1639
1643
|
],
|
|
1640
1644
|
?tags: Hash[::String, ::String],
|
|
1641
|
-
?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI"),
|
|
1645
|
+
?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI" | "MEDIACONNECT_ROUTER"),
|
|
1642
1646
|
?vpc: {
|
|
1643
1647
|
security_group_ids: Array[::String]?,
|
|
1644
1648
|
subnet_ids: Array[::String]
|
|
@@ -1690,7 +1694,16 @@ module Aws
|
|
|
1690
1694
|
},
|
|
1691
1695
|
]?
|
|
1692
1696
|
},
|
|
1693
|
-
?sdi_sources: Array[::String]
|
|
1697
|
+
?sdi_sources: Array[::String],
|
|
1698
|
+
?router_settings: {
|
|
1699
|
+
destinations: Array[
|
|
1700
|
+
{
|
|
1701
|
+
availability_zone_name: ::String
|
|
1702
|
+
},
|
|
1703
|
+
]?,
|
|
1704
|
+
encryption_type: ("AUTOMATIC" | "SECRETS_MANAGER")?,
|
|
1705
|
+
secret_arn: ::String?
|
|
1706
|
+
}
|
|
1694
1707
|
) -> _CreateInputResponseSuccess
|
|
1695
1708
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInputResponseSuccess
|
|
1696
1709
|
|
|
@@ -1955,12 +1968,13 @@ module Aws
|
|
|
1955
1968
|
def sources: () -> ::Array[Types::InputSource]
|
|
1956
1969
|
def state: () -> ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
|
1957
1970
|
def tags: () -> ::Hash[::String, ::String]
|
|
1958
|
-
def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
|
|
1971
|
+
def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI" | "MEDIACONNECT_ROUTER")
|
|
1959
1972
|
def srt_settings: () -> Types::SrtSettings
|
|
1960
1973
|
def input_network_location: () -> ("AWS" | "ON_PREMISES")
|
|
1961
1974
|
def multicast_settings: () -> Types::MulticastSettings
|
|
1962
1975
|
def smpte_2110_receiver_group_settings: () -> Types::Smpte2110ReceiverGroupSettings
|
|
1963
1976
|
def sdi_sources: () -> ::Array[::String]
|
|
1977
|
+
def router_settings: () -> Types::RouterInputSettings
|
|
1964
1978
|
end
|
|
1965
1979
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_input-instance_method
|
|
1966
1980
|
def describe_input: (
|
|
@@ -3431,6 +3445,8 @@ module Aws
|
|
|
3431
3445
|
rec_601_settings: {
|
|
3432
3446
|
}?,
|
|
3433
3447
|
rec_709_settings: {
|
|
3448
|
+
}?,
|
|
3449
|
+
hlg_2020_settings: {
|
|
3434
3450
|
}?
|
|
3435
3451
|
}?,
|
|
3436
3452
|
filter_settings: {
|
|
@@ -3545,7 +3561,9 @@ module Aws
|
|
|
3545
3561
|
}?,
|
|
3546
3562
|
bitrate: ::Integer?,
|
|
3547
3563
|
rate_control_mode: ("CBR" | "QVBR")?,
|
|
3548
|
-
min_bitrate: ::Integer
|
|
3564
|
+
min_bitrate: ::Integer?,
|
|
3565
|
+
spatial_aq: ("DISABLED" | "ENABLED")?,
|
|
3566
|
+
temporal_aq: ("DISABLED" | "ENABLED")?
|
|
3549
3567
|
}?
|
|
3550
3568
|
}?,
|
|
3551
3569
|
height: ::Integer?,
|
|
@@ -3859,7 +3877,10 @@ module Aws
|
|
|
3859
3877
|
},
|
|
3860
3878
|
]?
|
|
3861
3879
|
},
|
|
3862
|
-
?sdi_sources: Array[::String]
|
|
3880
|
+
?sdi_sources: Array[::String],
|
|
3881
|
+
?special_router_settings: {
|
|
3882
|
+
router_arn: ::String?
|
|
3883
|
+
}
|
|
3863
3884
|
) -> _UpdateInputResponseSuccess
|
|
3864
3885
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInputResponseSuccess
|
|
3865
3886
|
|
data/sig/types.rbs
CHANGED
|
@@ -620,13 +620,14 @@ module Aws::MediaLive
|
|
|
620
620
|
attr_accessor role_arn: ::String
|
|
621
621
|
attr_accessor sources: ::Array[Types::InputSourceRequest]
|
|
622
622
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
623
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
|
|
623
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI" | "MEDIACONNECT_ROUTER")
|
|
624
624
|
attr_accessor vpc: Types::InputVpcRequest
|
|
625
625
|
attr_accessor srt_settings: Types::SrtSettingsRequest
|
|
626
626
|
attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
|
|
627
627
|
attr_accessor multicast_settings: Types::MulticastSettingsCreateRequest
|
|
628
628
|
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
|
629
629
|
attr_accessor sdi_sources: ::Array[::String]
|
|
630
|
+
attr_accessor router_settings: Types::RouterSettings
|
|
630
631
|
SENSITIVE: []
|
|
631
632
|
end
|
|
632
633
|
|
|
@@ -640,13 +641,14 @@ module Aws::MediaLive
|
|
|
640
641
|
attr_accessor role_arn: ::String
|
|
641
642
|
attr_accessor sources: ::Array[Types::InputSourceRequest]
|
|
642
643
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
643
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
|
|
644
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI" | "MEDIACONNECT_ROUTER")
|
|
644
645
|
attr_accessor vpc: Types::InputVpcRequest
|
|
645
646
|
attr_accessor srt_settings: Types::SrtSettingsRequest
|
|
646
647
|
attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
|
|
647
648
|
attr_accessor multicast_settings: Types::MulticastSettingsCreateRequest
|
|
648
649
|
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
|
649
650
|
attr_accessor sdi_sources: ::Array[::String]
|
|
651
|
+
attr_accessor router_settings: Types::RouterSettings
|
|
650
652
|
SENSITIVE: []
|
|
651
653
|
end
|
|
652
654
|
|
|
@@ -982,12 +984,13 @@ module Aws::MediaLive
|
|
|
982
984
|
attr_accessor sources: ::Array[Types::InputSource]
|
|
983
985
|
attr_accessor state: ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
|
984
986
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
985
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
|
|
987
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI" | "MEDIACONNECT_ROUTER")
|
|
986
988
|
attr_accessor srt_settings: Types::SrtSettings
|
|
987
989
|
attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
|
|
988
990
|
attr_accessor multicast_settings: Types::MulticastSettings
|
|
989
991
|
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
|
990
992
|
attr_accessor sdi_sources: ::Array[::String]
|
|
993
|
+
attr_accessor router_settings: Types::RouterInputSettings
|
|
991
994
|
SENSITIVE: []
|
|
992
995
|
end
|
|
993
996
|
|
|
@@ -1427,6 +1430,7 @@ module Aws::MediaLive
|
|
|
1427
1430
|
attr_accessor hdr_10_settings: Types::Hdr10Settings
|
|
1428
1431
|
attr_accessor rec_601_settings: Types::Rec601Settings
|
|
1429
1432
|
attr_accessor rec_709_settings: Types::Rec709Settings
|
|
1433
|
+
attr_accessor hlg_2020_settings: Types::Hlg2020Settings
|
|
1430
1434
|
SENSITIVE: []
|
|
1431
1435
|
end
|
|
1432
1436
|
|
|
@@ -1644,12 +1648,13 @@ module Aws::MediaLive
|
|
|
1644
1648
|
attr_accessor sources: ::Array[Types::InputSource]
|
|
1645
1649
|
attr_accessor state: ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
|
1646
1650
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1647
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
|
|
1651
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI" | "MEDIACONNECT_ROUTER")
|
|
1648
1652
|
attr_accessor srt_settings: Types::SrtSettings
|
|
1649
1653
|
attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
|
|
1650
1654
|
attr_accessor multicast_settings: Types::MulticastSettings
|
|
1651
1655
|
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
|
1652
1656
|
attr_accessor sdi_sources: ::Array[::String]
|
|
1657
|
+
attr_accessor router_settings: Types::RouterInputSettings
|
|
1653
1658
|
SENSITIVE: []
|
|
1654
1659
|
end
|
|
1655
1660
|
|
|
@@ -3319,6 +3324,7 @@ module Aws::MediaLive
|
|
|
3319
3324
|
attr_accessor multicast_settings: Types::MulticastSettingsUpdateRequest
|
|
3320
3325
|
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
|
3321
3326
|
attr_accessor sdi_sources: ::Array[::String]
|
|
3327
|
+
attr_accessor special_router_settings: Types::SpecialRouterSettings
|
|
3322
3328
|
SENSITIVE: []
|
|
3323
3329
|
end
|
|
3324
3330
|
|
|
@@ -3372,6 +3378,7 @@ module Aws::MediaLive
|
|
|
3372
3378
|
attr_accessor multicast_settings: Types::MulticastSettingsUpdateRequest
|
|
3373
3379
|
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
|
3374
3380
|
attr_accessor sdi_sources: ::Array[::String]
|
|
3381
|
+
attr_accessor special_router_settings: Types::SpecialRouterSettings
|
|
3375
3382
|
SENSITIVE: []
|
|
3376
3383
|
end
|
|
3377
3384
|
|
|
@@ -4772,6 +4779,8 @@ module Aws::MediaLive
|
|
|
4772
4779
|
attr_accessor bitrate: ::Integer
|
|
4773
4780
|
attr_accessor rate_control_mode: ("CBR" | "QVBR")
|
|
4774
4781
|
attr_accessor min_bitrate: ::Integer
|
|
4782
|
+
attr_accessor spatial_aq: ("DISABLED" | "ENABLED")
|
|
4783
|
+
attr_accessor temporal_aq: ("DISABLED" | "ENABLED")
|
|
4775
4784
|
SENSITIVE: []
|
|
4776
4785
|
end
|
|
4777
4786
|
|
|
@@ -5790,5 +5799,38 @@ module Aws::MediaLive
|
|
|
5790
5799
|
attr_accessor state: ("SET" | "CLEARED")
|
|
5791
5800
|
SENSITIVE: []
|
|
5792
5801
|
end
|
|
5802
|
+
|
|
5803
|
+
class Hlg2020Settings < Aws::EmptyStructure
|
|
5804
|
+
end
|
|
5805
|
+
|
|
5806
|
+
class RouterDestination
|
|
5807
|
+
attr_accessor availability_zone_name: ::String
|
|
5808
|
+
attr_accessor router_output_arn: ::String
|
|
5809
|
+
SENSITIVE: []
|
|
5810
|
+
end
|
|
5811
|
+
|
|
5812
|
+
class RouterDestinationSettings
|
|
5813
|
+
attr_accessor availability_zone_name: ::String
|
|
5814
|
+
SENSITIVE: []
|
|
5815
|
+
end
|
|
5816
|
+
|
|
5817
|
+
class RouterInputSettings
|
|
5818
|
+
attr_accessor destinations: ::Array[Types::RouterDestination]
|
|
5819
|
+
attr_accessor encryption_type: ("AUTOMATIC" | "SECRETS_MANAGER")
|
|
5820
|
+
attr_accessor secret_arn: ::String
|
|
5821
|
+
SENSITIVE: []
|
|
5822
|
+
end
|
|
5823
|
+
|
|
5824
|
+
class RouterSettings
|
|
5825
|
+
attr_accessor destinations: ::Array[Types::RouterDestinationSettings]
|
|
5826
|
+
attr_accessor encryption_type: ("AUTOMATIC" | "SECRETS_MANAGER")
|
|
5827
|
+
attr_accessor secret_arn: ::String
|
|
5828
|
+
SENSITIVE: []
|
|
5829
|
+
end
|
|
5830
|
+
|
|
5831
|
+
class SpecialRouterSettings
|
|
5832
|
+
attr_accessor router_arn: ::String
|
|
5833
|
+
SENSITIVE: []
|
|
5834
|
+
end
|
|
5793
5835
|
end
|
|
5794
5836
|
end
|