aws-sdk-medialive 1.55.0 → 1.60.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-medialive.rb +2 -2
- data/lib/aws-sdk-medialive/client.rb +475 -1
- data/lib/aws-sdk-medialive/client_api.rb +265 -2
- data/lib/aws-sdk-medialive/types.rb +1015 -18
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2ba82efe094f6b0c7f0ef93b95489dda6db72769c80744265b28c8e7c5cd468
|
4
|
+
data.tar.gz: 69ffb38e61bec20931d09cb054b9e23cf479645f7f532859b13fa96ded968dab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae955cc4c8733a6c51a217bf472658b5005b8aea2083f8c8b83406358cf8f87edbaf891c7f280788947f89a0cb3be3dc356af31cfbc1aa4a5e7b4d7afd9c30ae
|
7
|
+
data.tar.gz: dce1788a3b1fccb902be2b9576a41002071e45f1349ec60940e911cd309df1bcc36a06533837a25fc487afd12a3c9f47c7b54938a9f173fd6d160002952afb24
|
data/lib/aws-sdk-medialive.rb
CHANGED
@@ -29,7 +29,7 @@ require_relative 'aws-sdk-medialive/customizations'
|
|
29
29
|
# structure.
|
30
30
|
#
|
31
31
|
# media_live = Aws::MediaLive::Client.new
|
32
|
-
# resp = media_live.
|
32
|
+
# resp = media_live.accept_input_device_transfer(params)
|
33
33
|
#
|
34
34
|
# See {Client} for more information.
|
35
35
|
#
|
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-medialive/customizations'
|
|
49
49
|
# @!group service
|
50
50
|
module Aws::MediaLive
|
51
51
|
|
52
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.60.0'
|
53
53
|
|
54
54
|
end
|
@@ -327,6 +327,28 @@ module Aws::MediaLive
|
|
327
327
|
|
328
328
|
# @!group API Operations
|
329
329
|
|
330
|
+
# Accept an incoming input device transfer. The ownership of the device
|
331
|
+
# will transfer to your AWS account.
|
332
|
+
#
|
333
|
+
# @option params [required, String] :input_device_id
|
334
|
+
#
|
335
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
336
|
+
#
|
337
|
+
# @example Request syntax with placeholder values
|
338
|
+
#
|
339
|
+
# resp = client.accept_input_device_transfer({
|
340
|
+
# input_device_id: "__string", # required
|
341
|
+
# })
|
342
|
+
#
|
343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransfer AWS API Documentation
|
344
|
+
#
|
345
|
+
# @overload accept_input_device_transfer(params = {})
|
346
|
+
# @param [Hash] params ({})
|
347
|
+
def accept_input_device_transfer(params = {}, options = {})
|
348
|
+
req = build_request(:accept_input_device_transfer, params)
|
349
|
+
req.send_request(options)
|
350
|
+
end
|
351
|
+
|
330
352
|
# Starts delete of resources.
|
331
353
|
#
|
332
354
|
# @option params [Array<String>] :channel_ids
|
@@ -710,8 +732,31 @@ module Aws::MediaLive
|
|
710
732
|
req.send_request(options)
|
711
733
|
end
|
712
734
|
|
735
|
+
# Cancel an input device transfer that you have requested.
|
736
|
+
#
|
737
|
+
# @option params [required, String] :input_device_id
|
738
|
+
#
|
739
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
740
|
+
#
|
741
|
+
# @example Request syntax with placeholder values
|
742
|
+
#
|
743
|
+
# resp = client.cancel_input_device_transfer({
|
744
|
+
# input_device_id: "__string", # required
|
745
|
+
# })
|
746
|
+
#
|
747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransfer AWS API Documentation
|
748
|
+
#
|
749
|
+
# @overload cancel_input_device_transfer(params = {})
|
750
|
+
# @param [Hash] params ({})
|
751
|
+
def cancel_input_device_transfer(params = {}, options = {})
|
752
|
+
req = build_request(:cancel_input_device_transfer, params)
|
753
|
+
req.send_request(options)
|
754
|
+
end
|
755
|
+
|
713
756
|
# Creates a new channel
|
714
757
|
#
|
758
|
+
# @option params [Types::CdiInputSpecification] :cdi_input_specification
|
759
|
+
#
|
715
760
|
# @option params [String] :channel_class
|
716
761
|
# A standard channel has two encoding pipelines and a single pipeline
|
717
762
|
# channel only has one.
|
@@ -747,6 +792,9 @@ module Aws::MediaLive
|
|
747
792
|
# @example Request syntax with placeholder values
|
748
793
|
#
|
749
794
|
# resp = client.create_channel({
|
795
|
+
# cdi_input_specification: {
|
796
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
797
|
+
# },
|
750
798
|
# channel_class: "STANDARD", # accepts STANDARD, SINGLE_PIPELINE
|
751
799
|
# destinations: [
|
752
800
|
# {
|
@@ -831,6 +879,11 @@ module Aws::MediaLive
|
|
831
879
|
# },
|
832
880
|
# pass_through_settings: {
|
833
881
|
# },
|
882
|
+
# wav_settings: {
|
883
|
+
# bit_depth: 1.0,
|
884
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
885
|
+
# sample_rate: 1.0,
|
886
|
+
# },
|
834
887
|
# },
|
835
888
|
# language_code: "__stringMin1Max35",
|
836
889
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -1033,6 +1086,7 @@ module Aws::MediaLive
|
|
1033
1086
|
# destination_ref_id: "__string",
|
1034
1087
|
# },
|
1035
1088
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
1089
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
1036
1090
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
1037
1091
|
# hls_cdn_settings: {
|
1038
1092
|
# hls_akamai_settings: {
|
@@ -1067,6 +1121,7 @@ module Aws::MediaLive
|
|
1067
1121
|
# },
|
1068
1122
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
1069
1123
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
1124
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
1070
1125
|
# index_n_segments: 1,
|
1071
1126
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
1072
1127
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -1132,6 +1187,7 @@ module Aws::MediaLive
|
|
1132
1187
|
# multiplex_group_settings: {
|
1133
1188
|
# },
|
1134
1189
|
# rtmp_group_settings: {
|
1190
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
1135
1191
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
1136
1192
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
1137
1193
|
# cache_length: 1,
|
@@ -1213,6 +1269,8 @@ module Aws::MediaLive
|
|
1213
1269
|
# transport_stream_id: 1,
|
1214
1270
|
# video_pid: "__string",
|
1215
1271
|
# },
|
1272
|
+
# raw_settings: {
|
1273
|
+
# },
|
1216
1274
|
# },
|
1217
1275
|
# extension: "__string",
|
1218
1276
|
# name_modifier: "__string",
|
@@ -1475,6 +1533,29 @@ module Aws::MediaLive
|
|
1475
1533
|
# tier: "HIGH", # accepts HIGH, MAIN
|
1476
1534
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
1477
1535
|
# },
|
1536
|
+
# mpeg_2_settings: {
|
1537
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
1538
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
1539
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
1540
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
1541
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
1542
|
+
# filter_settings: {
|
1543
|
+
# temporal_filter_settings: {
|
1544
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
1545
|
+
# 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
|
1546
|
+
# },
|
1547
|
+
# },
|
1548
|
+
# 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
|
1549
|
+
# framerate_denominator: 1, # required
|
1550
|
+
# framerate_numerator: 1, # required
|
1551
|
+
# gop_closed_cadence: 1,
|
1552
|
+
# gop_num_b_frames: 1,
|
1553
|
+
# gop_size: 1.0,
|
1554
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
1555
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
1556
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
1557
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
1558
|
+
# },
|
1478
1559
|
# },
|
1479
1560
|
# height: 1,
|
1480
1561
|
# name: "__string", # required
|
@@ -1488,6 +1569,16 @@ module Aws::MediaLive
|
|
1488
1569
|
# input_attachments: [
|
1489
1570
|
# {
|
1490
1571
|
# automatic_input_failover_settings: {
|
1572
|
+
# error_clear_time_msec: 1,
|
1573
|
+
# failover_conditions: [
|
1574
|
+
# {
|
1575
|
+
# failover_condition_settings: {
|
1576
|
+
# input_loss_settings: {
|
1577
|
+
# input_loss_threshold_msec: 1,
|
1578
|
+
# },
|
1579
|
+
# },
|
1580
|
+
# },
|
1581
|
+
# ],
|
1491
1582
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
1492
1583
|
# secondary_input_id: "__string", # required
|
1493
1584
|
# },
|
@@ -1520,6 +1611,9 @@ module Aws::MediaLive
|
|
1520
1611
|
# language_code: "__string",
|
1521
1612
|
# name: "__stringMin1", # required
|
1522
1613
|
# selector_settings: {
|
1614
|
+
# ancillary_source_settings: {
|
1615
|
+
# source_ancillary_channel_number: 1,
|
1616
|
+
# },
|
1523
1617
|
# arib_source_settings: {
|
1524
1618
|
# },
|
1525
1619
|
# dvb_sub_source_settings: {
|
@@ -1592,6 +1686,7 @@ module Aws::MediaLive
|
|
1592
1686
|
# @example Response structure
|
1593
1687
|
#
|
1594
1688
|
# resp.channel.arn #=> String
|
1689
|
+
# resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
1595
1690
|
# resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
1596
1691
|
# resp.channel.destinations #=> Array
|
1597
1692
|
# resp.channel.destinations[0].id #=> String
|
@@ -1652,6 +1747,9 @@ module Aws::MediaLive
|
|
1652
1747
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
1653
1748
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
|
1654
1749
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
1750
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
1751
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0", "CODING_MODE_4_0", "CODING_MODE_8_0"
|
1752
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
1655
1753
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
|
1656
1754
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
1657
1755
|
# resp.channel.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -1765,6 +1863,7 @@ module Aws::MediaLive
|
|
1765
1863
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
1766
1864
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
1767
1865
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
1866
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
1768
1867
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
1769
1868
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
1770
1869
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -1789,6 +1888,7 @@ module Aws::MediaLive
|
|
1789
1888
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
1790
1889
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
1791
1890
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
1891
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
1792
1892
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
1793
1893
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
1794
1894
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -1836,6 +1936,8 @@ module Aws::MediaLive
|
|
1836
1936
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
1837
1937
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
1838
1938
|
# 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"
|
1939
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
1940
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
1839
1941
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
1840
1942
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
1841
1943
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -2078,6 +2180,23 @@ module Aws::MediaLive
|
|
2078
2180
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
2079
2181
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
2080
2182
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
2183
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
2184
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
2185
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
2186
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
2187
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
2188
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
2189
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
2190
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
2191
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
2192
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
2193
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
2194
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
2195
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
2196
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
2197
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
2198
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
2199
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
2081
2200
|
# resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
|
2082
2201
|
# resp.channel.encoder_settings.video_descriptions[0].name #=> String
|
2083
2202
|
# resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -2086,6 +2205,9 @@ module Aws::MediaLive
|
|
2086
2205
|
# resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
|
2087
2206
|
# resp.channel.id #=> String
|
2088
2207
|
# resp.channel.input_attachments #=> Array
|
2208
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
2209
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
2210
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
2089
2211
|
# resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
2090
2212
|
# resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
2091
2213
|
# resp.channel.input_attachments[0].input_attachment_name #=> String
|
@@ -2100,6 +2222,7 @@ module Aws::MediaLive
|
|
2100
2222
|
# resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
|
2101
2223
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
2102
2224
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
2225
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
2103
2226
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
2104
2227
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
2105
2228
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -2403,6 +2526,7 @@ module Aws::MediaLive
|
|
2403
2526
|
# statmux_settings: {
|
2404
2527
|
# maximum_bitrate: 1,
|
2405
2528
|
# minimum_bitrate: 1,
|
2529
|
+
# priority: 1,
|
2406
2530
|
# },
|
2407
2531
|
# },
|
2408
2532
|
# },
|
@@ -2420,6 +2544,7 @@ module Aws::MediaLive
|
|
2420
2544
|
# resp.multiplex_program.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
|
2421
2545
|
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
|
2422
2546
|
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
|
2547
|
+
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
|
2423
2548
|
# resp.multiplex_program.packet_identifiers_map.audio_pids #=> Array
|
2424
2549
|
# resp.multiplex_program.packet_identifiers_map.audio_pids[0] #=> Integer
|
2425
2550
|
# resp.multiplex_program.packet_identifiers_map.dvb_sub_pids #=> Array
|
@@ -2437,6 +2562,9 @@ module Aws::MediaLive
|
|
2437
2562
|
# resp.multiplex_program.packet_identifiers_map.scte_35_pid #=> Integer
|
2438
2563
|
# resp.multiplex_program.packet_identifiers_map.timed_metadata_pid #=> Integer
|
2439
2564
|
# resp.multiplex_program.packet_identifiers_map.video_pid #=> Integer
|
2565
|
+
# resp.multiplex_program.pipeline_details #=> Array
|
2566
|
+
# resp.multiplex_program.pipeline_details[0].active_channel_pipeline #=> String
|
2567
|
+
# resp.multiplex_program.pipeline_details[0].pipeline_id #=> String
|
2440
2568
|
# resp.multiplex_program.program_name #=> String
|
2441
2569
|
#
|
2442
2570
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateMultiplexProgram AWS API Documentation
|
@@ -2481,6 +2609,7 @@ module Aws::MediaLive
|
|
2481
2609
|
# @return [Types::DeleteChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2482
2610
|
#
|
2483
2611
|
# * {Types::DeleteChannelResponse#arn #arn} => String
|
2612
|
+
# * {Types::DeleteChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
|
2484
2613
|
# * {Types::DeleteChannelResponse#channel_class #channel_class} => String
|
2485
2614
|
# * {Types::DeleteChannelResponse#destinations #destinations} => Array<Types::OutputDestination>
|
2486
2615
|
# * {Types::DeleteChannelResponse#egress_endpoints #egress_endpoints} => Array<Types::ChannelEgressEndpoint>
|
@@ -2505,6 +2634,7 @@ module Aws::MediaLive
|
|
2505
2634
|
# @example Response structure
|
2506
2635
|
#
|
2507
2636
|
# resp.arn #=> String
|
2637
|
+
# resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
2508
2638
|
# resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
2509
2639
|
# resp.destinations #=> Array
|
2510
2640
|
# resp.destinations[0].id #=> String
|
@@ -2565,6 +2695,9 @@ module Aws::MediaLive
|
|
2565
2695
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
2566
2696
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
|
2567
2697
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
2698
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
2699
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0", "CODING_MODE_4_0", "CODING_MODE_8_0"
|
2700
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
2568
2701
|
# resp.encoder_settings.audio_descriptions[0].language_code #=> String
|
2569
2702
|
# resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
2570
2703
|
# resp.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -2678,6 +2811,7 @@ module Aws::MediaLive
|
|
2678
2811
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
2679
2812
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
2680
2813
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
2814
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
2681
2815
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
2682
2816
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
2683
2817
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -2702,6 +2836,7 @@ module Aws::MediaLive
|
|
2702
2836
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
2703
2837
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
2704
2838
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
2839
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
2705
2840
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
2706
2841
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
2707
2842
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -2749,6 +2884,8 @@ module Aws::MediaLive
|
|
2749
2884
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
2750
2885
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
2751
2886
|
# 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"
|
2887
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
2888
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
2752
2889
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
2753
2890
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
2754
2891
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -2991,6 +3128,23 @@ module Aws::MediaLive
|
|
2991
3128
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
2992
3129
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
2993
3130
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
3131
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
3132
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
3133
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
3134
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
3135
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
3136
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
3137
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
3138
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
3139
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
3140
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
3141
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
3142
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
3143
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
3144
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
3145
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
3146
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
3147
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
2994
3148
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
2995
3149
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
2996
3150
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -2999,6 +3153,9 @@ module Aws::MediaLive
|
|
2999
3153
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
3000
3154
|
# resp.id #=> String
|
3001
3155
|
# resp.input_attachments #=> Array
|
3156
|
+
# resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
3157
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
3158
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
3002
3159
|
# resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
3003
3160
|
# resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
3004
3161
|
# resp.input_attachments[0].input_attachment_name #=> String
|
@@ -3013,6 +3170,7 @@ module Aws::MediaLive
|
|
3013
3170
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
3014
3171
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
3015
3172
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
3173
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
3016
3174
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
3017
3175
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
3018
3176
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -3165,6 +3323,7 @@ module Aws::MediaLive
|
|
3165
3323
|
# * {Types::DeleteMultiplexProgramResponse#channel_id #channel_id} => String
|
3166
3324
|
# * {Types::DeleteMultiplexProgramResponse#multiplex_program_settings #multiplex_program_settings} => Types::MultiplexProgramSettings
|
3167
3325
|
# * {Types::DeleteMultiplexProgramResponse#packet_identifiers_map #packet_identifiers_map} => Types::MultiplexProgramPacketIdentifiersMap
|
3326
|
+
# * {Types::DeleteMultiplexProgramResponse#pipeline_details #pipeline_details} => Array<Types::MultiplexProgramPipelineDetail>
|
3168
3327
|
# * {Types::DeleteMultiplexProgramResponse#program_name #program_name} => String
|
3169
3328
|
#
|
3170
3329
|
# @example Request syntax with placeholder values
|
@@ -3184,6 +3343,7 @@ module Aws::MediaLive
|
|
3184
3343
|
# resp.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
|
3185
3344
|
# resp.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
|
3186
3345
|
# resp.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
|
3346
|
+
# resp.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
|
3187
3347
|
# resp.packet_identifiers_map.audio_pids #=> Array
|
3188
3348
|
# resp.packet_identifiers_map.audio_pids[0] #=> Integer
|
3189
3349
|
# resp.packet_identifiers_map.dvb_sub_pids #=> Array
|
@@ -3201,6 +3361,9 @@ module Aws::MediaLive
|
|
3201
3361
|
# resp.packet_identifiers_map.scte_35_pid #=> Integer
|
3202
3362
|
# resp.packet_identifiers_map.timed_metadata_pid #=> Integer
|
3203
3363
|
# resp.packet_identifiers_map.video_pid #=> Integer
|
3364
|
+
# resp.pipeline_details #=> Array
|
3365
|
+
# resp.pipeline_details[0].active_channel_pipeline #=> String
|
3366
|
+
# resp.pipeline_details[0].pipeline_id #=> String
|
3204
3367
|
# resp.program_name #=> String
|
3205
3368
|
#
|
3206
3369
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteMultiplexProgram AWS API Documentation
|
@@ -3333,6 +3496,7 @@ module Aws::MediaLive
|
|
3333
3496
|
# @return [Types::DescribeChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3334
3497
|
#
|
3335
3498
|
# * {Types::DescribeChannelResponse#arn #arn} => String
|
3499
|
+
# * {Types::DescribeChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
|
3336
3500
|
# * {Types::DescribeChannelResponse#channel_class #channel_class} => String
|
3337
3501
|
# * {Types::DescribeChannelResponse#destinations #destinations} => Array<Types::OutputDestination>
|
3338
3502
|
# * {Types::DescribeChannelResponse#egress_endpoints #egress_endpoints} => Array<Types::ChannelEgressEndpoint>
|
@@ -3357,6 +3521,7 @@ module Aws::MediaLive
|
|
3357
3521
|
# @example Response structure
|
3358
3522
|
#
|
3359
3523
|
# resp.arn #=> String
|
3524
|
+
# resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
3360
3525
|
# resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
3361
3526
|
# resp.destinations #=> Array
|
3362
3527
|
# resp.destinations[0].id #=> String
|
@@ -3417,6 +3582,9 @@ module Aws::MediaLive
|
|
3417
3582
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
3418
3583
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
|
3419
3584
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
3585
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
3586
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0", "CODING_MODE_4_0", "CODING_MODE_8_0"
|
3587
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
3420
3588
|
# resp.encoder_settings.audio_descriptions[0].language_code #=> String
|
3421
3589
|
# resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
3422
3590
|
# resp.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -3530,6 +3698,7 @@ module Aws::MediaLive
|
|
3530
3698
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
3531
3699
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
3532
3700
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
3701
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
3533
3702
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
3534
3703
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
3535
3704
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -3554,6 +3723,7 @@ module Aws::MediaLive
|
|
3554
3723
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
3555
3724
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
3556
3725
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
3726
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
3557
3727
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
3558
3728
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
3559
3729
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -3601,6 +3771,8 @@ module Aws::MediaLive
|
|
3601
3771
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
3602
3772
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
3603
3773
|
# 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"
|
3774
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
3775
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
3604
3776
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
3605
3777
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
3606
3778
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -3843,6 +4015,23 @@ module Aws::MediaLive
|
|
3843
4015
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
3844
4016
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
3845
4017
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
4018
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
4019
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
4020
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
4021
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
4022
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
4023
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
4024
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
4025
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
4026
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
4027
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
4028
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
4029
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
4030
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
4031
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
4032
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
4033
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
4034
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
3846
4035
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
3847
4036
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
3848
4037
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -3851,6 +4040,9 @@ module Aws::MediaLive
|
|
3851
4040
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
3852
4041
|
# resp.id #=> String
|
3853
4042
|
# resp.input_attachments #=> Array
|
4043
|
+
# resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
4044
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
4045
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
3854
4046
|
# resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
3855
4047
|
# resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
3856
4048
|
# resp.input_attachments[0].input_attachment_name #=> String
|
@@ -3865,6 +4057,7 @@ module Aws::MediaLive
|
|
3865
4057
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
3866
4058
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
3867
4059
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
4060
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
3868
4061
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
3869
4062
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
3870
4063
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -4005,6 +4198,7 @@ module Aws::MediaLive
|
|
4005
4198
|
# * {Types::DescribeInputDeviceResponse#arn #arn} => String
|
4006
4199
|
# * {Types::DescribeInputDeviceResponse#connection_state #connection_state} => String
|
4007
4200
|
# * {Types::DescribeInputDeviceResponse#device_settings_sync_state #device_settings_sync_state} => String
|
4201
|
+
# * {Types::DescribeInputDeviceResponse#device_update_status #device_update_status} => String
|
4008
4202
|
# * {Types::DescribeInputDeviceResponse#hd_device_settings #hd_device_settings} => Types::InputDeviceHdSettings
|
4009
4203
|
# * {Types::DescribeInputDeviceResponse#id #id} => String
|
4010
4204
|
# * {Types::DescribeInputDeviceResponse#mac_address #mac_address} => String
|
@@ -4024,6 +4218,7 @@ module Aws::MediaLive
|
|
4024
4218
|
# resp.arn #=> String
|
4025
4219
|
# resp.connection_state #=> String, one of "DISCONNECTED", "CONNECTED"
|
4026
4220
|
# resp.device_settings_sync_state #=> String, one of "SYNCED", "SYNCING"
|
4221
|
+
# resp.device_update_status #=> String, one of "UP_TO_DATE", "NOT_UP_TO_DATE"
|
4027
4222
|
# resp.hd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
4028
4223
|
# resp.hd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
4029
4224
|
# resp.hd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
@@ -4201,6 +4396,7 @@ module Aws::MediaLive
|
|
4201
4396
|
# * {Types::DescribeMultiplexProgramResponse#channel_id #channel_id} => String
|
4202
4397
|
# * {Types::DescribeMultiplexProgramResponse#multiplex_program_settings #multiplex_program_settings} => Types::MultiplexProgramSettings
|
4203
4398
|
# * {Types::DescribeMultiplexProgramResponse#packet_identifiers_map #packet_identifiers_map} => Types::MultiplexProgramPacketIdentifiersMap
|
4399
|
+
# * {Types::DescribeMultiplexProgramResponse#pipeline_details #pipeline_details} => Array<Types::MultiplexProgramPipelineDetail>
|
4204
4400
|
# * {Types::DescribeMultiplexProgramResponse#program_name #program_name} => String
|
4205
4401
|
#
|
4206
4402
|
# @example Request syntax with placeholder values
|
@@ -4220,6 +4416,7 @@ module Aws::MediaLive
|
|
4220
4416
|
# resp.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
|
4221
4417
|
# resp.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
|
4222
4418
|
# resp.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
|
4419
|
+
# resp.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
|
4223
4420
|
# resp.packet_identifiers_map.audio_pids #=> Array
|
4224
4421
|
# resp.packet_identifiers_map.audio_pids[0] #=> Integer
|
4225
4422
|
# resp.packet_identifiers_map.dvb_sub_pids #=> Array
|
@@ -4237,6 +4434,9 @@ module Aws::MediaLive
|
|
4237
4434
|
# resp.packet_identifiers_map.scte_35_pid #=> Integer
|
4238
4435
|
# resp.packet_identifiers_map.timed_metadata_pid #=> Integer
|
4239
4436
|
# resp.packet_identifiers_map.video_pid #=> Integer
|
4437
|
+
# resp.pipeline_details #=> Array
|
4438
|
+
# resp.pipeline_details[0].active_channel_pipeline #=> String
|
4439
|
+
# resp.pipeline_details[0].pipeline_id #=> String
|
4240
4440
|
# resp.program_name #=> String
|
4241
4441
|
#
|
4242
4442
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeMultiplexProgram AWS API Documentation
|
@@ -4486,6 +4686,7 @@ module Aws::MediaLive
|
|
4486
4686
|
#
|
4487
4687
|
# resp.channels #=> Array
|
4488
4688
|
# resp.channels[0].arn #=> String
|
4689
|
+
# resp.channels[0].cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
4489
4690
|
# resp.channels[0].channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4490
4691
|
# resp.channels[0].destinations #=> Array
|
4491
4692
|
# resp.channels[0].destinations[0].id #=> String
|
@@ -4502,6 +4703,9 @@ module Aws::MediaLive
|
|
4502
4703
|
# resp.channels[0].egress_endpoints[0].source_ip #=> String
|
4503
4704
|
# resp.channels[0].id #=> String
|
4504
4705
|
# resp.channels[0].input_attachments #=> Array
|
4706
|
+
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
4707
|
+
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
4708
|
+
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
4505
4709
|
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
4506
4710
|
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
4507
4711
|
# resp.channels[0].input_attachments[0].input_attachment_name #=> String
|
@@ -4516,6 +4720,7 @@ module Aws::MediaLive
|
|
4516
4720
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors #=> Array
|
4517
4721
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
4518
4722
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
4723
|
+
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
4519
4724
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
4520
4725
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
4521
4726
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -4561,6 +4766,49 @@ module Aws::MediaLive
|
|
4561
4766
|
req.send_request(options)
|
4562
4767
|
end
|
4563
4768
|
|
4769
|
+
# List input devices that are currently being transferred. List input
|
4770
|
+
# devices that you are transferring from your AWS account or input
|
4771
|
+
# devices that another AWS account is transferring to you.
|
4772
|
+
#
|
4773
|
+
# @option params [Integer] :max_results
|
4774
|
+
#
|
4775
|
+
# @option params [String] :next_token
|
4776
|
+
#
|
4777
|
+
# @option params [required, String] :transfer_type
|
4778
|
+
#
|
4779
|
+
# @return [Types::ListInputDeviceTransfersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4780
|
+
#
|
4781
|
+
# * {Types::ListInputDeviceTransfersResponse#input_device_transfers #input_device_transfers} => Array<Types::TransferringInputDeviceSummary>
|
4782
|
+
# * {Types::ListInputDeviceTransfersResponse#next_token #next_token} => String
|
4783
|
+
#
|
4784
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4785
|
+
#
|
4786
|
+
# @example Request syntax with placeholder values
|
4787
|
+
#
|
4788
|
+
# resp = client.list_input_device_transfers({
|
4789
|
+
# max_results: 1,
|
4790
|
+
# next_token: "__string",
|
4791
|
+
# transfer_type: "__string", # required
|
4792
|
+
# })
|
4793
|
+
#
|
4794
|
+
# @example Response structure
|
4795
|
+
#
|
4796
|
+
# resp.input_device_transfers #=> Array
|
4797
|
+
# resp.input_device_transfers[0].id #=> String
|
4798
|
+
# resp.input_device_transfers[0].message #=> String
|
4799
|
+
# resp.input_device_transfers[0].target_customer_id #=> String
|
4800
|
+
# resp.input_device_transfers[0].transfer_type #=> String, one of "OUTGOING", "INCOMING"
|
4801
|
+
# resp.next_token #=> String
|
4802
|
+
#
|
4803
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfers AWS API Documentation
|
4804
|
+
#
|
4805
|
+
# @overload list_input_device_transfers(params = {})
|
4806
|
+
# @param [Hash] params ({})
|
4807
|
+
def list_input_device_transfers(params = {}, options = {})
|
4808
|
+
req = build_request(:list_input_device_transfers, params)
|
4809
|
+
req.send_request(options)
|
4810
|
+
end
|
4811
|
+
|
4564
4812
|
# List input devices
|
4565
4813
|
#
|
4566
4814
|
# @option params [Integer] :max_results
|
@@ -4587,6 +4835,7 @@ module Aws::MediaLive
|
|
4587
4835
|
# resp.input_devices[0].arn #=> String
|
4588
4836
|
# resp.input_devices[0].connection_state #=> String, one of "DISCONNECTED", "CONNECTED"
|
4589
4837
|
# resp.input_devices[0].device_settings_sync_state #=> String, one of "SYNCED", "SYNCING"
|
4838
|
+
# resp.input_devices[0].device_update_status #=> String, one of "UP_TO_DATE", "NOT_UP_TO_DATE"
|
4590
4839
|
# resp.input_devices[0].hd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
4591
4840
|
# resp.input_devices[0].hd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
4592
4841
|
# resp.input_devices[0].hd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
@@ -5071,6 +5320,27 @@ module Aws::MediaLive
|
|
5071
5320
|
req.send_request(options)
|
5072
5321
|
end
|
5073
5322
|
|
5323
|
+
# Reject the transfer of the specified input device to your AWS account.
|
5324
|
+
#
|
5325
|
+
# @option params [required, String] :input_device_id
|
5326
|
+
#
|
5327
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5328
|
+
#
|
5329
|
+
# @example Request syntax with placeholder values
|
5330
|
+
#
|
5331
|
+
# resp = client.reject_input_device_transfer({
|
5332
|
+
# input_device_id: "__string", # required
|
5333
|
+
# })
|
5334
|
+
#
|
5335
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransfer AWS API Documentation
|
5336
|
+
#
|
5337
|
+
# @overload reject_input_device_transfer(params = {})
|
5338
|
+
# @param [Hash] params ({})
|
5339
|
+
def reject_input_device_transfer(params = {}, options = {})
|
5340
|
+
req = build_request(:reject_input_device_transfer, params)
|
5341
|
+
req.send_request(options)
|
5342
|
+
end
|
5343
|
+
|
5074
5344
|
# Starts an existing channel
|
5075
5345
|
#
|
5076
5346
|
# @option params [required, String] :channel_id
|
@@ -5078,6 +5348,7 @@ module Aws::MediaLive
|
|
5078
5348
|
# @return [Types::StartChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5079
5349
|
#
|
5080
5350
|
# * {Types::StartChannelResponse#arn #arn} => String
|
5351
|
+
# * {Types::StartChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
|
5081
5352
|
# * {Types::StartChannelResponse#channel_class #channel_class} => String
|
5082
5353
|
# * {Types::StartChannelResponse#destinations #destinations} => Array<Types::OutputDestination>
|
5083
5354
|
# * {Types::StartChannelResponse#egress_endpoints #egress_endpoints} => Array<Types::ChannelEgressEndpoint>
|
@@ -5102,6 +5373,7 @@ module Aws::MediaLive
|
|
5102
5373
|
# @example Response structure
|
5103
5374
|
#
|
5104
5375
|
# resp.arn #=> String
|
5376
|
+
# resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
5105
5377
|
# resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
5106
5378
|
# resp.destinations #=> Array
|
5107
5379
|
# resp.destinations[0].id #=> String
|
@@ -5162,6 +5434,9 @@ module Aws::MediaLive
|
|
5162
5434
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
5163
5435
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
|
5164
5436
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
5437
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
5438
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0", "CODING_MODE_4_0", "CODING_MODE_8_0"
|
5439
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
5165
5440
|
# resp.encoder_settings.audio_descriptions[0].language_code #=> String
|
5166
5441
|
# resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
5167
5442
|
# resp.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -5275,6 +5550,7 @@ module Aws::MediaLive
|
|
5275
5550
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
5276
5551
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
5277
5552
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
5553
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
5278
5554
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
5279
5555
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
5280
5556
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -5299,6 +5575,7 @@ module Aws::MediaLive
|
|
5299
5575
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
5300
5576
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
5301
5577
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
5578
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
5302
5579
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
5303
5580
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
5304
5581
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -5346,6 +5623,8 @@ module Aws::MediaLive
|
|
5346
5623
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
5347
5624
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
5348
5625
|
# 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"
|
5626
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
5627
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
5349
5628
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
5350
5629
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
5351
5630
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -5588,6 +5867,23 @@ module Aws::MediaLive
|
|
5588
5867
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
5589
5868
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
5590
5869
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
5870
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
5871
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
5872
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
5873
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
5874
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
5875
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
5876
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
5877
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
5878
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
5879
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
5880
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
5881
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
5882
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
5883
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
5884
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
5885
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
5886
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
5591
5887
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
5592
5888
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
5593
5889
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -5596,6 +5892,9 @@ module Aws::MediaLive
|
|
5596
5892
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
5597
5893
|
# resp.id #=> String
|
5598
5894
|
# resp.input_attachments #=> Array
|
5895
|
+
# resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
5896
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
5897
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
5599
5898
|
# resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
5600
5899
|
# resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
5601
5900
|
# resp.input_attachments[0].input_attachment_name #=> String
|
@@ -5610,6 +5909,7 @@ module Aws::MediaLive
|
|
5610
5909
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
5611
5910
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
5612
5911
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
5912
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
5613
5913
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
5614
5914
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
5615
5915
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -5717,6 +6017,7 @@ module Aws::MediaLive
|
|
5717
6017
|
# @return [Types::StopChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5718
6018
|
#
|
5719
6019
|
# * {Types::StopChannelResponse#arn #arn} => String
|
6020
|
+
# * {Types::StopChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
|
5720
6021
|
# * {Types::StopChannelResponse#channel_class #channel_class} => String
|
5721
6022
|
# * {Types::StopChannelResponse#destinations #destinations} => Array<Types::OutputDestination>
|
5722
6023
|
# * {Types::StopChannelResponse#egress_endpoints #egress_endpoints} => Array<Types::ChannelEgressEndpoint>
|
@@ -5741,6 +6042,7 @@ module Aws::MediaLive
|
|
5741
6042
|
# @example Response structure
|
5742
6043
|
#
|
5743
6044
|
# resp.arn #=> String
|
6045
|
+
# resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
5744
6046
|
# resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
5745
6047
|
# resp.destinations #=> Array
|
5746
6048
|
# resp.destinations[0].id #=> String
|
@@ -5801,6 +6103,9 @@ module Aws::MediaLive
|
|
5801
6103
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
5802
6104
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
|
5803
6105
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
6106
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
6107
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0", "CODING_MODE_4_0", "CODING_MODE_8_0"
|
6108
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
5804
6109
|
# resp.encoder_settings.audio_descriptions[0].language_code #=> String
|
5805
6110
|
# resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
5806
6111
|
# resp.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -5914,6 +6219,7 @@ module Aws::MediaLive
|
|
5914
6219
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
5915
6220
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
5916
6221
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
6222
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
5917
6223
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
5918
6224
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
5919
6225
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -5938,6 +6244,7 @@ module Aws::MediaLive
|
|
5938
6244
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
5939
6245
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
5940
6246
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
6247
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
5941
6248
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
5942
6249
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
5943
6250
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -5985,6 +6292,8 @@ module Aws::MediaLive
|
|
5985
6292
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
5986
6293
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
5987
6294
|
# 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"
|
6295
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
6296
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
5988
6297
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
5989
6298
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
5990
6299
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -6227,6 +6536,23 @@ module Aws::MediaLive
|
|
6227
6536
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
6228
6537
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
6229
6538
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
6539
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
6540
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
6541
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
6542
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
6543
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
6544
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
6545
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
6546
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
6547
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
6548
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
6549
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
6550
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
6551
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
6552
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
6553
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
6554
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
6555
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
6230
6556
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
6231
6557
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
6232
6558
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -6235,6 +6561,9 @@ module Aws::MediaLive
|
|
6235
6561
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
6236
6562
|
# resp.id #=> String
|
6237
6563
|
# resp.input_attachments #=> Array
|
6564
|
+
# resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
6565
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
6566
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
6238
6567
|
# resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
6239
6568
|
# resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
6240
6569
|
# resp.input_attachments[0].input_attachment_name #=> String
|
@@ -6249,6 +6578,7 @@ module Aws::MediaLive
|
|
6249
6578
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
6250
6579
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
6251
6580
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
6581
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
6252
6582
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
6253
6583
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
6254
6584
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -6349,8 +6679,38 @@ module Aws::MediaLive
|
|
6349
6679
|
req.send_request(options)
|
6350
6680
|
end
|
6351
6681
|
|
6682
|
+
# Start an input device transfer to another AWS account. After you make
|
6683
|
+
# the request, the other account must accept or reject the transfer.
|
6684
|
+
#
|
6685
|
+
# @option params [required, String] :input_device_id
|
6686
|
+
#
|
6687
|
+
# @option params [String] :target_customer_id
|
6688
|
+
#
|
6689
|
+
# @option params [String] :transfer_message
|
6690
|
+
#
|
6691
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
6692
|
+
#
|
6693
|
+
# @example Request syntax with placeholder values
|
6694
|
+
#
|
6695
|
+
# resp = client.transfer_input_device({
|
6696
|
+
# input_device_id: "__string", # required
|
6697
|
+
# target_customer_id: "__string",
|
6698
|
+
# transfer_message: "__string",
|
6699
|
+
# })
|
6700
|
+
#
|
6701
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDevice AWS API Documentation
|
6702
|
+
#
|
6703
|
+
# @overload transfer_input_device(params = {})
|
6704
|
+
# @param [Hash] params ({})
|
6705
|
+
def transfer_input_device(params = {}, options = {})
|
6706
|
+
req = build_request(:transfer_input_device, params)
|
6707
|
+
req.send_request(options)
|
6708
|
+
end
|
6709
|
+
|
6352
6710
|
# Updates a channel.
|
6353
6711
|
#
|
6712
|
+
# @option params [Types::CdiInputSpecification] :cdi_input_specification
|
6713
|
+
#
|
6354
6714
|
# @option params [required, String] :channel_id
|
6355
6715
|
#
|
6356
6716
|
# @option params [Array<Types::OutputDestination>] :destinations
|
@@ -6376,6 +6736,9 @@ module Aws::MediaLive
|
|
6376
6736
|
# @example Request syntax with placeholder values
|
6377
6737
|
#
|
6378
6738
|
# resp = client.update_channel({
|
6739
|
+
# cdi_input_specification: {
|
6740
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
6741
|
+
# },
|
6379
6742
|
# channel_id: "__string", # required
|
6380
6743
|
# destinations: [
|
6381
6744
|
# {
|
@@ -6460,6 +6823,11 @@ module Aws::MediaLive
|
|
6460
6823
|
# },
|
6461
6824
|
# pass_through_settings: {
|
6462
6825
|
# },
|
6826
|
+
# wav_settings: {
|
6827
|
+
# bit_depth: 1.0,
|
6828
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
6829
|
+
# sample_rate: 1.0,
|
6830
|
+
# },
|
6463
6831
|
# },
|
6464
6832
|
# language_code: "__stringMin1Max35",
|
6465
6833
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -6662,6 +7030,7 @@ module Aws::MediaLive
|
|
6662
7030
|
# destination_ref_id: "__string",
|
6663
7031
|
# },
|
6664
7032
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
7033
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
6665
7034
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
6666
7035
|
# hls_cdn_settings: {
|
6667
7036
|
# hls_akamai_settings: {
|
@@ -6696,6 +7065,7 @@ module Aws::MediaLive
|
|
6696
7065
|
# },
|
6697
7066
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
6698
7067
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
7068
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
6699
7069
|
# index_n_segments: 1,
|
6700
7070
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
6701
7071
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -6761,6 +7131,7 @@ module Aws::MediaLive
|
|
6761
7131
|
# multiplex_group_settings: {
|
6762
7132
|
# },
|
6763
7133
|
# rtmp_group_settings: {
|
7134
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
6764
7135
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
6765
7136
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
6766
7137
|
# cache_length: 1,
|
@@ -6842,6 +7213,8 @@ module Aws::MediaLive
|
|
6842
7213
|
# transport_stream_id: 1,
|
6843
7214
|
# video_pid: "__string",
|
6844
7215
|
# },
|
7216
|
+
# raw_settings: {
|
7217
|
+
# },
|
6845
7218
|
# },
|
6846
7219
|
# extension: "__string",
|
6847
7220
|
# name_modifier: "__string",
|
@@ -7104,6 +7477,29 @@ module Aws::MediaLive
|
|
7104
7477
|
# tier: "HIGH", # accepts HIGH, MAIN
|
7105
7478
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
7106
7479
|
# },
|
7480
|
+
# mpeg_2_settings: {
|
7481
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
7482
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
7483
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
7484
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
7485
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
7486
|
+
# filter_settings: {
|
7487
|
+
# temporal_filter_settings: {
|
7488
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
7489
|
+
# 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
|
7490
|
+
# },
|
7491
|
+
# },
|
7492
|
+
# 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
|
7493
|
+
# framerate_denominator: 1, # required
|
7494
|
+
# framerate_numerator: 1, # required
|
7495
|
+
# gop_closed_cadence: 1,
|
7496
|
+
# gop_num_b_frames: 1,
|
7497
|
+
# gop_size: 1.0,
|
7498
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
7499
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
7500
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
7501
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
7502
|
+
# },
|
7107
7503
|
# },
|
7108
7504
|
# height: 1,
|
7109
7505
|
# name: "__string", # required
|
@@ -7117,6 +7513,16 @@ module Aws::MediaLive
|
|
7117
7513
|
# input_attachments: [
|
7118
7514
|
# {
|
7119
7515
|
# automatic_input_failover_settings: {
|
7516
|
+
# error_clear_time_msec: 1,
|
7517
|
+
# failover_conditions: [
|
7518
|
+
# {
|
7519
|
+
# failover_condition_settings: {
|
7520
|
+
# input_loss_settings: {
|
7521
|
+
# input_loss_threshold_msec: 1,
|
7522
|
+
# },
|
7523
|
+
# },
|
7524
|
+
# },
|
7525
|
+
# ],
|
7120
7526
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
7121
7527
|
# secondary_input_id: "__string", # required
|
7122
7528
|
# },
|
@@ -7149,6 +7555,9 @@ module Aws::MediaLive
|
|
7149
7555
|
# language_code: "__string",
|
7150
7556
|
# name: "__stringMin1", # required
|
7151
7557
|
# selector_settings: {
|
7558
|
+
# ancillary_source_settings: {
|
7559
|
+
# source_ancillary_channel_number: 1,
|
7560
|
+
# },
|
7152
7561
|
# arib_source_settings: {
|
7153
7562
|
# },
|
7154
7563
|
# dvb_sub_source_settings: {
|
@@ -7216,6 +7625,7 @@ module Aws::MediaLive
|
|
7216
7625
|
# @example Response structure
|
7217
7626
|
#
|
7218
7627
|
# resp.channel.arn #=> String
|
7628
|
+
# resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
7219
7629
|
# resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
7220
7630
|
# resp.channel.destinations #=> Array
|
7221
7631
|
# resp.channel.destinations[0].id #=> String
|
@@ -7276,6 +7686,9 @@ module Aws::MediaLive
|
|
7276
7686
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
7277
7687
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
|
7278
7688
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
7689
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
7690
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0", "CODING_MODE_4_0", "CODING_MODE_8_0"
|
7691
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
7279
7692
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
|
7280
7693
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
7281
7694
|
# resp.channel.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -7389,6 +7802,7 @@ module Aws::MediaLive
|
|
7389
7802
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
7390
7803
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
7391
7804
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
7805
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
7392
7806
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
7393
7807
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
7394
7808
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -7413,6 +7827,7 @@ module Aws::MediaLive
|
|
7413
7827
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
7414
7828
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
7415
7829
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
7830
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
7416
7831
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
7417
7832
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
7418
7833
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -7460,6 +7875,8 @@ module Aws::MediaLive
|
|
7460
7875
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
7461
7876
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
7462
7877
|
# 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"
|
7878
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
7879
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
7463
7880
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
7464
7881
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
7465
7882
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -7702,6 +8119,23 @@ module Aws::MediaLive
|
|
7702
8119
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
7703
8120
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
7704
8121
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
8122
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
8123
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
8124
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
8125
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
8126
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
8127
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
8128
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
8129
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
8130
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
8131
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
8132
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
8133
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
8134
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
8135
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
8136
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
8137
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
8138
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
7705
8139
|
# resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
|
7706
8140
|
# resp.channel.encoder_settings.video_descriptions[0].name #=> String
|
7707
8141
|
# resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -7710,6 +8144,9 @@ module Aws::MediaLive
|
|
7710
8144
|
# resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
|
7711
8145
|
# resp.channel.id #=> String
|
7712
8146
|
# resp.channel.input_attachments #=> Array
|
8147
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
8148
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
8149
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
7713
8150
|
# resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
7714
8151
|
# resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
7715
8152
|
# resp.channel.input_attachments[0].input_attachment_name #=> String
|
@@ -7724,6 +8161,7 @@ module Aws::MediaLive
|
|
7724
8161
|
# resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
|
7725
8162
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
7726
8163
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
8164
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
7727
8165
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
7728
8166
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
7729
8167
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -7818,6 +8256,7 @@ module Aws::MediaLive
|
|
7818
8256
|
# @example Response structure
|
7819
8257
|
#
|
7820
8258
|
# resp.channel.arn #=> String
|
8259
|
+
# resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
7821
8260
|
# resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
7822
8261
|
# resp.channel.destinations #=> Array
|
7823
8262
|
# resp.channel.destinations[0].id #=> String
|
@@ -7878,6 +8317,9 @@ module Aws::MediaLive
|
|
7878
8317
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
7879
8318
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
|
7880
8319
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
8320
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
8321
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0", "CODING_MODE_4_0", "CODING_MODE_8_0"
|
8322
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
7881
8323
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
|
7882
8324
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
7883
8325
|
# resp.channel.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -7991,6 +8433,7 @@ module Aws::MediaLive
|
|
7991
8433
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
7992
8434
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
7993
8435
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
8436
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
7994
8437
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
7995
8438
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
7996
8439
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -8015,6 +8458,7 @@ module Aws::MediaLive
|
|
8015
8458
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
8016
8459
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
8017
8460
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
8461
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
8018
8462
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
8019
8463
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
8020
8464
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -8062,6 +8506,8 @@ module Aws::MediaLive
|
|
8062
8506
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
8063
8507
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
8064
8508
|
# 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"
|
8509
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
8510
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
8065
8511
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
8066
8512
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
8067
8513
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -8304,6 +8750,23 @@ module Aws::MediaLive
|
|
8304
8750
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
8305
8751
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
8306
8752
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
8753
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
8754
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
8755
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
8756
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
8757
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
8758
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
|
8759
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
8760
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_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"
|
8761
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
8762
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
8763
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
8764
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
8765
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
8766
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
8767
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
8768
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
8769
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
8307
8770
|
# resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
|
8308
8771
|
# resp.channel.encoder_settings.video_descriptions[0].name #=> String
|
8309
8772
|
# resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -8312,6 +8775,9 @@ module Aws::MediaLive
|
|
8312
8775
|
# resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
|
8313
8776
|
# resp.channel.id #=> String
|
8314
8777
|
# resp.channel.input_attachments #=> Array
|
8778
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
8779
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
8780
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
8315
8781
|
# resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
8316
8782
|
# resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
8317
8783
|
# resp.channel.input_attachments[0].input_attachment_name #=> String
|
@@ -8326,6 +8792,7 @@ module Aws::MediaLive
|
|
8326
8792
|
# resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
|
8327
8793
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
8328
8794
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
8795
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
8329
8796
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
8330
8797
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
8331
8798
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -8481,6 +8948,7 @@ module Aws::MediaLive
|
|
8481
8948
|
# * {Types::UpdateInputDeviceResponse#arn #arn} => String
|
8482
8949
|
# * {Types::UpdateInputDeviceResponse#connection_state #connection_state} => String
|
8483
8950
|
# * {Types::UpdateInputDeviceResponse#device_settings_sync_state #device_settings_sync_state} => String
|
8951
|
+
# * {Types::UpdateInputDeviceResponse#device_update_status #device_update_status} => String
|
8484
8952
|
# * {Types::UpdateInputDeviceResponse#hd_device_settings #hd_device_settings} => Types::InputDeviceHdSettings
|
8485
8953
|
# * {Types::UpdateInputDeviceResponse#id #id} => String
|
8486
8954
|
# * {Types::UpdateInputDeviceResponse#mac_address #mac_address} => String
|
@@ -8505,6 +8973,7 @@ module Aws::MediaLive
|
|
8505
8973
|
# resp.arn #=> String
|
8506
8974
|
# resp.connection_state #=> String, one of "DISCONNECTED", "CONNECTED"
|
8507
8975
|
# resp.device_settings_sync_state #=> String, one of "SYNCED", "SYNCING"
|
8976
|
+
# resp.device_update_status #=> String, one of "UP_TO_DATE", "NOT_UP_TO_DATE"
|
8508
8977
|
# resp.hd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
8509
8978
|
# resp.hd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
8510
8979
|
# resp.hd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
@@ -8664,6 +9133,7 @@ module Aws::MediaLive
|
|
8664
9133
|
# statmux_settings: {
|
8665
9134
|
# maximum_bitrate: 1,
|
8666
9135
|
# minimum_bitrate: 1,
|
9136
|
+
# priority: 1,
|
8667
9137
|
# },
|
8668
9138
|
# },
|
8669
9139
|
# },
|
@@ -8680,6 +9150,7 @@ module Aws::MediaLive
|
|
8680
9150
|
# resp.multiplex_program.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
|
8681
9151
|
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
|
8682
9152
|
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
|
9153
|
+
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
|
8683
9154
|
# resp.multiplex_program.packet_identifiers_map.audio_pids #=> Array
|
8684
9155
|
# resp.multiplex_program.packet_identifiers_map.audio_pids[0] #=> Integer
|
8685
9156
|
# resp.multiplex_program.packet_identifiers_map.dvb_sub_pids #=> Array
|
@@ -8697,6 +9168,9 @@ module Aws::MediaLive
|
|
8697
9168
|
# resp.multiplex_program.packet_identifiers_map.scte_35_pid #=> Integer
|
8698
9169
|
# resp.multiplex_program.packet_identifiers_map.timed_metadata_pid #=> Integer
|
8699
9170
|
# resp.multiplex_program.packet_identifiers_map.video_pid #=> Integer
|
9171
|
+
# resp.multiplex_program.pipeline_details #=> Array
|
9172
|
+
# resp.multiplex_program.pipeline_details[0].active_channel_pipeline #=> String
|
9173
|
+
# resp.multiplex_program.pipeline_details[0].pipeline_id #=> String
|
8700
9174
|
# resp.multiplex_program.program_name #=> String
|
8701
9175
|
#
|
8702
9176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateMultiplexProgram AWS API Documentation
|
@@ -8776,7 +9250,7 @@ module Aws::MediaLive
|
|
8776
9250
|
params: params,
|
8777
9251
|
config: config)
|
8778
9252
|
context[:gem_name] = 'aws-sdk-medialive'
|
8779
|
-
context[:gem_version] = '1.
|
9253
|
+
context[:gem_version] = '1.60.0'
|
8780
9254
|
Seahorse::Client::Request.new(handlers, context)
|
8781
9255
|
end
|
8782
9256
|
|