aws-sdk-medialive 1.41.0 → 1.46.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 +5 -5
- data/lib/aws-sdk-medialive.rb +1 -1
- data/lib/aws-sdk-medialive/client.rb +422 -45
- data/lib/aws-sdk-medialive/client_api.rb +235 -9
- data/lib/aws-sdk-medialive/resource.rb +1 -7
- data/lib/aws-sdk-medialive/types.rb +926 -48
- data/lib/aws-sdk-medialive/waiters.rb +231 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 8c25ed3edd48c9a163c66e09cdc790aa782971bc6f47eab86fa5582fe2cb9a0e
|
4
|
+
data.tar.gz: 9372994e100535b6f18c43e4d7c287b725d20d8a77e5d1b71cb187933a64a196
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a74622cc5d5808d0ce1c3c2cced40a874f9615091600fcc397007e325bfa142f92a7982f5dd3161cc9f98d15defadce5c272efb3e00d486fdd18d6705fb69632
|
7
|
+
data.tar.gz: 4bb8b024fe5a437bf2f34b80c753f72a3de3ae681c890680c8e32f681bad935a7cea696f7b1dd44a57db60579447700f62fde32e3ad2ea2fa84f9cd361c7a2c1
|
data/lib/aws-sdk-medialive.rb
CHANGED
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:medialive)
|
|
32
32
|
module Aws::MediaLive
|
33
33
|
# An API client for MediaLive. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
34
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
35
|
+
# client = Aws::MediaLive::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
40
|
#
|
41
41
|
# For details on configuring region and credentials see
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -105,7 +105,7 @@ module Aws::MediaLive
|
|
105
105
|
# @option options [required, String] :region
|
106
106
|
# The AWS region to connect to. The configured `:region` is
|
107
107
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
108
|
+
# a default `:region` is searched for in the following locations:
|
109
109
|
#
|
110
110
|
# * `Aws.config[:region]`
|
111
111
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +161,7 @@ module Aws::MediaLive
|
|
161
161
|
# @option options [String] :endpoint
|
162
162
|
# The client endpoint is normally constructed from the `:region`
|
163
163
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
164
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
165
165
|
#
|
166
166
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
167
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +176,7 @@ module Aws::MediaLive
|
|
176
176
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
177
|
#
|
178
178
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
179
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
180
|
#
|
181
181
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
182
|
# The log formatter.
|
@@ -229,15 +229,19 @@ module Aws::MediaLive
|
|
229
229
|
#
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
232
|
+
#
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
234
|
+
# no retry mode is provided.
|
235
|
+
#
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
#
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
243
|
+
# in the future.
|
244
|
+
#
|
241
245
|
#
|
242
246
|
# @option options [String] :secret_access_key
|
243
247
|
#
|
@@ -265,8 +269,7 @@ module Aws::MediaLive
|
|
265
269
|
#
|
266
270
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
271
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
272
|
+
# safely be set per-request on the session.
|
270
273
|
#
|
271
274
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
275
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +281,7 @@ module Aws::MediaLive
|
|
278
281
|
# request body. This option has no effect unless the request has
|
279
282
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
283
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
284
|
+
# request on the session.
|
282
285
|
#
|
283
286
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
287
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -943,7 +946,7 @@ module Aws::MediaLive
|
|
943
946
|
# restart_delay: 1,
|
944
947
|
# segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
|
945
948
|
# send_delay_ms: 1,
|
946
|
-
# sparse_track_type: "NONE", # accepts NONE, SCTE_35
|
949
|
+
# sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
|
947
950
|
# stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
|
948
951
|
# timestamp_offset: "__string",
|
949
952
|
# timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
|
@@ -1054,6 +1057,8 @@ module Aws::MediaLive
|
|
1054
1057
|
# },
|
1055
1058
|
# fmp_4_hls_settings: {
|
1056
1059
|
# audio_rendition_sets: "__string",
|
1060
|
+
# nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
|
1061
|
+
# timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
|
1057
1062
|
# },
|
1058
1063
|
# standard_hls_settings: {
|
1059
1064
|
# audio_rendition_sets: "__string",
|
@@ -1206,8 +1211,15 @@ module Aws::MediaLive
|
|
1206
1211
|
# },
|
1207
1212
|
# },
|
1208
1213
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
1214
|
+
# filter_settings: {
|
1215
|
+
# temporal_filter_settings: {
|
1216
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
1217
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
1218
|
+
# },
|
1219
|
+
# },
|
1209
1220
|
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
1210
1221
|
# flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
|
1222
|
+
# force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
|
1211
1223
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
1212
1224
|
# framerate_denominator: 1,
|
1213
1225
|
# framerate_numerator: 1,
|
@@ -1225,6 +1237,7 @@ module Aws::MediaLive
|
|
1225
1237
|
# par_denominator: 1,
|
1226
1238
|
# par_numerator: 1,
|
1227
1239
|
# profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
1240
|
+
# quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
|
1228
1241
|
# qvbr_quality_level: 1,
|
1229
1242
|
# rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
|
1230
1243
|
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
@@ -1290,6 +1303,10 @@ module Aws::MediaLive
|
|
1290
1303
|
# },
|
1291
1304
|
# input_attachments: [
|
1292
1305
|
# {
|
1306
|
+
# automatic_input_failover_settings: {
|
1307
|
+
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
1308
|
+
# secondary_input_id: "__string", # required
|
1309
|
+
# },
|
1293
1310
|
# input_attachment_name: "__string",
|
1294
1311
|
# input_id: "__string",
|
1295
1312
|
# input_settings: {
|
@@ -1304,6 +1321,13 @@ module Aws::MediaLive
|
|
1304
1321
|
# audio_pid_selection: {
|
1305
1322
|
# pid: 1, # required
|
1306
1323
|
# },
|
1324
|
+
# audio_track_selection: {
|
1325
|
+
# tracks: [ # required
|
1326
|
+
# {
|
1327
|
+
# track: 1, # required
|
1328
|
+
# },
|
1329
|
+
# ],
|
1330
|
+
# },
|
1307
1331
|
# },
|
1308
1332
|
# },
|
1309
1333
|
# ],
|
@@ -1349,6 +1373,7 @@ module Aws::MediaLive
|
|
1349
1373
|
# },
|
1350
1374
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
1351
1375
|
# },
|
1376
|
+
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
1352
1377
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
1353
1378
|
# video_selector: {
|
1354
1379
|
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
|
@@ -1619,7 +1644,7 @@ module Aws::MediaLive
|
|
1619
1644
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.restart_delay #=> Integer
|
1620
1645
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.segmentation_mode #=> String, one of "USE_INPUT_SEGMENTATION", "USE_SEGMENT_DURATION"
|
1621
1646
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.send_delay_ms #=> Integer
|
1622
|
-
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35"
|
1647
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35", "SCTE_35_WITHOUT_SEGMENTATION"
|
1623
1648
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
1624
1649
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
1625
1650
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
@@ -1701,6 +1726,8 @@ module Aws::MediaLive
|
|
1701
1726
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.audio_track_type #=> String, one of "ALTERNATE_AUDIO_AUTO_SELECT", "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", "ALTERNATE_AUDIO_NOT_AUTO_SELECT", "AUDIO_ONLY_VARIANT_STREAM"
|
1702
1727
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.segment_type #=> String, one of "AAC", "FMP4"
|
1703
1728
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.audio_rendition_sets #=> String
|
1729
|
+
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.nielsen_id_3_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
1730
|
+
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.timed_metadata_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
1704
1731
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.audio_rendition_sets #=> String
|
1705
1732
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
1706
1733
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_pids #=> String
|
@@ -1798,8 +1825,11 @@ module Aws::MediaLive
|
|
1798
1825
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_size #=> Integer
|
1799
1826
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
1800
1827
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
|
1828
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
1829
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "AUTO", "STRENGTH_1", "STRENGTH_2", "STRENGTH_3", "STRENGTH_4", "STRENGTH_5", "STRENGTH_6", "STRENGTH_7", "STRENGTH_8", "STRENGTH_9", "STRENGTH_10", "STRENGTH_11", "STRENGTH_12", "STRENGTH_13", "STRENGTH_14", "STRENGTH_15", "STRENGTH_16"
|
1801
1830
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
|
1802
1831
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
|
1832
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.force_field_pictures #=> String, one of "DISABLED", "ENABLED"
|
1803
1833
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
|
1804
1834
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_denominator #=> Integer
|
1805
1835
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_numerator #=> Integer
|
@@ -1817,6 +1847,7 @@ module Aws::MediaLive
|
|
1817
1847
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_denominator #=> Integer
|
1818
1848
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_numerator #=> Integer
|
1819
1849
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.profile #=> String, one of "BASELINE", "HIGH", "HIGH_10BIT", "HIGH_422", "HIGH_422_10BIT", "MAIN"
|
1850
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.quality_level #=> String, one of "ENHANCED_QUALITY", "STANDARD_QUALITY"
|
1820
1851
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.qvbr_quality_level #=> Integer
|
1821
1852
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR", "VBR"
|
1822
1853
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
@@ -1865,6 +1896,8 @@ module Aws::MediaLive
|
|
1865
1896
|
# resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
|
1866
1897
|
# resp.channel.id #=> String
|
1867
1898
|
# resp.channel.input_attachments #=> Array
|
1899
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
1900
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
1868
1901
|
# resp.channel.input_attachments[0].input_attachment_name #=> String
|
1869
1902
|
# resp.channel.input_attachments[0].input_id #=> String
|
1870
1903
|
# resp.channel.input_attachments[0].input_settings.audio_selectors #=> Array
|
@@ -1872,6 +1905,8 @@ module Aws::MediaLive
|
|
1872
1905
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
1873
1906
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
1874
1907
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
1908
|
+
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks #=> Array
|
1909
|
+
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks[0].track #=> Integer
|
1875
1910
|
# resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
|
1876
1911
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
1877
1912
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
@@ -1893,6 +1928,7 @@ module Aws::MediaLive
|
|
1893
1928
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
1894
1929
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
1895
1930
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
1931
|
+
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
1896
1932
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
1897
1933
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
|
1898
1934
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
|
@@ -1926,6 +1962,8 @@ module Aws::MediaLive
|
|
1926
1962
|
#
|
1927
1963
|
# @option params [Array<Types::InputDestinationRequest>] :destinations
|
1928
1964
|
#
|
1965
|
+
# @option params [Array<Types::InputDeviceSettings>] :input_devices
|
1966
|
+
#
|
1929
1967
|
# @option params [Array<String>] :input_security_groups
|
1930
1968
|
#
|
1931
1969
|
# @option params [Array<Types::MediaConnectFlowRequest>] :media_connect_flows
|
@@ -1963,6 +2001,11 @@ module Aws::MediaLive
|
|
1963
2001
|
# stream_name: "__string",
|
1964
2002
|
# },
|
1965
2003
|
# ],
|
2004
|
+
# input_devices: [
|
2005
|
+
# {
|
2006
|
+
# id: "__string",
|
2007
|
+
# },
|
2008
|
+
# ],
|
1966
2009
|
# input_security_groups: ["__string"],
|
1967
2010
|
# media_connect_flows: [
|
1968
2011
|
# {
|
@@ -1982,7 +2025,7 @@ module Aws::MediaLive
|
|
1982
2025
|
# tags: {
|
1983
2026
|
# "__string" => "__string",
|
1984
2027
|
# },
|
1985
|
-
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT
|
2028
|
+
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE
|
1986
2029
|
# vpc: {
|
1987
2030
|
# security_group_ids: ["__string"],
|
1988
2031
|
# subnet_ids: ["__string"], # required
|
@@ -2002,6 +2045,8 @@ module Aws::MediaLive
|
|
2002
2045
|
# resp.input.destinations[0].vpc.network_interface_id #=> String
|
2003
2046
|
# resp.input.id #=> String
|
2004
2047
|
# resp.input.input_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
2048
|
+
# resp.input.input_devices #=> Array
|
2049
|
+
# resp.input.input_devices[0].id #=> String
|
2005
2050
|
# resp.input.input_source_type #=> String, one of "STATIC", "DYNAMIC"
|
2006
2051
|
# resp.input.media_connect_flows #=> Array
|
2007
2052
|
# resp.input.media_connect_flows[0].flow_arn #=> String
|
@@ -2016,7 +2061,7 @@ module Aws::MediaLive
|
|
2016
2061
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2017
2062
|
# resp.input.tags #=> Hash
|
2018
2063
|
# resp.input.tags["__string"] #=> String
|
2019
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT"
|
2064
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
|
2020
2065
|
#
|
2021
2066
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
2022
2067
|
#
|
@@ -2506,7 +2551,7 @@ module Aws::MediaLive
|
|
2506
2551
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.restart_delay #=> Integer
|
2507
2552
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.segmentation_mode #=> String, one of "USE_INPUT_SEGMENTATION", "USE_SEGMENT_DURATION"
|
2508
2553
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.send_delay_ms #=> Integer
|
2509
|
-
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35"
|
2554
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35", "SCTE_35_WITHOUT_SEGMENTATION"
|
2510
2555
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
2511
2556
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
2512
2557
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
@@ -2588,6 +2633,8 @@ module Aws::MediaLive
|
|
2588
2633
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.audio_track_type #=> String, one of "ALTERNATE_AUDIO_AUTO_SELECT", "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", "ALTERNATE_AUDIO_NOT_AUTO_SELECT", "AUDIO_ONLY_VARIANT_STREAM"
|
2589
2634
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.segment_type #=> String, one of "AAC", "FMP4"
|
2590
2635
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.audio_rendition_sets #=> String
|
2636
|
+
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.nielsen_id_3_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
2637
|
+
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.timed_metadata_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
2591
2638
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.audio_rendition_sets #=> String
|
2592
2639
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
2593
2640
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_pids #=> String
|
@@ -2685,8 +2732,11 @@ module Aws::MediaLive
|
|
2685
2732
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_size #=> Integer
|
2686
2733
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
2687
2734
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
|
2735
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
2736
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "AUTO", "STRENGTH_1", "STRENGTH_2", "STRENGTH_3", "STRENGTH_4", "STRENGTH_5", "STRENGTH_6", "STRENGTH_7", "STRENGTH_8", "STRENGTH_9", "STRENGTH_10", "STRENGTH_11", "STRENGTH_12", "STRENGTH_13", "STRENGTH_14", "STRENGTH_15", "STRENGTH_16"
|
2688
2737
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
|
2689
2738
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
|
2739
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.force_field_pictures #=> String, one of "DISABLED", "ENABLED"
|
2690
2740
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
|
2691
2741
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_denominator #=> Integer
|
2692
2742
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_numerator #=> Integer
|
@@ -2704,6 +2754,7 @@ module Aws::MediaLive
|
|
2704
2754
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_denominator #=> Integer
|
2705
2755
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_numerator #=> Integer
|
2706
2756
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.profile #=> String, one of "BASELINE", "HIGH", "HIGH_10BIT", "HIGH_422", "HIGH_422_10BIT", "MAIN"
|
2757
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.quality_level #=> String, one of "ENHANCED_QUALITY", "STANDARD_QUALITY"
|
2707
2758
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.qvbr_quality_level #=> Integer
|
2708
2759
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR", "VBR"
|
2709
2760
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
@@ -2752,6 +2803,8 @@ module Aws::MediaLive
|
|
2752
2803
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
2753
2804
|
# resp.id #=> String
|
2754
2805
|
# resp.input_attachments #=> Array
|
2806
|
+
# resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
2807
|
+
# resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
2755
2808
|
# resp.input_attachments[0].input_attachment_name #=> String
|
2756
2809
|
# resp.input_attachments[0].input_id #=> String
|
2757
2810
|
# resp.input_attachments[0].input_settings.audio_selectors #=> Array
|
@@ -2759,6 +2812,8 @@ module Aws::MediaLive
|
|
2759
2812
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
2760
2813
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
2761
2814
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
2815
|
+
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks #=> Array
|
2816
|
+
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks[0].track #=> Integer
|
2762
2817
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
2763
2818
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
2764
2819
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
@@ -2780,6 +2835,7 @@ module Aws::MediaLive
|
|
2780
2835
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
2781
2836
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
2782
2837
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
2838
|
+
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
2783
2839
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
2784
2840
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
|
2785
2841
|
# resp.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
|
@@ -3341,7 +3397,7 @@ module Aws::MediaLive
|
|
3341
3397
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.restart_delay #=> Integer
|
3342
3398
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.segmentation_mode #=> String, one of "USE_INPUT_SEGMENTATION", "USE_SEGMENT_DURATION"
|
3343
3399
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.send_delay_ms #=> Integer
|
3344
|
-
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35"
|
3400
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35", "SCTE_35_WITHOUT_SEGMENTATION"
|
3345
3401
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
3346
3402
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
3347
3403
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
@@ -3423,6 +3479,8 @@ module Aws::MediaLive
|
|
3423
3479
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.audio_track_type #=> String, one of "ALTERNATE_AUDIO_AUTO_SELECT", "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", "ALTERNATE_AUDIO_NOT_AUTO_SELECT", "AUDIO_ONLY_VARIANT_STREAM"
|
3424
3480
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.segment_type #=> String, one of "AAC", "FMP4"
|
3425
3481
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.audio_rendition_sets #=> String
|
3482
|
+
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.nielsen_id_3_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
3483
|
+
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.timed_metadata_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
3426
3484
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.audio_rendition_sets #=> String
|
3427
3485
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
3428
3486
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_pids #=> String
|
@@ -3520,8 +3578,11 @@ module Aws::MediaLive
|
|
3520
3578
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_size #=> Integer
|
3521
3579
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
3522
3580
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
|
3581
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
3582
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "AUTO", "STRENGTH_1", "STRENGTH_2", "STRENGTH_3", "STRENGTH_4", "STRENGTH_5", "STRENGTH_6", "STRENGTH_7", "STRENGTH_8", "STRENGTH_9", "STRENGTH_10", "STRENGTH_11", "STRENGTH_12", "STRENGTH_13", "STRENGTH_14", "STRENGTH_15", "STRENGTH_16"
|
3523
3583
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
|
3524
3584
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
|
3585
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.force_field_pictures #=> String, one of "DISABLED", "ENABLED"
|
3525
3586
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
|
3526
3587
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_denominator #=> Integer
|
3527
3588
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_numerator #=> Integer
|
@@ -3539,6 +3600,7 @@ module Aws::MediaLive
|
|
3539
3600
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_denominator #=> Integer
|
3540
3601
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_numerator #=> Integer
|
3541
3602
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.profile #=> String, one of "BASELINE", "HIGH", "HIGH_10BIT", "HIGH_422", "HIGH_422_10BIT", "MAIN"
|
3603
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.quality_level #=> String, one of "ENHANCED_QUALITY", "STANDARD_QUALITY"
|
3542
3604
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.qvbr_quality_level #=> Integer
|
3543
3605
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR", "VBR"
|
3544
3606
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
@@ -3587,6 +3649,8 @@ module Aws::MediaLive
|
|
3587
3649
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
3588
3650
|
# resp.id #=> String
|
3589
3651
|
# resp.input_attachments #=> Array
|
3652
|
+
# resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
3653
|
+
# resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
3590
3654
|
# resp.input_attachments[0].input_attachment_name #=> String
|
3591
3655
|
# resp.input_attachments[0].input_id #=> String
|
3592
3656
|
# resp.input_attachments[0].input_settings.audio_selectors #=> Array
|
@@ -3594,6 +3658,8 @@ module Aws::MediaLive
|
|
3594
3658
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
3595
3659
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
3596
3660
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
3661
|
+
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks #=> Array
|
3662
|
+
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks[0].track #=> Integer
|
3597
3663
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
3598
3664
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
3599
3665
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
@@ -3615,6 +3681,7 @@ module Aws::MediaLive
|
|
3615
3681
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
3616
3682
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
3617
3683
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
3684
|
+
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
3618
3685
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
3619
3686
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
|
3620
3687
|
# resp.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
|
@@ -3635,6 +3702,14 @@ module Aws::MediaLive
|
|
3635
3702
|
# resp.tags #=> Hash
|
3636
3703
|
# resp.tags["__string"] #=> String
|
3637
3704
|
#
|
3705
|
+
#
|
3706
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
3707
|
+
#
|
3708
|
+
# * channel_created
|
3709
|
+
# * channel_deleted
|
3710
|
+
# * channel_running
|
3711
|
+
# * channel_stopped
|
3712
|
+
#
|
3638
3713
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeChannel AWS API Documentation
|
3639
3714
|
#
|
3640
3715
|
# @overload describe_channel(params = {})
|
@@ -3655,6 +3730,7 @@ module Aws::MediaLive
|
|
3655
3730
|
# * {Types::DescribeInputResponse#destinations #destinations} => Array<Types::InputDestination>
|
3656
3731
|
# * {Types::DescribeInputResponse#id #id} => String
|
3657
3732
|
# * {Types::DescribeInputResponse#input_class #input_class} => String
|
3733
|
+
# * {Types::DescribeInputResponse#input_devices #input_devices} => Array<Types::InputDeviceSettings>
|
3658
3734
|
# * {Types::DescribeInputResponse#input_source_type #input_source_type} => String
|
3659
3735
|
# * {Types::DescribeInputResponse#media_connect_flows #media_connect_flows} => Array<Types::MediaConnectFlow>
|
3660
3736
|
# * {Types::DescribeInputResponse#name #name} => String
|
@@ -3684,6 +3760,8 @@ module Aws::MediaLive
|
|
3684
3760
|
# resp.destinations[0].vpc.network_interface_id #=> String
|
3685
3761
|
# resp.id #=> String
|
3686
3762
|
# resp.input_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
3763
|
+
# resp.input_devices #=> Array
|
3764
|
+
# resp.input_devices[0].id #=> String
|
3687
3765
|
# resp.input_source_type #=> String, one of "STATIC", "DYNAMIC"
|
3688
3766
|
# resp.media_connect_flows #=> Array
|
3689
3767
|
# resp.media_connect_flows[0].flow_arn #=> String
|
@@ -3698,7 +3776,14 @@ module Aws::MediaLive
|
|
3698
3776
|
# resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
3699
3777
|
# resp.tags #=> Hash
|
3700
3778
|
# resp.tags["__string"] #=> String
|
3701
|
-
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT"
|
3779
|
+
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
|
3780
|
+
#
|
3781
|
+
#
|
3782
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
3783
|
+
#
|
3784
|
+
# * input_attached
|
3785
|
+
# * input_deleted
|
3786
|
+
# * input_detached
|
3702
3787
|
#
|
3703
3788
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInput AWS API Documentation
|
3704
3789
|
#
|
@@ -3709,6 +3794,63 @@ module Aws::MediaLive
|
|
3709
3794
|
req.send_request(options)
|
3710
3795
|
end
|
3711
3796
|
|
3797
|
+
# Gets the details for the input device
|
3798
|
+
#
|
3799
|
+
# @option params [required, String] :input_device_id
|
3800
|
+
#
|
3801
|
+
# @return [Types::DescribeInputDeviceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3802
|
+
#
|
3803
|
+
# * {Types::DescribeInputDeviceResponse#arn #arn} => String
|
3804
|
+
# * {Types::DescribeInputDeviceResponse#connection_state #connection_state} => String
|
3805
|
+
# * {Types::DescribeInputDeviceResponse#device_settings_sync_state #device_settings_sync_state} => String
|
3806
|
+
# * {Types::DescribeInputDeviceResponse#hd_device_settings #hd_device_settings} => Types::InputDeviceHdSettings
|
3807
|
+
# * {Types::DescribeInputDeviceResponse#id #id} => String
|
3808
|
+
# * {Types::DescribeInputDeviceResponse#mac_address #mac_address} => String
|
3809
|
+
# * {Types::DescribeInputDeviceResponse#name #name} => String
|
3810
|
+
# * {Types::DescribeInputDeviceResponse#network_settings #network_settings} => Types::InputDeviceNetworkSettings
|
3811
|
+
# * {Types::DescribeInputDeviceResponse#serial_number #serial_number} => String
|
3812
|
+
# * {Types::DescribeInputDeviceResponse#type #type} => String
|
3813
|
+
#
|
3814
|
+
# @example Request syntax with placeholder values
|
3815
|
+
#
|
3816
|
+
# resp = client.describe_input_device({
|
3817
|
+
# input_device_id: "__string", # required
|
3818
|
+
# })
|
3819
|
+
#
|
3820
|
+
# @example Response structure
|
3821
|
+
#
|
3822
|
+
# resp.arn #=> String
|
3823
|
+
# resp.connection_state #=> String, one of "DISCONNECTED", "CONNECTED"
|
3824
|
+
# resp.device_settings_sync_state #=> String, one of "SYNCED", "SYNCING"
|
3825
|
+
# resp.hd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
3826
|
+
# resp.hd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
3827
|
+
# resp.hd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
3828
|
+
# resp.hd_device_settings.framerate #=> Float
|
3829
|
+
# resp.hd_device_settings.height #=> Integer
|
3830
|
+
# resp.hd_device_settings.max_bitrate #=> Integer
|
3831
|
+
# resp.hd_device_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
3832
|
+
# resp.hd_device_settings.width #=> Integer
|
3833
|
+
# resp.id #=> String
|
3834
|
+
# resp.mac_address #=> String
|
3835
|
+
# resp.name #=> String
|
3836
|
+
# resp.network_settings.dns_addresses #=> Array
|
3837
|
+
# resp.network_settings.dns_addresses[0] #=> String
|
3838
|
+
# resp.network_settings.gateway #=> String
|
3839
|
+
# resp.network_settings.ip_address #=> String
|
3840
|
+
# resp.network_settings.ip_scheme #=> String, one of "STATIC", "DHCP"
|
3841
|
+
# resp.network_settings.subnet_mask #=> String
|
3842
|
+
# resp.serial_number #=> String
|
3843
|
+
# resp.type #=> String, one of "HD"
|
3844
|
+
#
|
3845
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDevice AWS API Documentation
|
3846
|
+
#
|
3847
|
+
# @overload describe_input_device(params = {})
|
3848
|
+
# @param [Hash] params ({})
|
3849
|
+
def describe_input_device(params = {}, options = {})
|
3850
|
+
req = build_request(:describe_input_device, params)
|
3851
|
+
req.send_request(options)
|
3852
|
+
end
|
3853
|
+
|
3712
3854
|
# Produces a summary of an Input Security Group
|
3713
3855
|
#
|
3714
3856
|
# @option params [required, String] :input_security_group_id
|
@@ -3791,6 +3933,14 @@ module Aws::MediaLive
|
|
3791
3933
|
# resp.tags #=> Hash
|
3792
3934
|
# resp.tags["__string"] #=> String
|
3793
3935
|
#
|
3936
|
+
#
|
3937
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
3938
|
+
#
|
3939
|
+
# * multiplex_created
|
3940
|
+
# * multiplex_deleted
|
3941
|
+
# * multiplex_running
|
3942
|
+
# * multiplex_stopped
|
3943
|
+
#
|
3794
3944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeMultiplex AWS API Documentation
|
3795
3945
|
#
|
3796
3946
|
# @overload describe_multiplex(params = {})
|
@@ -3994,6 +4144,8 @@ module Aws::MediaLive
|
|
3994
4144
|
# * {Types::DescribeScheduleResponse#next_token #next_token} => String
|
3995
4145
|
# * {Types::DescribeScheduleResponse#schedule_actions #schedule_actions} => Array<Types::ScheduleAction>
|
3996
4146
|
#
|
4147
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4148
|
+
#
|
3997
4149
|
# @example Request syntax with placeholder values
|
3998
4150
|
#
|
3999
4151
|
# resp = client.describe_schedule({
|
@@ -4074,6 +4226,8 @@ module Aws::MediaLive
|
|
4074
4226
|
# * {Types::ListChannelsResponse#channels #channels} => Array<Types::ChannelSummary>
|
4075
4227
|
# * {Types::ListChannelsResponse#next_token #next_token} => String
|
4076
4228
|
#
|
4229
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4230
|
+
#
|
4077
4231
|
# @example Request syntax with placeholder values
|
4078
4232
|
#
|
4079
4233
|
# resp = client.list_channels({
|
@@ -4101,6 +4255,8 @@ module Aws::MediaLive
|
|
4101
4255
|
# resp.channels[0].egress_endpoints[0].source_ip #=> String
|
4102
4256
|
# resp.channels[0].id #=> String
|
4103
4257
|
# resp.channels[0].input_attachments #=> Array
|
4258
|
+
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
4259
|
+
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
4104
4260
|
# resp.channels[0].input_attachments[0].input_attachment_name #=> String
|
4105
4261
|
# resp.channels[0].input_attachments[0].input_id #=> String
|
4106
4262
|
# resp.channels[0].input_attachments[0].input_settings.audio_selectors #=> Array
|
@@ -4108,6 +4264,8 @@ module Aws::MediaLive
|
|
4108
4264
|
# resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
4109
4265
|
# resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
4110
4266
|
# resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
4267
|
+
# resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks #=> Array
|
4268
|
+
# resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks[0].track #=> Integer
|
4111
4269
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors #=> Array
|
4112
4270
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
4113
4271
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
@@ -4129,6 +4287,7 @@ module Aws::MediaLive
|
|
4129
4287
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
4130
4288
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
4131
4289
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
4290
|
+
# resp.channels[0].input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
4132
4291
|
# resp.channels[0].input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
4133
4292
|
# resp.channels[0].input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
|
4134
4293
|
# resp.channels[0].input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
|
@@ -4155,6 +4314,62 @@ module Aws::MediaLive
|
|
4155
4314
|
req.send_request(options)
|
4156
4315
|
end
|
4157
4316
|
|
4317
|
+
# List input devices
|
4318
|
+
#
|
4319
|
+
# @option params [Integer] :max_results
|
4320
|
+
#
|
4321
|
+
# @option params [String] :next_token
|
4322
|
+
#
|
4323
|
+
# @return [Types::ListInputDevicesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4324
|
+
#
|
4325
|
+
# * {Types::ListInputDevicesResponse#input_devices #input_devices} => Array<Types::InputDeviceSummary>
|
4326
|
+
# * {Types::ListInputDevicesResponse#next_token #next_token} => String
|
4327
|
+
#
|
4328
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4329
|
+
#
|
4330
|
+
# @example Request syntax with placeholder values
|
4331
|
+
#
|
4332
|
+
# resp = client.list_input_devices({
|
4333
|
+
# max_results: 1,
|
4334
|
+
# next_token: "__string",
|
4335
|
+
# })
|
4336
|
+
#
|
4337
|
+
# @example Response structure
|
4338
|
+
#
|
4339
|
+
# resp.input_devices #=> Array
|
4340
|
+
# resp.input_devices[0].arn #=> String
|
4341
|
+
# resp.input_devices[0].connection_state #=> String, one of "DISCONNECTED", "CONNECTED"
|
4342
|
+
# resp.input_devices[0].device_settings_sync_state #=> String, one of "SYNCED", "SYNCING"
|
4343
|
+
# resp.input_devices[0].hd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
4344
|
+
# resp.input_devices[0].hd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
4345
|
+
# resp.input_devices[0].hd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
4346
|
+
# resp.input_devices[0].hd_device_settings.framerate #=> Float
|
4347
|
+
# resp.input_devices[0].hd_device_settings.height #=> Integer
|
4348
|
+
# resp.input_devices[0].hd_device_settings.max_bitrate #=> Integer
|
4349
|
+
# resp.input_devices[0].hd_device_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
4350
|
+
# resp.input_devices[0].hd_device_settings.width #=> Integer
|
4351
|
+
# resp.input_devices[0].id #=> String
|
4352
|
+
# resp.input_devices[0].mac_address #=> String
|
4353
|
+
# resp.input_devices[0].name #=> String
|
4354
|
+
# resp.input_devices[0].network_settings.dns_addresses #=> Array
|
4355
|
+
# resp.input_devices[0].network_settings.dns_addresses[0] #=> String
|
4356
|
+
# resp.input_devices[0].network_settings.gateway #=> String
|
4357
|
+
# resp.input_devices[0].network_settings.ip_address #=> String
|
4358
|
+
# resp.input_devices[0].network_settings.ip_scheme #=> String, one of "STATIC", "DHCP"
|
4359
|
+
# resp.input_devices[0].network_settings.subnet_mask #=> String
|
4360
|
+
# resp.input_devices[0].serial_number #=> String
|
4361
|
+
# resp.input_devices[0].type #=> String, one of "HD"
|
4362
|
+
# resp.next_token #=> String
|
4363
|
+
#
|
4364
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDevices AWS API Documentation
|
4365
|
+
#
|
4366
|
+
# @overload list_input_devices(params = {})
|
4367
|
+
# @param [Hash] params ({})
|
4368
|
+
def list_input_devices(params = {}, options = {})
|
4369
|
+
req = build_request(:list_input_devices, params)
|
4370
|
+
req.send_request(options)
|
4371
|
+
end
|
4372
|
+
|
4158
4373
|
# Produces a list of Input Security Groups for an account
|
4159
4374
|
#
|
4160
4375
|
# @option params [Integer] :max_results
|
@@ -4166,6 +4381,8 @@ module Aws::MediaLive
|
|
4166
4381
|
# * {Types::ListInputSecurityGroupsResponse#input_security_groups #input_security_groups} => Array<Types::InputSecurityGroup>
|
4167
4382
|
# * {Types::ListInputSecurityGroupsResponse#next_token #next_token} => String
|
4168
4383
|
#
|
4384
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4385
|
+
#
|
4169
4386
|
# @example Request syntax with placeholder values
|
4170
4387
|
#
|
4171
4388
|
# resp = client.list_input_security_groups({
|
@@ -4207,6 +4424,8 @@ module Aws::MediaLive
|
|
4207
4424
|
# * {Types::ListInputsResponse#inputs #inputs} => Array<Types::Input>
|
4208
4425
|
# * {Types::ListInputsResponse#next_token #next_token} => String
|
4209
4426
|
#
|
4427
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4428
|
+
#
|
4210
4429
|
# @example Request syntax with placeholder values
|
4211
4430
|
#
|
4212
4431
|
# resp = client.list_inputs({
|
@@ -4228,6 +4447,8 @@ module Aws::MediaLive
|
|
4228
4447
|
# resp.inputs[0].destinations[0].vpc.network_interface_id #=> String
|
4229
4448
|
# resp.inputs[0].id #=> String
|
4230
4449
|
# resp.inputs[0].input_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4450
|
+
# resp.inputs[0].input_devices #=> Array
|
4451
|
+
# resp.inputs[0].input_devices[0].id #=> String
|
4231
4452
|
# resp.inputs[0].input_source_type #=> String, one of "STATIC", "DYNAMIC"
|
4232
4453
|
# resp.inputs[0].media_connect_flows #=> Array
|
4233
4454
|
# resp.inputs[0].media_connect_flows[0].flow_arn #=> String
|
@@ -4242,7 +4463,7 @@ module Aws::MediaLive
|
|
4242
4463
|
# resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
4243
4464
|
# resp.inputs[0].tags #=> Hash
|
4244
4465
|
# resp.inputs[0].tags["__string"] #=> String
|
4245
|
-
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT"
|
4466
|
+
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
|
4246
4467
|
# resp.next_token #=> String
|
4247
4468
|
#
|
4248
4469
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
|
@@ -4267,6 +4488,8 @@ module Aws::MediaLive
|
|
4267
4488
|
# * {Types::ListMultiplexProgramsResponse#multiplex_programs #multiplex_programs} => Array<Types::MultiplexProgramSummary>
|
4268
4489
|
# * {Types::ListMultiplexProgramsResponse#next_token #next_token} => String
|
4269
4490
|
#
|
4491
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4492
|
+
#
|
4270
4493
|
# @example Request syntax with placeholder values
|
4271
4494
|
#
|
4272
4495
|
# resp = client.list_multiplex_programs({
|
@@ -4302,6 +4525,8 @@ module Aws::MediaLive
|
|
4302
4525
|
# * {Types::ListMultiplexesResponse#multiplexes #multiplexes} => Array<Types::MultiplexSummary>
|
4303
4526
|
# * {Types::ListMultiplexesResponse#next_token #next_token} => String
|
4304
4527
|
#
|
4528
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4529
|
+
#
|
4305
4530
|
# @example Request syntax with placeholder values
|
4306
4531
|
#
|
4307
4532
|
# resp = client.list_multiplexes({
|
@@ -4365,6 +4590,8 @@ module Aws::MediaLive
|
|
4365
4590
|
# * {Types::ListOfferingsResponse#next_token #next_token} => String
|
4366
4591
|
# * {Types::ListOfferingsResponse#offerings #offerings} => Array<Types::Offering>
|
4367
4592
|
#
|
4593
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4594
|
+
#
|
4368
4595
|
# @example Request syntax with placeholder values
|
4369
4596
|
#
|
4370
4597
|
# resp = client.list_offerings({
|
@@ -4441,6 +4668,8 @@ module Aws::MediaLive
|
|
4441
4668
|
# * {Types::ListReservationsResponse#next_token #next_token} => String
|
4442
4669
|
# * {Types::ListReservationsResponse#reservations #reservations} => Array<Types::Reservation>
|
4443
4670
|
#
|
4671
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4672
|
+
#
|
4444
4673
|
# @example Request syntax with placeholder values
|
4445
4674
|
#
|
4446
4675
|
# resp = client.list_reservations({
|
@@ -4862,7 +5091,7 @@ module Aws::MediaLive
|
|
4862
5091
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.restart_delay #=> Integer
|
4863
5092
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.segmentation_mode #=> String, one of "USE_INPUT_SEGMENTATION", "USE_SEGMENT_DURATION"
|
4864
5093
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.send_delay_ms #=> Integer
|
4865
|
-
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35"
|
5094
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35", "SCTE_35_WITHOUT_SEGMENTATION"
|
4866
5095
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
4867
5096
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
4868
5097
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
@@ -4944,6 +5173,8 @@ module Aws::MediaLive
|
|
4944
5173
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.audio_track_type #=> String, one of "ALTERNATE_AUDIO_AUTO_SELECT", "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", "ALTERNATE_AUDIO_NOT_AUTO_SELECT", "AUDIO_ONLY_VARIANT_STREAM"
|
4945
5174
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.segment_type #=> String, one of "AAC", "FMP4"
|
4946
5175
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.audio_rendition_sets #=> String
|
5176
|
+
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.nielsen_id_3_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
5177
|
+
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.timed_metadata_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
4947
5178
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.audio_rendition_sets #=> String
|
4948
5179
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
4949
5180
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_pids #=> String
|
@@ -5041,8 +5272,11 @@ module Aws::MediaLive
|
|
5041
5272
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_size #=> Integer
|
5042
5273
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
5043
5274
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
|
5275
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
5276
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "AUTO", "STRENGTH_1", "STRENGTH_2", "STRENGTH_3", "STRENGTH_4", "STRENGTH_5", "STRENGTH_6", "STRENGTH_7", "STRENGTH_8", "STRENGTH_9", "STRENGTH_10", "STRENGTH_11", "STRENGTH_12", "STRENGTH_13", "STRENGTH_14", "STRENGTH_15", "STRENGTH_16"
|
5044
5277
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
|
5045
5278
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
|
5279
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.force_field_pictures #=> String, one of "DISABLED", "ENABLED"
|
5046
5280
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
|
5047
5281
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_denominator #=> Integer
|
5048
5282
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_numerator #=> Integer
|
@@ -5060,6 +5294,7 @@ module Aws::MediaLive
|
|
5060
5294
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_denominator #=> Integer
|
5061
5295
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_numerator #=> Integer
|
5062
5296
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.profile #=> String, one of "BASELINE", "HIGH", "HIGH_10BIT", "HIGH_422", "HIGH_422_10BIT", "MAIN"
|
5297
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.quality_level #=> String, one of "ENHANCED_QUALITY", "STANDARD_QUALITY"
|
5063
5298
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.qvbr_quality_level #=> Integer
|
5064
5299
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR", "VBR"
|
5065
5300
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
@@ -5108,6 +5343,8 @@ module Aws::MediaLive
|
|
5108
5343
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
5109
5344
|
# resp.id #=> String
|
5110
5345
|
# resp.input_attachments #=> Array
|
5346
|
+
# resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
5347
|
+
# resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
5111
5348
|
# resp.input_attachments[0].input_attachment_name #=> String
|
5112
5349
|
# resp.input_attachments[0].input_id #=> String
|
5113
5350
|
# resp.input_attachments[0].input_settings.audio_selectors #=> Array
|
@@ -5115,6 +5352,8 @@ module Aws::MediaLive
|
|
5115
5352
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
5116
5353
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
5117
5354
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
5355
|
+
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks #=> Array
|
5356
|
+
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks[0].track #=> Integer
|
5118
5357
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
5119
5358
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
5120
5359
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
@@ -5136,6 +5375,7 @@ module Aws::MediaLive
|
|
5136
5375
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
5137
5376
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
5138
5377
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
5378
|
+
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
5139
5379
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
5140
5380
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
|
5141
5381
|
# resp.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
|
@@ -5484,7 +5724,7 @@ module Aws::MediaLive
|
|
5484
5724
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.restart_delay #=> Integer
|
5485
5725
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.segmentation_mode #=> String, one of "USE_INPUT_SEGMENTATION", "USE_SEGMENT_DURATION"
|
5486
5726
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.send_delay_ms #=> Integer
|
5487
|
-
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35"
|
5727
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35", "SCTE_35_WITHOUT_SEGMENTATION"
|
5488
5728
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
5489
5729
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
5490
5730
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
@@ -5566,6 +5806,8 @@ module Aws::MediaLive
|
|
5566
5806
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.audio_track_type #=> String, one of "ALTERNATE_AUDIO_AUTO_SELECT", "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", "ALTERNATE_AUDIO_NOT_AUTO_SELECT", "AUDIO_ONLY_VARIANT_STREAM"
|
5567
5807
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.segment_type #=> String, one of "AAC", "FMP4"
|
5568
5808
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.audio_rendition_sets #=> String
|
5809
|
+
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.nielsen_id_3_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
5810
|
+
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.timed_metadata_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
5569
5811
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.audio_rendition_sets #=> String
|
5570
5812
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
5571
5813
|
# resp.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_pids #=> String
|
@@ -5663,8 +5905,11 @@ module Aws::MediaLive
|
|
5663
5905
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_size #=> Integer
|
5664
5906
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
5665
5907
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
|
5908
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
5909
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "AUTO", "STRENGTH_1", "STRENGTH_2", "STRENGTH_3", "STRENGTH_4", "STRENGTH_5", "STRENGTH_6", "STRENGTH_7", "STRENGTH_8", "STRENGTH_9", "STRENGTH_10", "STRENGTH_11", "STRENGTH_12", "STRENGTH_13", "STRENGTH_14", "STRENGTH_15", "STRENGTH_16"
|
5666
5910
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
|
5667
5911
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
|
5912
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.force_field_pictures #=> String, one of "DISABLED", "ENABLED"
|
5668
5913
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
|
5669
5914
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_denominator #=> Integer
|
5670
5915
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_numerator #=> Integer
|
@@ -5682,6 +5927,7 @@ module Aws::MediaLive
|
|
5682
5927
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_denominator #=> Integer
|
5683
5928
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_numerator #=> Integer
|
5684
5929
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.profile #=> String, one of "BASELINE", "HIGH", "HIGH_10BIT", "HIGH_422", "HIGH_422_10BIT", "MAIN"
|
5930
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.quality_level #=> String, one of "ENHANCED_QUALITY", "STANDARD_QUALITY"
|
5685
5931
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.qvbr_quality_level #=> Integer
|
5686
5932
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR", "VBR"
|
5687
5933
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
@@ -5730,6 +5976,8 @@ module Aws::MediaLive
|
|
5730
5976
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
5731
5977
|
# resp.id #=> String
|
5732
5978
|
# resp.input_attachments #=> Array
|
5979
|
+
# resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
5980
|
+
# resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
5733
5981
|
# resp.input_attachments[0].input_attachment_name #=> String
|
5734
5982
|
# resp.input_attachments[0].input_id #=> String
|
5735
5983
|
# resp.input_attachments[0].input_settings.audio_selectors #=> Array
|
@@ -5737,6 +5985,8 @@ module Aws::MediaLive
|
|
5737
5985
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
5738
5986
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
5739
5987
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
5988
|
+
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks #=> Array
|
5989
|
+
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks[0].track #=> Integer
|
5740
5990
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
5741
5991
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
5742
5992
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
@@ -5758,6 +6008,7 @@ module Aws::MediaLive
|
|
5758
6008
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
5759
6009
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
5760
6010
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
6011
|
+
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
5761
6012
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
5762
6013
|
# resp.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
|
5763
6014
|
# resp.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
|
@@ -6235,7 +6486,7 @@ module Aws::MediaLive
|
|
6235
6486
|
# restart_delay: 1,
|
6236
6487
|
# segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
|
6237
6488
|
# send_delay_ms: 1,
|
6238
|
-
# sparse_track_type: "NONE", # accepts NONE, SCTE_35
|
6489
|
+
# sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
|
6239
6490
|
# stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
|
6240
6491
|
# timestamp_offset: "__string",
|
6241
6492
|
# timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
|
@@ -6346,6 +6597,8 @@ module Aws::MediaLive
|
|
6346
6597
|
# },
|
6347
6598
|
# fmp_4_hls_settings: {
|
6348
6599
|
# audio_rendition_sets: "__string",
|
6600
|
+
# nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
|
6601
|
+
# timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
|
6349
6602
|
# },
|
6350
6603
|
# standard_hls_settings: {
|
6351
6604
|
# audio_rendition_sets: "__string",
|
@@ -6498,8 +6751,15 @@ module Aws::MediaLive
|
|
6498
6751
|
# },
|
6499
6752
|
# },
|
6500
6753
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
6754
|
+
# filter_settings: {
|
6755
|
+
# temporal_filter_settings: {
|
6756
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
6757
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
6758
|
+
# },
|
6759
|
+
# },
|
6501
6760
|
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
6502
6761
|
# flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
|
6762
|
+
# force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
|
6503
6763
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
6504
6764
|
# framerate_denominator: 1,
|
6505
6765
|
# framerate_numerator: 1,
|
@@ -6517,6 +6777,7 @@ module Aws::MediaLive
|
|
6517
6777
|
# par_denominator: 1,
|
6518
6778
|
# par_numerator: 1,
|
6519
6779
|
# profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
6780
|
+
# quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
|
6520
6781
|
# qvbr_quality_level: 1,
|
6521
6782
|
# rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
|
6522
6783
|
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
@@ -6582,6 +6843,10 @@ module Aws::MediaLive
|
|
6582
6843
|
# },
|
6583
6844
|
# input_attachments: [
|
6584
6845
|
# {
|
6846
|
+
# automatic_input_failover_settings: {
|
6847
|
+
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
6848
|
+
# secondary_input_id: "__string", # required
|
6849
|
+
# },
|
6585
6850
|
# input_attachment_name: "__string",
|
6586
6851
|
# input_id: "__string",
|
6587
6852
|
# input_settings: {
|
@@ -6596,6 +6861,13 @@ module Aws::MediaLive
|
|
6596
6861
|
# audio_pid_selection: {
|
6597
6862
|
# pid: 1, # required
|
6598
6863
|
# },
|
6864
|
+
# audio_track_selection: {
|
6865
|
+
# tracks: [ # required
|
6866
|
+
# {
|
6867
|
+
# track: 1, # required
|
6868
|
+
# },
|
6869
|
+
# ],
|
6870
|
+
# },
|
6599
6871
|
# },
|
6600
6872
|
# },
|
6601
6873
|
# ],
|
@@ -6641,6 +6913,7 @@ module Aws::MediaLive
|
|
6641
6913
|
# },
|
6642
6914
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
6643
6915
|
# },
|
6916
|
+
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
6644
6917
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
6645
6918
|
# video_selector: {
|
6646
6919
|
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
|
@@ -6906,7 +7179,7 @@ module Aws::MediaLive
|
|
6906
7179
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.restart_delay #=> Integer
|
6907
7180
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.segmentation_mode #=> String, one of "USE_INPUT_SEGMENTATION", "USE_SEGMENT_DURATION"
|
6908
7181
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.send_delay_ms #=> Integer
|
6909
|
-
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35"
|
7182
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35", "SCTE_35_WITHOUT_SEGMENTATION"
|
6910
7183
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
6911
7184
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
6912
7185
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
@@ -6988,6 +7261,8 @@ module Aws::MediaLive
|
|
6988
7261
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.audio_track_type #=> String, one of "ALTERNATE_AUDIO_AUTO_SELECT", "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", "ALTERNATE_AUDIO_NOT_AUTO_SELECT", "AUDIO_ONLY_VARIANT_STREAM"
|
6989
7262
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.segment_type #=> String, one of "AAC", "FMP4"
|
6990
7263
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.audio_rendition_sets #=> String
|
7264
|
+
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.nielsen_id_3_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
7265
|
+
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.timed_metadata_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
6991
7266
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.audio_rendition_sets #=> String
|
6992
7267
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
6993
7268
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_pids #=> String
|
@@ -7085,8 +7360,11 @@ module Aws::MediaLive
|
|
7085
7360
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_size #=> Integer
|
7086
7361
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
7087
7362
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
|
7363
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
7364
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "AUTO", "STRENGTH_1", "STRENGTH_2", "STRENGTH_3", "STRENGTH_4", "STRENGTH_5", "STRENGTH_6", "STRENGTH_7", "STRENGTH_8", "STRENGTH_9", "STRENGTH_10", "STRENGTH_11", "STRENGTH_12", "STRENGTH_13", "STRENGTH_14", "STRENGTH_15", "STRENGTH_16"
|
7088
7365
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
|
7089
7366
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
|
7367
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.force_field_pictures #=> String, one of "DISABLED", "ENABLED"
|
7090
7368
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
|
7091
7369
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_denominator #=> Integer
|
7092
7370
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_numerator #=> Integer
|
@@ -7104,6 +7382,7 @@ module Aws::MediaLive
|
|
7104
7382
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_denominator #=> Integer
|
7105
7383
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_numerator #=> Integer
|
7106
7384
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.profile #=> String, one of "BASELINE", "HIGH", "HIGH_10BIT", "HIGH_422", "HIGH_422_10BIT", "MAIN"
|
7385
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.quality_level #=> String, one of "ENHANCED_QUALITY", "STANDARD_QUALITY"
|
7107
7386
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.qvbr_quality_level #=> Integer
|
7108
7387
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR", "VBR"
|
7109
7388
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
@@ -7152,6 +7431,8 @@ module Aws::MediaLive
|
|
7152
7431
|
# resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
|
7153
7432
|
# resp.channel.id #=> String
|
7154
7433
|
# resp.channel.input_attachments #=> Array
|
7434
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
7435
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
7155
7436
|
# resp.channel.input_attachments[0].input_attachment_name #=> String
|
7156
7437
|
# resp.channel.input_attachments[0].input_id #=> String
|
7157
7438
|
# resp.channel.input_attachments[0].input_settings.audio_selectors #=> Array
|
@@ -7159,6 +7440,8 @@ module Aws::MediaLive
|
|
7159
7440
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
7160
7441
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
7161
7442
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
7443
|
+
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks #=> Array
|
7444
|
+
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks[0].track #=> Integer
|
7162
7445
|
# resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
|
7163
7446
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
7164
7447
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
@@ -7180,6 +7463,7 @@ module Aws::MediaLive
|
|
7180
7463
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
7181
7464
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
7182
7465
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
7466
|
+
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
7183
7467
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
7184
7468
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
|
7185
7469
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
|
@@ -7491,7 +7775,7 @@ module Aws::MediaLive
|
|
7491
7775
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.restart_delay #=> Integer
|
7492
7776
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.segmentation_mode #=> String, one of "USE_INPUT_SEGMENTATION", "USE_SEGMENT_DURATION"
|
7493
7777
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.send_delay_ms #=> Integer
|
7494
|
-
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35"
|
7778
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.sparse_track_type #=> String, one of "NONE", "SCTE_35", "SCTE_35_WITHOUT_SEGMENTATION"
|
7495
7779
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
7496
7780
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
7497
7781
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
@@ -7573,6 +7857,8 @@ module Aws::MediaLive
|
|
7573
7857
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.audio_track_type #=> String, one of "ALTERNATE_AUDIO_AUTO_SELECT", "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT", "ALTERNATE_AUDIO_NOT_AUTO_SELECT", "AUDIO_ONLY_VARIANT_STREAM"
|
7574
7858
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.audio_only_hls_settings.segment_type #=> String, one of "AAC", "FMP4"
|
7575
7859
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.audio_rendition_sets #=> String
|
7860
|
+
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.nielsen_id_3_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
7861
|
+
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.fmp_4_hls_settings.timed_metadata_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
|
7576
7862
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.audio_rendition_sets #=> String
|
7577
7863
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_frames_per_pes #=> Integer
|
7578
7864
|
# resp.channel.encoder_settings.output_groups[0].outputs[0].output_settings.hls_output_settings.hls_settings.standard_hls_settings.m3u_8_settings.audio_pids #=> String
|
@@ -7670,8 +7956,11 @@ module Aws::MediaLive
|
|
7670
7956
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_size #=> Integer
|
7671
7957
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
7672
7958
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
|
7959
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
7960
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "AUTO", "STRENGTH_1", "STRENGTH_2", "STRENGTH_3", "STRENGTH_4", "STRENGTH_5", "STRENGTH_6", "STRENGTH_7", "STRENGTH_8", "STRENGTH_9", "STRENGTH_10", "STRENGTH_11", "STRENGTH_12", "STRENGTH_13", "STRENGTH_14", "STRENGTH_15", "STRENGTH_16"
|
7673
7961
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
|
7674
7962
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
|
7963
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.force_field_pictures #=> String, one of "DISABLED", "ENABLED"
|
7675
7964
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
|
7676
7965
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_denominator #=> Integer
|
7677
7966
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.framerate_numerator #=> Integer
|
@@ -7689,6 +7978,7 @@ module Aws::MediaLive
|
|
7689
7978
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_denominator #=> Integer
|
7690
7979
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.par_numerator #=> Integer
|
7691
7980
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.profile #=> String, one of "BASELINE", "HIGH", "HIGH_10BIT", "HIGH_422", "HIGH_422_10BIT", "MAIN"
|
7981
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.quality_level #=> String, one of "ENHANCED_QUALITY", "STANDARD_QUALITY"
|
7692
7982
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.qvbr_quality_level #=> Integer
|
7693
7983
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR", "VBR"
|
7694
7984
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
@@ -7737,6 +8027,8 @@ module Aws::MediaLive
|
|
7737
8027
|
# resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
|
7738
8028
|
# resp.channel.id #=> String
|
7739
8029
|
# resp.channel.input_attachments #=> Array
|
8030
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
8031
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
7740
8032
|
# resp.channel.input_attachments[0].input_attachment_name #=> String
|
7741
8033
|
# resp.channel.input_attachments[0].input_id #=> String
|
7742
8034
|
# resp.channel.input_attachments[0].input_settings.audio_selectors #=> Array
|
@@ -7744,6 +8036,8 @@ module Aws::MediaLive
|
|
7744
8036
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
7745
8037
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
7746
8038
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
8039
|
+
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks #=> Array
|
8040
|
+
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_track_selection.tracks[0].track #=> Integer
|
7747
8041
|
# resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
|
7748
8042
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
7749
8043
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
@@ -7765,6 +8059,7 @@ module Aws::MediaLive
|
|
7765
8059
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
7766
8060
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
7767
8061
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
8062
|
+
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
7768
8063
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
7769
8064
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space #=> String, one of "FOLLOW", "REC_601", "REC_709"
|
7770
8065
|
# resp.channel.input_attachments[0].input_settings.video_selector.color_space_usage #=> String, one of "FALLBACK", "FORCE"
|
@@ -7798,6 +8093,8 @@ module Aws::MediaLive
|
|
7798
8093
|
#
|
7799
8094
|
# @option params [Array<Types::InputDestinationRequest>] :destinations
|
7800
8095
|
#
|
8096
|
+
# @option params [Array<Types::InputDeviceRequest>] :input_devices
|
8097
|
+
#
|
7801
8098
|
# @option params [required, String] :input_id
|
7802
8099
|
#
|
7803
8100
|
# @option params [Array<String>] :input_security_groups
|
@@ -7822,6 +8119,11 @@ module Aws::MediaLive
|
|
7822
8119
|
# stream_name: "__string",
|
7823
8120
|
# },
|
7824
8121
|
# ],
|
8122
|
+
# input_devices: [
|
8123
|
+
# {
|
8124
|
+
# id: "__string",
|
8125
|
+
# },
|
8126
|
+
# ],
|
7825
8127
|
# input_id: "__string", # required
|
7826
8128
|
# input_security_groups: ["__string"],
|
7827
8129
|
# media_connect_flows: [
|
@@ -7853,6 +8155,8 @@ module Aws::MediaLive
|
|
7853
8155
|
# resp.input.destinations[0].vpc.network_interface_id #=> String
|
7854
8156
|
# resp.input.id #=> String
|
7855
8157
|
# resp.input.input_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
8158
|
+
# resp.input.input_devices #=> Array
|
8159
|
+
# resp.input.input_devices[0].id #=> String
|
7856
8160
|
# resp.input.input_source_type #=> String, one of "STATIC", "DYNAMIC"
|
7857
8161
|
# resp.input.media_connect_flows #=> Array
|
7858
8162
|
# resp.input.media_connect_flows[0].flow_arn #=> String
|
@@ -7867,7 +8171,7 @@ module Aws::MediaLive
|
|
7867
8171
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
7868
8172
|
# resp.input.tags #=> Hash
|
7869
8173
|
# resp.input.tags["__string"] #=> String
|
7870
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT"
|
8174
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
|
7871
8175
|
#
|
7872
8176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
7873
8177
|
#
|
@@ -7878,6 +8182,73 @@ module Aws::MediaLive
|
|
7878
8182
|
req.send_request(options)
|
7879
8183
|
end
|
7880
8184
|
|
8185
|
+
# Updates the parameters for the input device.
|
8186
|
+
#
|
8187
|
+
# @option params [Types::InputDeviceConfigurableSettings] :hd_device_settings
|
8188
|
+
# Configurable settings for the input device.
|
8189
|
+
#
|
8190
|
+
# @option params [required, String] :input_device_id
|
8191
|
+
#
|
8192
|
+
# @option params [String] :name
|
8193
|
+
#
|
8194
|
+
# @return [Types::UpdateInputDeviceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8195
|
+
#
|
8196
|
+
# * {Types::UpdateInputDeviceResponse#arn #arn} => String
|
8197
|
+
# * {Types::UpdateInputDeviceResponse#connection_state #connection_state} => String
|
8198
|
+
# * {Types::UpdateInputDeviceResponse#device_settings_sync_state #device_settings_sync_state} => String
|
8199
|
+
# * {Types::UpdateInputDeviceResponse#hd_device_settings #hd_device_settings} => Types::InputDeviceHdSettings
|
8200
|
+
# * {Types::UpdateInputDeviceResponse#id #id} => String
|
8201
|
+
# * {Types::UpdateInputDeviceResponse#mac_address #mac_address} => String
|
8202
|
+
# * {Types::UpdateInputDeviceResponse#name #name} => String
|
8203
|
+
# * {Types::UpdateInputDeviceResponse#network_settings #network_settings} => Types::InputDeviceNetworkSettings
|
8204
|
+
# * {Types::UpdateInputDeviceResponse#serial_number #serial_number} => String
|
8205
|
+
# * {Types::UpdateInputDeviceResponse#type #type} => String
|
8206
|
+
#
|
8207
|
+
# @example Request syntax with placeholder values
|
8208
|
+
#
|
8209
|
+
# resp = client.update_input_device({
|
8210
|
+
# hd_device_settings: {
|
8211
|
+
# configured_input: "AUTO", # accepts AUTO, HDMI, SDI
|
8212
|
+
# max_bitrate: 1,
|
8213
|
+
# },
|
8214
|
+
# input_device_id: "__string", # required
|
8215
|
+
# name: "__string",
|
8216
|
+
# })
|
8217
|
+
#
|
8218
|
+
# @example Response structure
|
8219
|
+
#
|
8220
|
+
# resp.arn #=> String
|
8221
|
+
# resp.connection_state #=> String, one of "DISCONNECTED", "CONNECTED"
|
8222
|
+
# resp.device_settings_sync_state #=> String, one of "SYNCED", "SYNCING"
|
8223
|
+
# resp.hd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
8224
|
+
# resp.hd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
8225
|
+
# resp.hd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
8226
|
+
# resp.hd_device_settings.framerate #=> Float
|
8227
|
+
# resp.hd_device_settings.height #=> Integer
|
8228
|
+
# resp.hd_device_settings.max_bitrate #=> Integer
|
8229
|
+
# resp.hd_device_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
8230
|
+
# resp.hd_device_settings.width #=> Integer
|
8231
|
+
# resp.id #=> String
|
8232
|
+
# resp.mac_address #=> String
|
8233
|
+
# resp.name #=> String
|
8234
|
+
# resp.network_settings.dns_addresses #=> Array
|
8235
|
+
# resp.network_settings.dns_addresses[0] #=> String
|
8236
|
+
# resp.network_settings.gateway #=> String
|
8237
|
+
# resp.network_settings.ip_address #=> String
|
8238
|
+
# resp.network_settings.ip_scheme #=> String, one of "STATIC", "DHCP"
|
8239
|
+
# resp.network_settings.subnet_mask #=> String
|
8240
|
+
# resp.serial_number #=> String
|
8241
|
+
# resp.type #=> String, one of "HD"
|
8242
|
+
#
|
8243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDevice AWS API Documentation
|
8244
|
+
#
|
8245
|
+
# @overload update_input_device(params = {})
|
8246
|
+
# @param [Hash] params ({})
|
8247
|
+
def update_input_device(params = {}, options = {})
|
8248
|
+
req = build_request(:update_input_device, params)
|
8249
|
+
req.send_request(options)
|
8250
|
+
end
|
8251
|
+
|
7881
8252
|
# Update an Input Security Group's Whilelists.
|
7882
8253
|
#
|
7883
8254
|
# @option params [required, String] :input_security_group_id
|
@@ -8120,7 +8491,7 @@ module Aws::MediaLive
|
|
8120
8491
|
params: params,
|
8121
8492
|
config: config)
|
8122
8493
|
context[:gem_name] = 'aws-sdk-medialive'
|
8123
|
-
context[:gem_version] = '1.
|
8494
|
+
context[:gem_version] = '1.46.0'
|
8124
8495
|
Seahorse::Client::Request.new(handlers, context)
|
8125
8496
|
end
|
8126
8497
|
|
@@ -8186,16 +8557,19 @@ module Aws::MediaLive
|
|
8186
8557
|
# The following table lists the valid waiter names, the operations they call,
|
8187
8558
|
# and the default `:delay` and `:max_attempts` values.
|
8188
8559
|
#
|
8189
|
-
# | waiter_name | params
|
8190
|
-
# | ----------------- |
|
8191
|
-
# | channel_created | {#describe_channel} | 3 | 5 |
|
8192
|
-
# | channel_deleted | {#describe_channel} | 5 |
|
8193
|
-
# | channel_running | {#describe_channel} | 5 | 120 |
|
8194
|
-
# | channel_stopped | {#describe_channel} | 5 |
|
8195
|
-
# |
|
8196
|
-
# |
|
8197
|
-
# |
|
8198
|
-
# |
|
8560
|
+
# | waiter_name | params | :delay | :max_attempts |
|
8561
|
+
# | ----------------- | --------------------------- | -------- | ------------- |
|
8562
|
+
# | channel_created | {Client#describe_channel} | 3 | 5 |
|
8563
|
+
# | channel_deleted | {Client#describe_channel} | 5 | 84 |
|
8564
|
+
# | channel_running | {Client#describe_channel} | 5 | 120 |
|
8565
|
+
# | channel_stopped | {Client#describe_channel} | 5 | 60 |
|
8566
|
+
# | input_attached | {Client#describe_input} | 5 | 20 |
|
8567
|
+
# | input_deleted | {Client#describe_input} | 5 | 20 |
|
8568
|
+
# | input_detached | {Client#describe_input} | 5 | 84 |
|
8569
|
+
# | multiplex_created | {Client#describe_multiplex} | 3 | 5 |
|
8570
|
+
# | multiplex_deleted | {Client#describe_multiplex} | 5 | 20 |
|
8571
|
+
# | multiplex_running | {Client#describe_multiplex} | 5 | 120 |
|
8572
|
+
# | multiplex_stopped | {Client#describe_multiplex} | 5 | 28 |
|
8199
8573
|
#
|
8200
8574
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
8201
8575
|
# because the waiter has entered a state that it will not transition
|
@@ -8250,6 +8624,9 @@ module Aws::MediaLive
|
|
8250
8624
|
channel_deleted: Waiters::ChannelDeleted,
|
8251
8625
|
channel_running: Waiters::ChannelRunning,
|
8252
8626
|
channel_stopped: Waiters::ChannelStopped,
|
8627
|
+
input_attached: Waiters::InputAttached,
|
8628
|
+
input_deleted: Waiters::InputDeleted,
|
8629
|
+
input_detached: Waiters::InputDetached,
|
8253
8630
|
multiplex_created: Waiters::MultiplexCreated,
|
8254
8631
|
multiplex_deleted: Waiters::MultiplexDeleted,
|
8255
8632
|
multiplex_running: Waiters::MultiplexRunning,
|