aws-sdk-medialive 1.54.0 → 1.59.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 532f85ba58b5cb15e0d09fb17d961a82e71cff07caa98c1fadf2b50559327df1
4
- data.tar.gz: 49df3345647102a384c219d4f3b85c52c904f47890e075362469895fc10e19c0
3
+ metadata.gz: 9d1f1c445b63ac5419c96531cf929c04d29234729abd4a70fb687f60bed4a2c5
4
+ data.tar.gz: f5fe4c38a35e7a1f5beaeced454ca63910f8c763d51020bcb85ec6d0137ee1ae
5
5
  SHA512:
6
- metadata.gz: a801afa08b5336ed23c0dca34e056fdd869b5295db083f3df2fe240dd2c8d04dc54e67c46d87a07992de476339c21242417956829fb8ab905003b853f77bf560
7
- data.tar.gz: eaa120673edd0b8fac663653e1b9a1decb1ff973e27bc7726c9ece0a6d76703772530dfa31f8389b5ba1edc449b19a85711b92297bff1f12397c70d21d775ddc
6
+ metadata.gz: c5996d5c39c2bf8d2c7c30e14f976f1ad8c9db8d1bae03f431d08ec36d462b88a05570484f12132eacf2170e98770c0ca6170b8ed29da69011548d21c15e1315
7
+ data.tar.gz: 1280188e02181ec7bd2c8e220a7592dd49c89a9bdbf6459bb0c8a7c3f17af8c39e1fbc002d2c1537851bdd3a65ccdffb8be2b59b50984a5ad9ed0af8d115a7ca
@@ -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.batch_delete(params)
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.54.0'
52
+ GEM_VERSION = '1.59.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&lt;Types::OutputDestination&gt;
2486
2615
  # * {Types::DeleteChannelResponse#egress_endpoints #egress_endpoints} => Array&lt;Types::ChannelEgressEndpoint&gt;
@@ -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&lt;Types::MultiplexProgramPipelineDetail&gt;
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&lt;Types::OutputDestination&gt;
3338
3502
  # * {Types::DescribeChannelResponse#egress_endpoints #egress_endpoints} => Array&lt;Types::ChannelEgressEndpoint&gt;
@@ -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"
@@ -4201,6 +4394,7 @@ module Aws::MediaLive
4201
4394
  # * {Types::DescribeMultiplexProgramResponse#channel_id #channel_id} => String
4202
4395
  # * {Types::DescribeMultiplexProgramResponse#multiplex_program_settings #multiplex_program_settings} => Types::MultiplexProgramSettings
4203
4396
  # * {Types::DescribeMultiplexProgramResponse#packet_identifiers_map #packet_identifiers_map} => Types::MultiplexProgramPacketIdentifiersMap
4397
+ # * {Types::DescribeMultiplexProgramResponse#pipeline_details #pipeline_details} => Array&lt;Types::MultiplexProgramPipelineDetail&gt;
4204
4398
  # * {Types::DescribeMultiplexProgramResponse#program_name #program_name} => String
4205
4399
  #
4206
4400
  # @example Request syntax with placeholder values
@@ -4220,6 +4414,7 @@ module Aws::MediaLive
4220
4414
  # resp.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
4221
4415
  # resp.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
4222
4416
  # resp.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
4417
+ # resp.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
4223
4418
  # resp.packet_identifiers_map.audio_pids #=> Array
4224
4419
  # resp.packet_identifiers_map.audio_pids[0] #=> Integer
4225
4420
  # resp.packet_identifiers_map.dvb_sub_pids #=> Array
@@ -4237,6 +4432,9 @@ module Aws::MediaLive
4237
4432
  # resp.packet_identifiers_map.scte_35_pid #=> Integer
4238
4433
  # resp.packet_identifiers_map.timed_metadata_pid #=> Integer
4239
4434
  # resp.packet_identifiers_map.video_pid #=> Integer
4435
+ # resp.pipeline_details #=> Array
4436
+ # resp.pipeline_details[0].active_channel_pipeline #=> String
4437
+ # resp.pipeline_details[0].pipeline_id #=> String
4240
4438
  # resp.program_name #=> String
4241
4439
  #
4242
4440
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeMultiplexProgram AWS API Documentation
@@ -4486,6 +4684,7 @@ module Aws::MediaLive
4486
4684
  #
4487
4685
  # resp.channels #=> Array
4488
4686
  # resp.channels[0].arn #=> String
4687
+ # resp.channels[0].cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
4489
4688
  # resp.channels[0].channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
4490
4689
  # resp.channels[0].destinations #=> Array
4491
4690
  # resp.channels[0].destinations[0].id #=> String
@@ -4502,6 +4701,9 @@ module Aws::MediaLive
4502
4701
  # resp.channels[0].egress_endpoints[0].source_ip #=> String
4503
4702
  # resp.channels[0].id #=> String
4504
4703
  # resp.channels[0].input_attachments #=> Array
4704
+ # resp.channels[0].input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
4705
+ # resp.channels[0].input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
4706
+ # 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
4707
  # resp.channels[0].input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
4506
4708
  # resp.channels[0].input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
4507
4709
  # resp.channels[0].input_attachments[0].input_attachment_name #=> String
@@ -4516,6 +4718,7 @@ module Aws::MediaLive
4516
4718
  # resp.channels[0].input_attachments[0].input_settings.caption_selectors #=> Array
4517
4719
  # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
4518
4720
  # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].name #=> String
4721
+ # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
4519
4722
  # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
4520
4723
  # 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
4724
  # 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 +4764,49 @@ module Aws::MediaLive
4561
4764
  req.send_request(options)
4562
4765
  end
4563
4766
 
4767
+ # List input devices that are currently being transferred. List input
4768
+ # devices that you are transferring from your AWS account or input
4769
+ # devices that another AWS account is transferring to you.
4770
+ #
4771
+ # @option params [Integer] :max_results
4772
+ #
4773
+ # @option params [String] :next_token
4774
+ #
4775
+ # @option params [required, String] :transfer_type
4776
+ #
4777
+ # @return [Types::ListInputDeviceTransfersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4778
+ #
4779
+ # * {Types::ListInputDeviceTransfersResponse#input_device_transfers #input_device_transfers} => Array&lt;Types::TransferringInputDeviceSummary&gt;
4780
+ # * {Types::ListInputDeviceTransfersResponse#next_token #next_token} => String
4781
+ #
4782
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4783
+ #
4784
+ # @example Request syntax with placeholder values
4785
+ #
4786
+ # resp = client.list_input_device_transfers({
4787
+ # max_results: 1,
4788
+ # next_token: "__string",
4789
+ # transfer_type: "__string", # required
4790
+ # })
4791
+ #
4792
+ # @example Response structure
4793
+ #
4794
+ # resp.input_device_transfers #=> Array
4795
+ # resp.input_device_transfers[0].id #=> String
4796
+ # resp.input_device_transfers[0].message #=> String
4797
+ # resp.input_device_transfers[0].target_customer_id #=> String
4798
+ # resp.input_device_transfers[0].transfer_type #=> String, one of "OUTGOING", "INCOMING"
4799
+ # resp.next_token #=> String
4800
+ #
4801
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfers AWS API Documentation
4802
+ #
4803
+ # @overload list_input_device_transfers(params = {})
4804
+ # @param [Hash] params ({})
4805
+ def list_input_device_transfers(params = {}, options = {})
4806
+ req = build_request(:list_input_device_transfers, params)
4807
+ req.send_request(options)
4808
+ end
4809
+
4564
4810
  # List input devices
4565
4811
  #
4566
4812
  # @option params [Integer] :max_results
@@ -5071,6 +5317,27 @@ module Aws::MediaLive
5071
5317
  req.send_request(options)
5072
5318
  end
5073
5319
 
5320
+ # Reject the transfer of the specified input device to your AWS account.
5321
+ #
5322
+ # @option params [required, String] :input_device_id
5323
+ #
5324
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5325
+ #
5326
+ # @example Request syntax with placeholder values
5327
+ #
5328
+ # resp = client.reject_input_device_transfer({
5329
+ # input_device_id: "__string", # required
5330
+ # })
5331
+ #
5332
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransfer AWS API Documentation
5333
+ #
5334
+ # @overload reject_input_device_transfer(params = {})
5335
+ # @param [Hash] params ({})
5336
+ def reject_input_device_transfer(params = {}, options = {})
5337
+ req = build_request(:reject_input_device_transfer, params)
5338
+ req.send_request(options)
5339
+ end
5340
+
5074
5341
  # Starts an existing channel
5075
5342
  #
5076
5343
  # @option params [required, String] :channel_id
@@ -5078,6 +5345,7 @@ module Aws::MediaLive
5078
5345
  # @return [Types::StartChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5079
5346
  #
5080
5347
  # * {Types::StartChannelResponse#arn #arn} => String
5348
+ # * {Types::StartChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
5081
5349
  # * {Types::StartChannelResponse#channel_class #channel_class} => String
5082
5350
  # * {Types::StartChannelResponse#destinations #destinations} => Array&lt;Types::OutputDestination&gt;
5083
5351
  # * {Types::StartChannelResponse#egress_endpoints #egress_endpoints} => Array&lt;Types::ChannelEgressEndpoint&gt;
@@ -5102,6 +5370,7 @@ module Aws::MediaLive
5102
5370
  # @example Response structure
5103
5371
  #
5104
5372
  # resp.arn #=> String
5373
+ # resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
5105
5374
  # resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
5106
5375
  # resp.destinations #=> Array
5107
5376
  # resp.destinations[0].id #=> String
@@ -5162,6 +5431,9 @@ module Aws::MediaLive
5162
5431
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
5163
5432
  # 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
5433
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
5434
+ # resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
5435
+ # 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"
5436
+ # resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
5165
5437
  # resp.encoder_settings.audio_descriptions[0].language_code #=> String
5166
5438
  # resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
5167
5439
  # resp.encoder_settings.audio_descriptions[0].name #=> String
@@ -5275,6 +5547,7 @@ module Aws::MediaLive
5275
5547
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
5276
5548
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
5277
5549
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
5550
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
5278
5551
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
5279
5552
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
5280
5553
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
@@ -5299,6 +5572,7 @@ module Aws::MediaLive
5299
5572
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
5300
5573
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
5301
5574
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
5575
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
5302
5576
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
5303
5577
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
5304
5578
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
@@ -5346,6 +5620,8 @@ module Aws::MediaLive
5346
5620
  # resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
5347
5621
  # resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
5348
5622
  # 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"
5623
+ # resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
5624
+ # resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
5349
5625
  # resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
5350
5626
  # resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
5351
5627
  # resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
@@ -5588,6 +5864,23 @@ module Aws::MediaLive
5588
5864
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
5589
5865
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
5590
5866
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
5867
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
5868
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
5869
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
5870
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
5871
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
5872
+ # 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"
5873
+ # 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"
5874
+ # 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"
5875
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
5876
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
5877
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
5878
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
5879
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
5880
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
5881
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
5882
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
5883
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
5591
5884
  # resp.encoder_settings.video_descriptions[0].height #=> Integer
5592
5885
  # resp.encoder_settings.video_descriptions[0].name #=> String
5593
5886
  # resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
@@ -5596,6 +5889,9 @@ module Aws::MediaLive
5596
5889
  # resp.encoder_settings.video_descriptions[0].width #=> Integer
5597
5890
  # resp.id #=> String
5598
5891
  # resp.input_attachments #=> Array
5892
+ # resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
5893
+ # resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
5894
+ # resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
5599
5895
  # resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
5600
5896
  # resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
5601
5897
  # resp.input_attachments[0].input_attachment_name #=> String
@@ -5610,6 +5906,7 @@ module Aws::MediaLive
5610
5906
  # resp.input_attachments[0].input_settings.caption_selectors #=> Array
5611
5907
  # resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
5612
5908
  # resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
5909
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
5613
5910
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
5614
5911
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
5615
5912
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
@@ -5717,6 +6014,7 @@ module Aws::MediaLive
5717
6014
  # @return [Types::StopChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5718
6015
  #
5719
6016
  # * {Types::StopChannelResponse#arn #arn} => String
6017
+ # * {Types::StopChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
5720
6018
  # * {Types::StopChannelResponse#channel_class #channel_class} => String
5721
6019
  # * {Types::StopChannelResponse#destinations #destinations} => Array&lt;Types::OutputDestination&gt;
5722
6020
  # * {Types::StopChannelResponse#egress_endpoints #egress_endpoints} => Array&lt;Types::ChannelEgressEndpoint&gt;
@@ -5741,6 +6039,7 @@ module Aws::MediaLive
5741
6039
  # @example Response structure
5742
6040
  #
5743
6041
  # resp.arn #=> String
6042
+ # resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
5744
6043
  # resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
5745
6044
  # resp.destinations #=> Array
5746
6045
  # resp.destinations[0].id #=> String
@@ -5801,6 +6100,9 @@ module Aws::MediaLive
5801
6100
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
5802
6101
  # 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
6102
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
6103
+ # resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
6104
+ # 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"
6105
+ # resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
5804
6106
  # resp.encoder_settings.audio_descriptions[0].language_code #=> String
5805
6107
  # resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
5806
6108
  # resp.encoder_settings.audio_descriptions[0].name #=> String
@@ -5914,6 +6216,7 @@ module Aws::MediaLive
5914
6216
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
5915
6217
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
5916
6218
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
6219
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
5917
6220
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
5918
6221
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
5919
6222
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
@@ -5938,6 +6241,7 @@ module Aws::MediaLive
5938
6241
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
5939
6242
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
5940
6243
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
6244
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
5941
6245
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
5942
6246
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
5943
6247
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
@@ -5985,6 +6289,8 @@ module Aws::MediaLive
5985
6289
  # resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
5986
6290
  # resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
5987
6291
  # 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"
6292
+ # resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
6293
+ # resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
5988
6294
  # resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
5989
6295
  # resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
5990
6296
  # resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
@@ -6227,6 +6533,23 @@ module Aws::MediaLive
6227
6533
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
6228
6534
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
6229
6535
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
6536
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
6537
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
6538
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
6539
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
6540
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
6541
+ # 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"
6542
+ # 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"
6543
+ # 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"
6544
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
6545
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
6546
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
6547
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
6548
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
6549
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
6550
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
6551
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
6552
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
6230
6553
  # resp.encoder_settings.video_descriptions[0].height #=> Integer
6231
6554
  # resp.encoder_settings.video_descriptions[0].name #=> String
6232
6555
  # resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
@@ -6235,6 +6558,9 @@ module Aws::MediaLive
6235
6558
  # resp.encoder_settings.video_descriptions[0].width #=> Integer
6236
6559
  # resp.id #=> String
6237
6560
  # resp.input_attachments #=> Array
6561
+ # resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
6562
+ # resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
6563
+ # resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
6238
6564
  # resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
6239
6565
  # resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
6240
6566
  # resp.input_attachments[0].input_attachment_name #=> String
@@ -6249,6 +6575,7 @@ module Aws::MediaLive
6249
6575
  # resp.input_attachments[0].input_settings.caption_selectors #=> Array
6250
6576
  # resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
6251
6577
  # resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
6578
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
6252
6579
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
6253
6580
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
6254
6581
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
@@ -6349,8 +6676,38 @@ module Aws::MediaLive
6349
6676
  req.send_request(options)
6350
6677
  end
6351
6678
 
6679
+ # Start an input device transfer to another AWS account. After you make
6680
+ # the request, the other account must accept or reject the transfer.
6681
+ #
6682
+ # @option params [required, String] :input_device_id
6683
+ #
6684
+ # @option params [String] :target_customer_id
6685
+ #
6686
+ # @option params [String] :transfer_message
6687
+ #
6688
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6689
+ #
6690
+ # @example Request syntax with placeholder values
6691
+ #
6692
+ # resp = client.transfer_input_device({
6693
+ # input_device_id: "__string", # required
6694
+ # target_customer_id: "__string",
6695
+ # transfer_message: "__string",
6696
+ # })
6697
+ #
6698
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDevice AWS API Documentation
6699
+ #
6700
+ # @overload transfer_input_device(params = {})
6701
+ # @param [Hash] params ({})
6702
+ def transfer_input_device(params = {}, options = {})
6703
+ req = build_request(:transfer_input_device, params)
6704
+ req.send_request(options)
6705
+ end
6706
+
6352
6707
  # Updates a channel.
6353
6708
  #
6709
+ # @option params [Types::CdiInputSpecification] :cdi_input_specification
6710
+ #
6354
6711
  # @option params [required, String] :channel_id
6355
6712
  #
6356
6713
  # @option params [Array<Types::OutputDestination>] :destinations
@@ -6376,6 +6733,9 @@ module Aws::MediaLive
6376
6733
  # @example Request syntax with placeholder values
6377
6734
  #
6378
6735
  # resp = client.update_channel({
6736
+ # cdi_input_specification: {
6737
+ # resolution: "SD", # accepts SD, HD, FHD, UHD
6738
+ # },
6379
6739
  # channel_id: "__string", # required
6380
6740
  # destinations: [
6381
6741
  # {
@@ -6460,6 +6820,11 @@ module Aws::MediaLive
6460
6820
  # },
6461
6821
  # pass_through_settings: {
6462
6822
  # },
6823
+ # wav_settings: {
6824
+ # bit_depth: 1.0,
6825
+ # coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
6826
+ # sample_rate: 1.0,
6827
+ # },
6463
6828
  # },
6464
6829
  # language_code: "__stringMin1Max35",
6465
6830
  # language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
@@ -6662,6 +7027,7 @@ module Aws::MediaLive
6662
7027
  # destination_ref_id: "__string",
6663
7028
  # },
6664
7029
  # directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
7030
+ # discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
6665
7031
  # encryption_type: "AES128", # accepts AES128, SAMPLE_AES
6666
7032
  # hls_cdn_settings: {
6667
7033
  # hls_akamai_settings: {
@@ -6696,6 +7062,7 @@ module Aws::MediaLive
6696
7062
  # },
6697
7063
  # hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
6698
7064
  # i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
7065
+ # incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
6699
7066
  # index_n_segments: 1,
6700
7067
  # input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
6701
7068
  # iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
@@ -6761,6 +7128,7 @@ module Aws::MediaLive
6761
7128
  # multiplex_group_settings: {
6762
7129
  # },
6763
7130
  # rtmp_group_settings: {
7131
+ # ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
6764
7132
  # authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
6765
7133
  # cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
6766
7134
  # cache_length: 1,
@@ -6842,6 +7210,8 @@ module Aws::MediaLive
6842
7210
  # transport_stream_id: 1,
6843
7211
  # video_pid: "__string",
6844
7212
  # },
7213
+ # raw_settings: {
7214
+ # },
6845
7215
  # },
6846
7216
  # extension: "__string",
6847
7217
  # name_modifier: "__string",
@@ -7104,6 +7474,29 @@ module Aws::MediaLive
7104
7474
  # tier: "HIGH", # accepts HIGH, MAIN
7105
7475
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
7106
7476
  # },
7477
+ # mpeg_2_settings: {
7478
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
7479
+ # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
7480
+ # color_metadata: "IGNORE", # accepts IGNORE, INSERT
7481
+ # color_space: "AUTO", # accepts AUTO, PASSTHROUGH
7482
+ # display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
7483
+ # filter_settings: {
7484
+ # temporal_filter_settings: {
7485
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
7486
+ # 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
7487
+ # },
7488
+ # },
7489
+ # 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
7490
+ # framerate_denominator: 1, # required
7491
+ # framerate_numerator: 1, # required
7492
+ # gop_closed_cadence: 1,
7493
+ # gop_num_b_frames: 1,
7494
+ # gop_size: 1.0,
7495
+ # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
7496
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
7497
+ # subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
7498
+ # timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
7499
+ # },
7107
7500
  # },
7108
7501
  # height: 1,
7109
7502
  # name: "__string", # required
@@ -7117,6 +7510,16 @@ module Aws::MediaLive
7117
7510
  # input_attachments: [
7118
7511
  # {
7119
7512
  # automatic_input_failover_settings: {
7513
+ # error_clear_time_msec: 1,
7514
+ # failover_conditions: [
7515
+ # {
7516
+ # failover_condition_settings: {
7517
+ # input_loss_settings: {
7518
+ # input_loss_threshold_msec: 1,
7519
+ # },
7520
+ # },
7521
+ # },
7522
+ # ],
7120
7523
  # input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
7121
7524
  # secondary_input_id: "__string", # required
7122
7525
  # },
@@ -7149,6 +7552,9 @@ module Aws::MediaLive
7149
7552
  # language_code: "__string",
7150
7553
  # name: "__stringMin1", # required
7151
7554
  # selector_settings: {
7555
+ # ancillary_source_settings: {
7556
+ # source_ancillary_channel_number: 1,
7557
+ # },
7152
7558
  # arib_source_settings: {
7153
7559
  # },
7154
7560
  # dvb_sub_source_settings: {
@@ -7216,6 +7622,7 @@ module Aws::MediaLive
7216
7622
  # @example Response structure
7217
7623
  #
7218
7624
  # resp.channel.arn #=> String
7625
+ # resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
7219
7626
  # resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
7220
7627
  # resp.channel.destinations #=> Array
7221
7628
  # resp.channel.destinations[0].id #=> String
@@ -7276,6 +7683,9 @@ module Aws::MediaLive
7276
7683
  # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
7277
7684
  # 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
7685
  # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
7686
+ # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
7687
+ # 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"
7688
+ # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
7279
7689
  # resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
7280
7690
  # resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
7281
7691
  # resp.channel.encoder_settings.audio_descriptions[0].name #=> String
@@ -7389,6 +7799,7 @@ module Aws::MediaLive
7389
7799
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
7390
7800
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
7391
7801
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
7802
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
7392
7803
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
7393
7804
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
7394
7805
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
@@ -7413,6 +7824,7 @@ module Aws::MediaLive
7413
7824
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
7414
7825
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
7415
7826
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
7827
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
7416
7828
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
7417
7829
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
7418
7830
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
@@ -7460,6 +7872,8 @@ module Aws::MediaLive
7460
7872
  # 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
7873
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
7462
7874
  # 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"
7875
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
7876
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
7463
7877
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
7464
7878
  # 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
7879
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
@@ -7702,6 +8116,23 @@ module Aws::MediaLive
7702
8116
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
7703
8117
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
7704
8118
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
8119
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
8120
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
8121
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
8122
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
8123
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
8124
+ # 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"
8125
+ # 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"
8126
+ # 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"
8127
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
8128
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
8129
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
8130
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
8131
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
8132
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
8133
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
8134
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
8135
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
7705
8136
  # resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
7706
8137
  # resp.channel.encoder_settings.video_descriptions[0].name #=> String
7707
8138
  # resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
@@ -7710,6 +8141,9 @@ module Aws::MediaLive
7710
8141
  # resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
7711
8142
  # resp.channel.id #=> String
7712
8143
  # resp.channel.input_attachments #=> Array
8144
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
8145
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
8146
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
7713
8147
  # resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
7714
8148
  # resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
7715
8149
  # resp.channel.input_attachments[0].input_attachment_name #=> String
@@ -7724,6 +8158,7 @@ module Aws::MediaLive
7724
8158
  # resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
7725
8159
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
7726
8160
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
8161
+ # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
7727
8162
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
7728
8163
  # 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
8164
  # 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 +8253,7 @@ module Aws::MediaLive
7818
8253
  # @example Response structure
7819
8254
  #
7820
8255
  # resp.channel.arn #=> String
8256
+ # resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
7821
8257
  # resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
7822
8258
  # resp.channel.destinations #=> Array
7823
8259
  # resp.channel.destinations[0].id #=> String
@@ -7878,6 +8314,9 @@ module Aws::MediaLive
7878
8314
  # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
7879
8315
  # 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
8316
  # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
8317
+ # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
8318
+ # 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"
8319
+ # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
7881
8320
  # resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
7882
8321
  # resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
7883
8322
  # resp.channel.encoder_settings.audio_descriptions[0].name #=> String
@@ -7991,6 +8430,7 @@ module Aws::MediaLive
7991
8430
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
7992
8431
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
7993
8432
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
8433
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
7994
8434
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
7995
8435
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
7996
8436
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
@@ -8015,6 +8455,7 @@ module Aws::MediaLive
8015
8455
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
8016
8456
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
8017
8457
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
8458
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
8018
8459
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
8019
8460
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
8020
8461
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
@@ -8062,6 +8503,8 @@ module Aws::MediaLive
8062
8503
  # 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
8504
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
8064
8505
  # 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"
8506
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
8507
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
8065
8508
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
8066
8509
  # 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
8510
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
@@ -8304,6 +8747,23 @@ module Aws::MediaLive
8304
8747
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
8305
8748
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
8306
8749
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
8750
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
8751
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
8752
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
8753
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
8754
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
8755
+ # 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"
8756
+ # 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"
8757
+ # 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"
8758
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
8759
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
8760
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
8761
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
8762
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
8763
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
8764
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
8765
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
8766
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
8307
8767
  # resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
8308
8768
  # resp.channel.encoder_settings.video_descriptions[0].name #=> String
8309
8769
  # resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
@@ -8312,6 +8772,9 @@ module Aws::MediaLive
8312
8772
  # resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
8313
8773
  # resp.channel.id #=> String
8314
8774
  # resp.channel.input_attachments #=> Array
8775
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
8776
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
8777
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
8315
8778
  # resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
8316
8779
  # resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
8317
8780
  # resp.channel.input_attachments[0].input_attachment_name #=> String
@@ -8326,6 +8789,7 @@ module Aws::MediaLive
8326
8789
  # resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
8327
8790
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
8328
8791
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
8792
+ # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
8329
8793
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
8330
8794
  # 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
8795
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
@@ -8664,6 +9128,7 @@ module Aws::MediaLive
8664
9128
  # statmux_settings: {
8665
9129
  # maximum_bitrate: 1,
8666
9130
  # minimum_bitrate: 1,
9131
+ # priority: 1,
8667
9132
  # },
8668
9133
  # },
8669
9134
  # },
@@ -8680,6 +9145,7 @@ module Aws::MediaLive
8680
9145
  # resp.multiplex_program.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
8681
9146
  # resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
8682
9147
  # resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
9148
+ # resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
8683
9149
  # resp.multiplex_program.packet_identifiers_map.audio_pids #=> Array
8684
9150
  # resp.multiplex_program.packet_identifiers_map.audio_pids[0] #=> Integer
8685
9151
  # resp.multiplex_program.packet_identifiers_map.dvb_sub_pids #=> Array
@@ -8697,6 +9163,9 @@ module Aws::MediaLive
8697
9163
  # resp.multiplex_program.packet_identifiers_map.scte_35_pid #=> Integer
8698
9164
  # resp.multiplex_program.packet_identifiers_map.timed_metadata_pid #=> Integer
8699
9165
  # resp.multiplex_program.packet_identifiers_map.video_pid #=> Integer
9166
+ # resp.multiplex_program.pipeline_details #=> Array
9167
+ # resp.multiplex_program.pipeline_details[0].active_channel_pipeline #=> String
9168
+ # resp.multiplex_program.pipeline_details[0].pipeline_id #=> String
8700
9169
  # resp.multiplex_program.program_name #=> String
8701
9170
  #
8702
9171
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateMultiplexProgram AWS API Documentation
@@ -8776,7 +9245,7 @@ module Aws::MediaLive
8776
9245
  params: params,
8777
9246
  config: config)
8778
9247
  context[:gem_name] = 'aws-sdk-medialive'
8779
- context[:gem_version] = '1.54.0'
9248
+ context[:gem_version] = '1.59.0'
8780
9249
  Seahorse::Client::Request.new(handlers, context)
8781
9250
  end
8782
9251