aws-sdk-medialive 1.53.0 → 1.58.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: e60045ce131bdca293b260247b2a0bd6e630a25d2ae49dd3c191eef469d12894
4
- data.tar.gz: 4de515d6e20f2a89eaf2f471737c704dc2321f650e8a8c0803c5b18772dc01e8
3
+ metadata.gz: 23bf880993260e50d0f8f9bd9453e3d6636ecf8ec052cdb82d5cf0669b344e5e
4
+ data.tar.gz: d9858050be48bb1fa9c7b493f329f8e70d03f8114bb263d6db32660a43cb8029
5
5
  SHA512:
6
- metadata.gz: 54945081571878390fa87594cbea5bde4e10c91222b252a3b22e2db486fb0e9cbc91cc2a9f6b3049d729519ee4adb29f07987eedb28d9e30fb48b6c58e0f1394
7
- data.tar.gz: 886ea6186d20971d81cf8a7d9a94b2a282d04920431e95135787a8f0d8d4a68c087164f9ba5a83993fbeebc8aaab064a2513aaf5acc5fc35734d31d24d64bc18
6
+ metadata.gz: 03de180614796bedfa7e75529c485e77cdc43ebedcdb7b82dc4fa3ebb3a6b73da63bec22053645ea040e7f4e51cba7d78ebd7abeeeea7f0e59a043793e26f18f
7
+ data.tar.gz: 14f9e28a3bde8e456bf9f9a8dae26c69f704249b39ccadb3389080ff277969d520dfbf62b6b3a02fbedb94ff4635ce5dc03a580bf486ac15e8bbba6322762f42
@@ -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_update_schedule(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.53.0'
52
+ GEM_VERSION = '1.58.0'
53
53
 
54
54
  end
@@ -327,6 +327,151 @@ 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
+
352
+ # Starts delete of resources.
353
+ #
354
+ # @option params [Array<String>] :channel_ids
355
+ #
356
+ # @option params [Array<String>] :input_ids
357
+ #
358
+ # @option params [Array<String>] :input_security_group_ids
359
+ #
360
+ # @option params [Array<String>] :multiplex_ids
361
+ #
362
+ # @return [Types::BatchDeleteResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
363
+ #
364
+ # * {Types::BatchDeleteResponse#failed #failed} => Array&lt;Types::BatchFailedResultModel&gt;
365
+ # * {Types::BatchDeleteResponse#successful #successful} => Array&lt;Types::BatchSuccessfulResultModel&gt;
366
+ #
367
+ # @example Request syntax with placeholder values
368
+ #
369
+ # resp = client.batch_delete({
370
+ # channel_ids: ["__string"],
371
+ # input_ids: ["__string"],
372
+ # input_security_group_ids: ["__string"],
373
+ # multiplex_ids: ["__string"],
374
+ # })
375
+ #
376
+ # @example Response structure
377
+ #
378
+ # resp.failed #=> Array
379
+ # resp.failed[0].arn #=> String
380
+ # resp.failed[0].code #=> String
381
+ # resp.failed[0].id #=> String
382
+ # resp.failed[0].message #=> String
383
+ # resp.successful #=> Array
384
+ # resp.successful[0].arn #=> String
385
+ # resp.successful[0].id #=> String
386
+ # resp.successful[0].state #=> String
387
+ #
388
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDelete AWS API Documentation
389
+ #
390
+ # @overload batch_delete(params = {})
391
+ # @param [Hash] params ({})
392
+ def batch_delete(params = {}, options = {})
393
+ req = build_request(:batch_delete, params)
394
+ req.send_request(options)
395
+ end
396
+
397
+ # Starts existing resources
398
+ #
399
+ # @option params [Array<String>] :channel_ids
400
+ #
401
+ # @option params [Array<String>] :multiplex_ids
402
+ #
403
+ # @return [Types::BatchStartResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
404
+ #
405
+ # * {Types::BatchStartResponse#failed #failed} => Array&lt;Types::BatchFailedResultModel&gt;
406
+ # * {Types::BatchStartResponse#successful #successful} => Array&lt;Types::BatchSuccessfulResultModel&gt;
407
+ #
408
+ # @example Request syntax with placeholder values
409
+ #
410
+ # resp = client.batch_start({
411
+ # channel_ids: ["__string"],
412
+ # multiplex_ids: ["__string"],
413
+ # })
414
+ #
415
+ # @example Response structure
416
+ #
417
+ # resp.failed #=> Array
418
+ # resp.failed[0].arn #=> String
419
+ # resp.failed[0].code #=> String
420
+ # resp.failed[0].id #=> String
421
+ # resp.failed[0].message #=> String
422
+ # resp.successful #=> Array
423
+ # resp.successful[0].arn #=> String
424
+ # resp.successful[0].id #=> String
425
+ # resp.successful[0].state #=> String
426
+ #
427
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStart AWS API Documentation
428
+ #
429
+ # @overload batch_start(params = {})
430
+ # @param [Hash] params ({})
431
+ def batch_start(params = {}, options = {})
432
+ req = build_request(:batch_start, params)
433
+ req.send_request(options)
434
+ end
435
+
436
+ # Stops running resources
437
+ #
438
+ # @option params [Array<String>] :channel_ids
439
+ #
440
+ # @option params [Array<String>] :multiplex_ids
441
+ #
442
+ # @return [Types::BatchStopResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
443
+ #
444
+ # * {Types::BatchStopResponse#failed #failed} => Array&lt;Types::BatchFailedResultModel&gt;
445
+ # * {Types::BatchStopResponse#successful #successful} => Array&lt;Types::BatchSuccessfulResultModel&gt;
446
+ #
447
+ # @example Request syntax with placeholder values
448
+ #
449
+ # resp = client.batch_stop({
450
+ # channel_ids: ["__string"],
451
+ # multiplex_ids: ["__string"],
452
+ # })
453
+ #
454
+ # @example Response structure
455
+ #
456
+ # resp.failed #=> Array
457
+ # resp.failed[0].arn #=> String
458
+ # resp.failed[0].code #=> String
459
+ # resp.failed[0].id #=> String
460
+ # resp.failed[0].message #=> String
461
+ # resp.successful #=> Array
462
+ # resp.successful[0].arn #=> String
463
+ # resp.successful[0].id #=> String
464
+ # resp.successful[0].state #=> String
465
+ #
466
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStop AWS API Documentation
467
+ #
468
+ # @overload batch_stop(params = {})
469
+ # @param [Hash] params ({})
470
+ def batch_stop(params = {}, options = {})
471
+ req = build_request(:batch_stop, params)
472
+ req.send_request(options)
473
+ end
474
+
330
475
  # Update a channel schedule
331
476
  #
332
477
  # @option params [required, String] :channel_id
@@ -587,8 +732,31 @@ module Aws::MediaLive
587
732
  req.send_request(options)
588
733
  end
589
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
+
590
756
  # Creates a new channel
591
757
  #
758
+ # @option params [Types::CdiInputSpecification] :cdi_input_specification
759
+ #
592
760
  # @option params [String] :channel_class
593
761
  # A standard channel has two encoding pipelines and a single pipeline
594
762
  # channel only has one.
@@ -624,6 +792,9 @@ module Aws::MediaLive
624
792
  # @example Request syntax with placeholder values
625
793
  #
626
794
  # resp = client.create_channel({
795
+ # cdi_input_specification: {
796
+ # resolution: "SD", # accepts SD, HD, FHD, UHD
797
+ # },
627
798
  # channel_class: "STANDARD", # accepts STANDARD, SINGLE_PIPELINE
628
799
  # destinations: [
629
800
  # {
@@ -708,6 +879,11 @@ module Aws::MediaLive
708
879
  # },
709
880
  # pass_through_settings: {
710
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
+ # },
711
887
  # },
712
888
  # language_code: "__stringMin1Max35",
713
889
  # language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
@@ -910,6 +1086,7 @@ module Aws::MediaLive
910
1086
  # destination_ref_id: "__string",
911
1087
  # },
912
1088
  # directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
1089
+ # discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
913
1090
  # encryption_type: "AES128", # accepts AES128, SAMPLE_AES
914
1091
  # hls_cdn_settings: {
915
1092
  # hls_akamai_settings: {
@@ -944,6 +1121,7 @@ module Aws::MediaLive
944
1121
  # },
945
1122
  # hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
946
1123
  # i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
1124
+ # incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
947
1125
  # index_n_segments: 1,
948
1126
  # input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
949
1127
  # iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
@@ -1090,6 +1268,8 @@ module Aws::MediaLive
1090
1268
  # transport_stream_id: 1,
1091
1269
  # video_pid: "__string",
1092
1270
  # },
1271
+ # raw_settings: {
1272
+ # },
1093
1273
  # },
1094
1274
  # extension: "__string",
1095
1275
  # name_modifier: "__string",
@@ -1352,6 +1532,29 @@ module Aws::MediaLive
1352
1532
  # tier: "HIGH", # accepts HIGH, MAIN
1353
1533
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
1354
1534
  # },
1535
+ # mpeg_2_settings: {
1536
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
1537
+ # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
1538
+ # color_metadata: "IGNORE", # accepts IGNORE, INSERT
1539
+ # color_space: "AUTO", # accepts AUTO, PASSTHROUGH
1540
+ # display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
1541
+ # filter_settings: {
1542
+ # temporal_filter_settings: {
1543
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
1544
+ # 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
1545
+ # },
1546
+ # },
1547
+ # 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
1548
+ # framerate_denominator: 1, # required
1549
+ # framerate_numerator: 1, # required
1550
+ # gop_closed_cadence: 1,
1551
+ # gop_num_b_frames: 1,
1552
+ # gop_size: 1.0,
1553
+ # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
1554
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
1555
+ # subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
1556
+ # timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
1557
+ # },
1355
1558
  # },
1356
1559
  # height: 1,
1357
1560
  # name: "__string", # required
@@ -1365,6 +1568,16 @@ module Aws::MediaLive
1365
1568
  # input_attachments: [
1366
1569
  # {
1367
1570
  # automatic_input_failover_settings: {
1571
+ # error_clear_time_msec: 1,
1572
+ # failover_conditions: [
1573
+ # {
1574
+ # failover_condition_settings: {
1575
+ # input_loss_settings: {
1576
+ # input_loss_threshold_msec: 1,
1577
+ # },
1578
+ # },
1579
+ # },
1580
+ # ],
1368
1581
  # input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
1369
1582
  # secondary_input_id: "__string", # required
1370
1583
  # },
@@ -1397,6 +1610,9 @@ module Aws::MediaLive
1397
1610
  # language_code: "__string",
1398
1611
  # name: "__stringMin1", # required
1399
1612
  # selector_settings: {
1613
+ # ancillary_source_settings: {
1614
+ # source_ancillary_channel_number: 1,
1615
+ # },
1400
1616
  # arib_source_settings: {
1401
1617
  # },
1402
1618
  # dvb_sub_source_settings: {
@@ -1469,6 +1685,7 @@ module Aws::MediaLive
1469
1685
  # @example Response structure
1470
1686
  #
1471
1687
  # resp.channel.arn #=> String
1688
+ # resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
1472
1689
  # resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
1473
1690
  # resp.channel.destinations #=> Array
1474
1691
  # resp.channel.destinations[0].id #=> String
@@ -1529,6 +1746,9 @@ module Aws::MediaLive
1529
1746
  # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
1530
1747
  # 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"
1531
1748
  # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
1749
+ # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
1750
+ # 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"
1751
+ # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
1532
1752
  # resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
1533
1753
  # resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
1534
1754
  # resp.channel.encoder_settings.audio_descriptions[0].name #=> String
@@ -1642,6 +1862,7 @@ module Aws::MediaLive
1642
1862
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
1643
1863
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
1644
1864
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
1865
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
1645
1866
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
1646
1867
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
1647
1868
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
@@ -1666,6 +1887,7 @@ module Aws::MediaLive
1666
1887
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
1667
1888
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
1668
1889
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
1890
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
1669
1891
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
1670
1892
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
1671
1893
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
@@ -1955,6 +2177,23 @@ module Aws::MediaLive
1955
2177
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
1956
2178
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
1957
2179
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
2180
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
2181
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
2182
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
2183
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
2184
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
2185
+ # 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"
2186
+ # 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"
2187
+ # 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"
2188
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
2189
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
2190
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
2191
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
2192
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
2193
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
2194
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
2195
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
2196
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
1958
2197
  # resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
1959
2198
  # resp.channel.encoder_settings.video_descriptions[0].name #=> String
1960
2199
  # resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
@@ -1963,6 +2202,9 @@ module Aws::MediaLive
1963
2202
  # resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
1964
2203
  # resp.channel.id #=> String
1965
2204
  # resp.channel.input_attachments #=> Array
2205
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
2206
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
2207
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
1966
2208
  # resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
1967
2209
  # resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
1968
2210
  # resp.channel.input_attachments[0].input_attachment_name #=> String
@@ -1977,6 +2219,7 @@ module Aws::MediaLive
1977
2219
  # resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
1978
2220
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
1979
2221
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
2222
+ # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
1980
2223
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
1981
2224
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
1982
2225
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
@@ -2280,6 +2523,7 @@ module Aws::MediaLive
2280
2523
  # statmux_settings: {
2281
2524
  # maximum_bitrate: 1,
2282
2525
  # minimum_bitrate: 1,
2526
+ # priority: 1,
2283
2527
  # },
2284
2528
  # },
2285
2529
  # },
@@ -2297,6 +2541,7 @@ module Aws::MediaLive
2297
2541
  # resp.multiplex_program.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
2298
2542
  # resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
2299
2543
  # resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
2544
+ # resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
2300
2545
  # resp.multiplex_program.packet_identifiers_map.audio_pids #=> Array
2301
2546
  # resp.multiplex_program.packet_identifiers_map.audio_pids[0] #=> Integer
2302
2547
  # resp.multiplex_program.packet_identifiers_map.dvb_sub_pids #=> Array
@@ -2314,6 +2559,9 @@ module Aws::MediaLive
2314
2559
  # resp.multiplex_program.packet_identifiers_map.scte_35_pid #=> Integer
2315
2560
  # resp.multiplex_program.packet_identifiers_map.timed_metadata_pid #=> Integer
2316
2561
  # resp.multiplex_program.packet_identifiers_map.video_pid #=> Integer
2562
+ # resp.multiplex_program.pipeline_details #=> Array
2563
+ # resp.multiplex_program.pipeline_details[0].active_channel_pipeline #=> String
2564
+ # resp.multiplex_program.pipeline_details[0].pipeline_id #=> String
2317
2565
  # resp.multiplex_program.program_name #=> String
2318
2566
  #
2319
2567
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateMultiplexProgram AWS API Documentation
@@ -2358,6 +2606,7 @@ module Aws::MediaLive
2358
2606
  # @return [Types::DeleteChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2359
2607
  #
2360
2608
  # * {Types::DeleteChannelResponse#arn #arn} => String
2609
+ # * {Types::DeleteChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
2361
2610
  # * {Types::DeleteChannelResponse#channel_class #channel_class} => String
2362
2611
  # * {Types::DeleteChannelResponse#destinations #destinations} => Array&lt;Types::OutputDestination&gt;
2363
2612
  # * {Types::DeleteChannelResponse#egress_endpoints #egress_endpoints} => Array&lt;Types::ChannelEgressEndpoint&gt;
@@ -2382,6 +2631,7 @@ module Aws::MediaLive
2382
2631
  # @example Response structure
2383
2632
  #
2384
2633
  # resp.arn #=> String
2634
+ # resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
2385
2635
  # resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
2386
2636
  # resp.destinations #=> Array
2387
2637
  # resp.destinations[0].id #=> String
@@ -2442,6 +2692,9 @@ module Aws::MediaLive
2442
2692
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
2443
2693
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
2444
2694
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
2695
+ # resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
2696
+ # 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"
2697
+ # resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
2445
2698
  # resp.encoder_settings.audio_descriptions[0].language_code #=> String
2446
2699
  # resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
2447
2700
  # resp.encoder_settings.audio_descriptions[0].name #=> String
@@ -2555,6 +2808,7 @@ module Aws::MediaLive
2555
2808
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
2556
2809
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
2557
2810
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
2811
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
2558
2812
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
2559
2813
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
2560
2814
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
@@ -2579,6 +2833,7 @@ module Aws::MediaLive
2579
2833
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
2580
2834
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
2581
2835
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
2836
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
2582
2837
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
2583
2838
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
2584
2839
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
@@ -2868,6 +3123,23 @@ module Aws::MediaLive
2868
3123
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
2869
3124
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
2870
3125
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
3126
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
3127
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
3128
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
3129
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
3130
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
3131
+ # 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"
3132
+ # 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"
3133
+ # 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"
3134
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
3135
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
3136
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
3137
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
3138
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
3139
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
3140
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
3141
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
3142
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
2871
3143
  # resp.encoder_settings.video_descriptions[0].height #=> Integer
2872
3144
  # resp.encoder_settings.video_descriptions[0].name #=> String
2873
3145
  # resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
@@ -2876,6 +3148,9 @@ module Aws::MediaLive
2876
3148
  # resp.encoder_settings.video_descriptions[0].width #=> Integer
2877
3149
  # resp.id #=> String
2878
3150
  # resp.input_attachments #=> Array
3151
+ # resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
3152
+ # resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
3153
+ # resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
2879
3154
  # resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
2880
3155
  # resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
2881
3156
  # resp.input_attachments[0].input_attachment_name #=> String
@@ -2890,6 +3165,7 @@ module Aws::MediaLive
2890
3165
  # resp.input_attachments[0].input_settings.caption_selectors #=> Array
2891
3166
  # resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
2892
3167
  # resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
3168
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
2893
3169
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
2894
3170
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
2895
3171
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
@@ -3042,6 +3318,7 @@ module Aws::MediaLive
3042
3318
  # * {Types::DeleteMultiplexProgramResponse#channel_id #channel_id} => String
3043
3319
  # * {Types::DeleteMultiplexProgramResponse#multiplex_program_settings #multiplex_program_settings} => Types::MultiplexProgramSettings
3044
3320
  # * {Types::DeleteMultiplexProgramResponse#packet_identifiers_map #packet_identifiers_map} => Types::MultiplexProgramPacketIdentifiersMap
3321
+ # * {Types::DeleteMultiplexProgramResponse#pipeline_details #pipeline_details} => Array&lt;Types::MultiplexProgramPipelineDetail&gt;
3045
3322
  # * {Types::DeleteMultiplexProgramResponse#program_name #program_name} => String
3046
3323
  #
3047
3324
  # @example Request syntax with placeholder values
@@ -3061,6 +3338,7 @@ module Aws::MediaLive
3061
3338
  # resp.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
3062
3339
  # resp.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
3063
3340
  # resp.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
3341
+ # resp.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
3064
3342
  # resp.packet_identifiers_map.audio_pids #=> Array
3065
3343
  # resp.packet_identifiers_map.audio_pids[0] #=> Integer
3066
3344
  # resp.packet_identifiers_map.dvb_sub_pids #=> Array
@@ -3078,6 +3356,9 @@ module Aws::MediaLive
3078
3356
  # resp.packet_identifiers_map.scte_35_pid #=> Integer
3079
3357
  # resp.packet_identifiers_map.timed_metadata_pid #=> Integer
3080
3358
  # resp.packet_identifiers_map.video_pid #=> Integer
3359
+ # resp.pipeline_details #=> Array
3360
+ # resp.pipeline_details[0].active_channel_pipeline #=> String
3361
+ # resp.pipeline_details[0].pipeline_id #=> String
3081
3362
  # resp.program_name #=> String
3082
3363
  #
3083
3364
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteMultiplexProgram AWS API Documentation
@@ -3210,6 +3491,7 @@ module Aws::MediaLive
3210
3491
  # @return [Types::DescribeChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3211
3492
  #
3212
3493
  # * {Types::DescribeChannelResponse#arn #arn} => String
3494
+ # * {Types::DescribeChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
3213
3495
  # * {Types::DescribeChannelResponse#channel_class #channel_class} => String
3214
3496
  # * {Types::DescribeChannelResponse#destinations #destinations} => Array&lt;Types::OutputDestination&gt;
3215
3497
  # * {Types::DescribeChannelResponse#egress_endpoints #egress_endpoints} => Array&lt;Types::ChannelEgressEndpoint&gt;
@@ -3234,6 +3516,7 @@ module Aws::MediaLive
3234
3516
  # @example Response structure
3235
3517
  #
3236
3518
  # resp.arn #=> String
3519
+ # resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
3237
3520
  # resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
3238
3521
  # resp.destinations #=> Array
3239
3522
  # resp.destinations[0].id #=> String
@@ -3294,6 +3577,9 @@ module Aws::MediaLive
3294
3577
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
3295
3578
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
3296
3579
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
3580
+ # resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
3581
+ # 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"
3582
+ # resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
3297
3583
  # resp.encoder_settings.audio_descriptions[0].language_code #=> String
3298
3584
  # resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
3299
3585
  # resp.encoder_settings.audio_descriptions[0].name #=> String
@@ -3407,6 +3693,7 @@ module Aws::MediaLive
3407
3693
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
3408
3694
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
3409
3695
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
3696
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
3410
3697
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
3411
3698
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
3412
3699
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
@@ -3431,6 +3718,7 @@ module Aws::MediaLive
3431
3718
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
3432
3719
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
3433
3720
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
3721
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
3434
3722
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
3435
3723
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
3436
3724
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
@@ -3720,6 +4008,23 @@ module Aws::MediaLive
3720
4008
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
3721
4009
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
3722
4010
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
4011
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
4012
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
4013
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
4014
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
4015
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
4016
+ # 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"
4017
+ # 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"
4018
+ # 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"
4019
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
4020
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
4021
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
4022
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
4023
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
4024
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
4025
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
4026
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
4027
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
3723
4028
  # resp.encoder_settings.video_descriptions[0].height #=> Integer
3724
4029
  # resp.encoder_settings.video_descriptions[0].name #=> String
3725
4030
  # resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
@@ -3728,6 +4033,9 @@ module Aws::MediaLive
3728
4033
  # resp.encoder_settings.video_descriptions[0].width #=> Integer
3729
4034
  # resp.id #=> String
3730
4035
  # resp.input_attachments #=> Array
4036
+ # resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
4037
+ # resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
4038
+ # resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
3731
4039
  # resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
3732
4040
  # resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
3733
4041
  # resp.input_attachments[0].input_attachment_name #=> String
@@ -3742,6 +4050,7 @@ module Aws::MediaLive
3742
4050
  # resp.input_attachments[0].input_settings.caption_selectors #=> Array
3743
4051
  # resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
3744
4052
  # resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
4053
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
3745
4054
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
3746
4055
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
3747
4056
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
@@ -3935,7 +4244,6 @@ module Aws::MediaLive
3935
4244
  # @option params [required, String] :input_device_id
3936
4245
  #
3937
4246
  # @option params [required, String] :accept
3938
- # Accept Header
3939
4247
  #
3940
4248
  # @return [Types::DescribeInputDeviceThumbnailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3941
4249
  #
@@ -4079,6 +4387,7 @@ module Aws::MediaLive
4079
4387
  # * {Types::DescribeMultiplexProgramResponse#channel_id #channel_id} => String
4080
4388
  # * {Types::DescribeMultiplexProgramResponse#multiplex_program_settings #multiplex_program_settings} => Types::MultiplexProgramSettings
4081
4389
  # * {Types::DescribeMultiplexProgramResponse#packet_identifiers_map #packet_identifiers_map} => Types::MultiplexProgramPacketIdentifiersMap
4390
+ # * {Types::DescribeMultiplexProgramResponse#pipeline_details #pipeline_details} => Array&lt;Types::MultiplexProgramPipelineDetail&gt;
4082
4391
  # * {Types::DescribeMultiplexProgramResponse#program_name #program_name} => String
4083
4392
  #
4084
4393
  # @example Request syntax with placeholder values
@@ -4098,6 +4407,7 @@ module Aws::MediaLive
4098
4407
  # resp.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
4099
4408
  # resp.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
4100
4409
  # resp.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
4410
+ # resp.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
4101
4411
  # resp.packet_identifiers_map.audio_pids #=> Array
4102
4412
  # resp.packet_identifiers_map.audio_pids[0] #=> Integer
4103
4413
  # resp.packet_identifiers_map.dvb_sub_pids #=> Array
@@ -4115,6 +4425,9 @@ module Aws::MediaLive
4115
4425
  # resp.packet_identifiers_map.scte_35_pid #=> Integer
4116
4426
  # resp.packet_identifiers_map.timed_metadata_pid #=> Integer
4117
4427
  # resp.packet_identifiers_map.video_pid #=> Integer
4428
+ # resp.pipeline_details #=> Array
4429
+ # resp.pipeline_details[0].active_channel_pipeline #=> String
4430
+ # resp.pipeline_details[0].pipeline_id #=> String
4118
4431
  # resp.program_name #=> String
4119
4432
  #
4120
4433
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeMultiplexProgram AWS API Documentation
@@ -4364,6 +4677,7 @@ module Aws::MediaLive
4364
4677
  #
4365
4678
  # resp.channels #=> Array
4366
4679
  # resp.channels[0].arn #=> String
4680
+ # resp.channels[0].cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
4367
4681
  # resp.channels[0].channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
4368
4682
  # resp.channels[0].destinations #=> Array
4369
4683
  # resp.channels[0].destinations[0].id #=> String
@@ -4380,6 +4694,9 @@ module Aws::MediaLive
4380
4694
  # resp.channels[0].egress_endpoints[0].source_ip #=> String
4381
4695
  # resp.channels[0].id #=> String
4382
4696
  # resp.channels[0].input_attachments #=> Array
4697
+ # resp.channels[0].input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
4698
+ # resp.channels[0].input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
4699
+ # resp.channels[0].input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
4383
4700
  # resp.channels[0].input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
4384
4701
  # resp.channels[0].input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
4385
4702
  # resp.channels[0].input_attachments[0].input_attachment_name #=> String
@@ -4394,6 +4711,7 @@ module Aws::MediaLive
4394
4711
  # resp.channels[0].input_attachments[0].input_settings.caption_selectors #=> Array
4395
4712
  # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
4396
4713
  # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].name #=> String
4714
+ # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
4397
4715
  # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
4398
4716
  # 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"
4399
4717
  # resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
@@ -4439,6 +4757,49 @@ module Aws::MediaLive
4439
4757
  req.send_request(options)
4440
4758
  end
4441
4759
 
4760
+ # List input devices that are currently being transferred. List input
4761
+ # devices that you are transferring from your AWS account or input
4762
+ # devices that another AWS account is transferring to you.
4763
+ #
4764
+ # @option params [Integer] :max_results
4765
+ #
4766
+ # @option params [String] :next_token
4767
+ #
4768
+ # @option params [required, String] :transfer_type
4769
+ #
4770
+ # @return [Types::ListInputDeviceTransfersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4771
+ #
4772
+ # * {Types::ListInputDeviceTransfersResponse#input_device_transfers #input_device_transfers} => Array&lt;Types::TransferringInputDeviceSummary&gt;
4773
+ # * {Types::ListInputDeviceTransfersResponse#next_token #next_token} => String
4774
+ #
4775
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4776
+ #
4777
+ # @example Request syntax with placeholder values
4778
+ #
4779
+ # resp = client.list_input_device_transfers({
4780
+ # max_results: 1,
4781
+ # next_token: "__string",
4782
+ # transfer_type: "__string", # required
4783
+ # })
4784
+ #
4785
+ # @example Response structure
4786
+ #
4787
+ # resp.input_device_transfers #=> Array
4788
+ # resp.input_device_transfers[0].id #=> String
4789
+ # resp.input_device_transfers[0].message #=> String
4790
+ # resp.input_device_transfers[0].target_customer_id #=> String
4791
+ # resp.input_device_transfers[0].transfer_type #=> String, one of "OUTGOING", "INCOMING"
4792
+ # resp.next_token #=> String
4793
+ #
4794
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfers AWS API Documentation
4795
+ #
4796
+ # @overload list_input_device_transfers(params = {})
4797
+ # @param [Hash] params ({})
4798
+ def list_input_device_transfers(params = {}, options = {})
4799
+ req = build_request(:list_input_device_transfers, params)
4800
+ req.send_request(options)
4801
+ end
4802
+
4442
4803
  # List input devices
4443
4804
  #
4444
4805
  # @option params [Integer] :max_results
@@ -4949,6 +5310,27 @@ module Aws::MediaLive
4949
5310
  req.send_request(options)
4950
5311
  end
4951
5312
 
5313
+ # Reject the transfer of the specified input device to your AWS account.
5314
+ #
5315
+ # @option params [required, String] :input_device_id
5316
+ #
5317
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5318
+ #
5319
+ # @example Request syntax with placeholder values
5320
+ #
5321
+ # resp = client.reject_input_device_transfer({
5322
+ # input_device_id: "__string", # required
5323
+ # })
5324
+ #
5325
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransfer AWS API Documentation
5326
+ #
5327
+ # @overload reject_input_device_transfer(params = {})
5328
+ # @param [Hash] params ({})
5329
+ def reject_input_device_transfer(params = {}, options = {})
5330
+ req = build_request(:reject_input_device_transfer, params)
5331
+ req.send_request(options)
5332
+ end
5333
+
4952
5334
  # Starts an existing channel
4953
5335
  #
4954
5336
  # @option params [required, String] :channel_id
@@ -4956,6 +5338,7 @@ module Aws::MediaLive
4956
5338
  # @return [Types::StartChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4957
5339
  #
4958
5340
  # * {Types::StartChannelResponse#arn #arn} => String
5341
+ # * {Types::StartChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
4959
5342
  # * {Types::StartChannelResponse#channel_class #channel_class} => String
4960
5343
  # * {Types::StartChannelResponse#destinations #destinations} => Array&lt;Types::OutputDestination&gt;
4961
5344
  # * {Types::StartChannelResponse#egress_endpoints #egress_endpoints} => Array&lt;Types::ChannelEgressEndpoint&gt;
@@ -4980,6 +5363,7 @@ module Aws::MediaLive
4980
5363
  # @example Response structure
4981
5364
  #
4982
5365
  # resp.arn #=> String
5366
+ # resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
4983
5367
  # resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
4984
5368
  # resp.destinations #=> Array
4985
5369
  # resp.destinations[0].id #=> String
@@ -5040,6 +5424,9 @@ module Aws::MediaLive
5040
5424
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
5041
5425
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
5042
5426
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
5427
+ # resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
5428
+ # 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"
5429
+ # resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
5043
5430
  # resp.encoder_settings.audio_descriptions[0].language_code #=> String
5044
5431
  # resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
5045
5432
  # resp.encoder_settings.audio_descriptions[0].name #=> String
@@ -5153,6 +5540,7 @@ module Aws::MediaLive
5153
5540
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
5154
5541
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
5155
5542
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
5543
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
5156
5544
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
5157
5545
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
5158
5546
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
@@ -5177,6 +5565,7 @@ module Aws::MediaLive
5177
5565
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
5178
5566
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
5179
5567
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
5568
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
5180
5569
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
5181
5570
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
5182
5571
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
@@ -5466,6 +5855,23 @@ module Aws::MediaLive
5466
5855
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
5467
5856
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
5468
5857
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
5858
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
5859
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
5860
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
5861
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
5862
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
5863
+ # 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"
5864
+ # 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"
5865
+ # 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"
5866
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
5867
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
5868
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
5869
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
5870
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
5871
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
5872
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
5873
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
5874
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
5469
5875
  # resp.encoder_settings.video_descriptions[0].height #=> Integer
5470
5876
  # resp.encoder_settings.video_descriptions[0].name #=> String
5471
5877
  # resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
@@ -5474,6 +5880,9 @@ module Aws::MediaLive
5474
5880
  # resp.encoder_settings.video_descriptions[0].width #=> Integer
5475
5881
  # resp.id #=> String
5476
5882
  # resp.input_attachments #=> Array
5883
+ # resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
5884
+ # resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
5885
+ # resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
5477
5886
  # resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
5478
5887
  # resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
5479
5888
  # resp.input_attachments[0].input_attachment_name #=> String
@@ -5488,6 +5897,7 @@ module Aws::MediaLive
5488
5897
  # resp.input_attachments[0].input_settings.caption_selectors #=> Array
5489
5898
  # resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
5490
5899
  # resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
5900
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
5491
5901
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
5492
5902
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
5493
5903
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
@@ -5595,6 +6005,7 @@ module Aws::MediaLive
5595
6005
  # @return [Types::StopChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5596
6006
  #
5597
6007
  # * {Types::StopChannelResponse#arn #arn} => String
6008
+ # * {Types::StopChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
5598
6009
  # * {Types::StopChannelResponse#channel_class #channel_class} => String
5599
6010
  # * {Types::StopChannelResponse#destinations #destinations} => Array&lt;Types::OutputDestination&gt;
5600
6011
  # * {Types::StopChannelResponse#egress_endpoints #egress_endpoints} => Array&lt;Types::ChannelEgressEndpoint&gt;
@@ -5619,6 +6030,7 @@ module Aws::MediaLive
5619
6030
  # @example Response structure
5620
6031
  #
5621
6032
  # resp.arn #=> String
6033
+ # resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
5622
6034
  # resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
5623
6035
  # resp.destinations #=> Array
5624
6036
  # resp.destinations[0].id #=> String
@@ -5679,6 +6091,9 @@ module Aws::MediaLive
5679
6091
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
5680
6092
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
5681
6093
  # resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
6094
+ # resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
6095
+ # 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"
6096
+ # resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
5682
6097
  # resp.encoder_settings.audio_descriptions[0].language_code #=> String
5683
6098
  # resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
5684
6099
  # resp.encoder_settings.audio_descriptions[0].name #=> String
@@ -5792,6 +6207,7 @@ module Aws::MediaLive
5792
6207
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
5793
6208
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
5794
6209
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
6210
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
5795
6211
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
5796
6212
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
5797
6213
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
@@ -5816,6 +6232,7 @@ module Aws::MediaLive
5816
6232
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
5817
6233
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
5818
6234
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
6235
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
5819
6236
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
5820
6237
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
5821
6238
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
@@ -6105,6 +6522,23 @@ module Aws::MediaLive
6105
6522
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
6106
6523
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
6107
6524
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
6525
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
6526
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
6527
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
6528
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
6529
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
6530
+ # 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"
6531
+ # 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"
6532
+ # 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"
6533
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
6534
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
6535
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
6536
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
6537
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
6538
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
6539
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
6540
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
6541
+ # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
6108
6542
  # resp.encoder_settings.video_descriptions[0].height #=> Integer
6109
6543
  # resp.encoder_settings.video_descriptions[0].name #=> String
6110
6544
  # resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
@@ -6113,6 +6547,9 @@ module Aws::MediaLive
6113
6547
  # resp.encoder_settings.video_descriptions[0].width #=> Integer
6114
6548
  # resp.id #=> String
6115
6549
  # resp.input_attachments #=> Array
6550
+ # resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
6551
+ # resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
6552
+ # resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
6116
6553
  # resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
6117
6554
  # resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
6118
6555
  # resp.input_attachments[0].input_attachment_name #=> String
@@ -6127,6 +6564,7 @@ module Aws::MediaLive
6127
6564
  # resp.input_attachments[0].input_settings.caption_selectors #=> Array
6128
6565
  # resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
6129
6566
  # resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
6567
+ # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
6130
6568
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
6131
6569
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
6132
6570
  # resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
@@ -6227,8 +6665,38 @@ module Aws::MediaLive
6227
6665
  req.send_request(options)
6228
6666
  end
6229
6667
 
6668
+ # Start an input device transfer to another AWS account. After you make
6669
+ # the request, the other account must accept or reject the transfer.
6670
+ #
6671
+ # @option params [required, String] :input_device_id
6672
+ #
6673
+ # @option params [String] :target_customer_id
6674
+ #
6675
+ # @option params [String] :transfer_message
6676
+ #
6677
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6678
+ #
6679
+ # @example Request syntax with placeholder values
6680
+ #
6681
+ # resp = client.transfer_input_device({
6682
+ # input_device_id: "__string", # required
6683
+ # target_customer_id: "__string",
6684
+ # transfer_message: "__string",
6685
+ # })
6686
+ #
6687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDevice AWS API Documentation
6688
+ #
6689
+ # @overload transfer_input_device(params = {})
6690
+ # @param [Hash] params ({})
6691
+ def transfer_input_device(params = {}, options = {})
6692
+ req = build_request(:transfer_input_device, params)
6693
+ req.send_request(options)
6694
+ end
6695
+
6230
6696
  # Updates a channel.
6231
6697
  #
6698
+ # @option params [Types::CdiInputSpecification] :cdi_input_specification
6699
+ #
6232
6700
  # @option params [required, String] :channel_id
6233
6701
  #
6234
6702
  # @option params [Array<Types::OutputDestination>] :destinations
@@ -6254,6 +6722,9 @@ module Aws::MediaLive
6254
6722
  # @example Request syntax with placeholder values
6255
6723
  #
6256
6724
  # resp = client.update_channel({
6725
+ # cdi_input_specification: {
6726
+ # resolution: "SD", # accepts SD, HD, FHD, UHD
6727
+ # },
6257
6728
  # channel_id: "__string", # required
6258
6729
  # destinations: [
6259
6730
  # {
@@ -6338,6 +6809,11 @@ module Aws::MediaLive
6338
6809
  # },
6339
6810
  # pass_through_settings: {
6340
6811
  # },
6812
+ # wav_settings: {
6813
+ # bit_depth: 1.0,
6814
+ # coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
6815
+ # sample_rate: 1.0,
6816
+ # },
6341
6817
  # },
6342
6818
  # language_code: "__stringMin1Max35",
6343
6819
  # language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
@@ -6540,6 +7016,7 @@ module Aws::MediaLive
6540
7016
  # destination_ref_id: "__string",
6541
7017
  # },
6542
7018
  # directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
7019
+ # discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
6543
7020
  # encryption_type: "AES128", # accepts AES128, SAMPLE_AES
6544
7021
  # hls_cdn_settings: {
6545
7022
  # hls_akamai_settings: {
@@ -6574,6 +7051,7 @@ module Aws::MediaLive
6574
7051
  # },
6575
7052
  # hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
6576
7053
  # i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
7054
+ # incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
6577
7055
  # index_n_segments: 1,
6578
7056
  # input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
6579
7057
  # iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
@@ -6720,6 +7198,8 @@ module Aws::MediaLive
6720
7198
  # transport_stream_id: 1,
6721
7199
  # video_pid: "__string",
6722
7200
  # },
7201
+ # raw_settings: {
7202
+ # },
6723
7203
  # },
6724
7204
  # extension: "__string",
6725
7205
  # name_modifier: "__string",
@@ -6982,6 +7462,29 @@ module Aws::MediaLive
6982
7462
  # tier: "HIGH", # accepts HIGH, MAIN
6983
7463
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
6984
7464
  # },
7465
+ # mpeg_2_settings: {
7466
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
7467
+ # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
7468
+ # color_metadata: "IGNORE", # accepts IGNORE, INSERT
7469
+ # color_space: "AUTO", # accepts AUTO, PASSTHROUGH
7470
+ # display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
7471
+ # filter_settings: {
7472
+ # temporal_filter_settings: {
7473
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
7474
+ # 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
7475
+ # },
7476
+ # },
7477
+ # 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
7478
+ # framerate_denominator: 1, # required
7479
+ # framerate_numerator: 1, # required
7480
+ # gop_closed_cadence: 1,
7481
+ # gop_num_b_frames: 1,
7482
+ # gop_size: 1.0,
7483
+ # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
7484
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
7485
+ # subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
7486
+ # timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
7487
+ # },
6985
7488
  # },
6986
7489
  # height: 1,
6987
7490
  # name: "__string", # required
@@ -6995,6 +7498,16 @@ module Aws::MediaLive
6995
7498
  # input_attachments: [
6996
7499
  # {
6997
7500
  # automatic_input_failover_settings: {
7501
+ # error_clear_time_msec: 1,
7502
+ # failover_conditions: [
7503
+ # {
7504
+ # failover_condition_settings: {
7505
+ # input_loss_settings: {
7506
+ # input_loss_threshold_msec: 1,
7507
+ # },
7508
+ # },
7509
+ # },
7510
+ # ],
6998
7511
  # input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
6999
7512
  # secondary_input_id: "__string", # required
7000
7513
  # },
@@ -7027,6 +7540,9 @@ module Aws::MediaLive
7027
7540
  # language_code: "__string",
7028
7541
  # name: "__stringMin1", # required
7029
7542
  # selector_settings: {
7543
+ # ancillary_source_settings: {
7544
+ # source_ancillary_channel_number: 1,
7545
+ # },
7030
7546
  # arib_source_settings: {
7031
7547
  # },
7032
7548
  # dvb_sub_source_settings: {
@@ -7094,6 +7610,7 @@ module Aws::MediaLive
7094
7610
  # @example Response structure
7095
7611
  #
7096
7612
  # resp.channel.arn #=> String
7613
+ # resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
7097
7614
  # resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
7098
7615
  # resp.channel.destinations #=> Array
7099
7616
  # resp.channel.destinations[0].id #=> String
@@ -7154,6 +7671,9 @@ module Aws::MediaLive
7154
7671
  # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
7155
7672
  # 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"
7156
7673
  # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
7674
+ # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
7675
+ # 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"
7676
+ # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
7157
7677
  # resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
7158
7678
  # resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
7159
7679
  # resp.channel.encoder_settings.audio_descriptions[0].name #=> String
@@ -7267,6 +7787,7 @@ module Aws::MediaLive
7267
7787
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
7268
7788
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
7269
7789
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
7790
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
7270
7791
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
7271
7792
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
7272
7793
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
@@ -7291,6 +7812,7 @@ module Aws::MediaLive
7291
7812
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
7292
7813
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
7293
7814
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
7815
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
7294
7816
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
7295
7817
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
7296
7818
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
@@ -7580,6 +8102,23 @@ module Aws::MediaLive
7580
8102
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
7581
8103
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
7582
8104
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
8105
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
8106
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
8107
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
8108
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
8109
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
8110
+ # 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"
8111
+ # 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"
8112
+ # 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"
8113
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
8114
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
8115
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
8116
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
8117
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
8118
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
8119
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
8120
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
8121
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
7583
8122
  # resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
7584
8123
  # resp.channel.encoder_settings.video_descriptions[0].name #=> String
7585
8124
  # resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
@@ -7588,6 +8127,9 @@ module Aws::MediaLive
7588
8127
  # resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
7589
8128
  # resp.channel.id #=> String
7590
8129
  # resp.channel.input_attachments #=> Array
8130
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
8131
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
8132
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
7591
8133
  # resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
7592
8134
  # resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
7593
8135
  # resp.channel.input_attachments[0].input_attachment_name #=> String
@@ -7602,6 +8144,7 @@ module Aws::MediaLive
7602
8144
  # resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
7603
8145
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
7604
8146
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
8147
+ # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
7605
8148
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
7606
8149
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
7607
8150
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
@@ -7696,6 +8239,7 @@ module Aws::MediaLive
7696
8239
  # @example Response structure
7697
8240
  #
7698
8241
  # resp.channel.arn #=> String
8242
+ # resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
7699
8243
  # resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
7700
8244
  # resp.channel.destinations #=> Array
7701
8245
  # resp.channel.destinations[0].id #=> String
@@ -7756,6 +8300,9 @@ module Aws::MediaLive
7756
8300
  # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
7757
8301
  # 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"
7758
8302
  # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
8303
+ # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
8304
+ # 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"
8305
+ # resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
7759
8306
  # resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
7760
8307
  # resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
7761
8308
  # resp.channel.encoder_settings.audio_descriptions[0].name #=> String
@@ -7869,6 +8416,7 @@ module Aws::MediaLive
7869
8416
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
7870
8417
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
7871
8418
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
8419
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
7872
8420
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
7873
8421
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
7874
8422
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
@@ -7893,6 +8441,7 @@ module Aws::MediaLive
7893
8441
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
7894
8442
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
7895
8443
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
8444
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
7896
8445
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
7897
8446
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
7898
8447
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
@@ -8182,6 +8731,23 @@ module Aws::MediaLive
8182
8731
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
8183
8732
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
8184
8733
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
8734
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
8735
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
8736
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
8737
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
8738
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
8739
+ # 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"
8740
+ # 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"
8741
+ # 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"
8742
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
8743
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
8744
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
8745
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
8746
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
8747
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
8748
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
8749
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
8750
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
8185
8751
  # resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
8186
8752
  # resp.channel.encoder_settings.video_descriptions[0].name #=> String
8187
8753
  # resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
@@ -8190,6 +8756,9 @@ module Aws::MediaLive
8190
8756
  # resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
8191
8757
  # resp.channel.id #=> String
8192
8758
  # resp.channel.input_attachments #=> Array
8759
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
8760
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
8761
+ # resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
8193
8762
  # resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
8194
8763
  # resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
8195
8764
  # resp.channel.input_attachments[0].input_attachment_name #=> String
@@ -8204,6 +8773,7 @@ module Aws::MediaLive
8204
8773
  # resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
8205
8774
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
8206
8775
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
8776
+ # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
8207
8777
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
8208
8778
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
8209
8779
  # resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
@@ -8542,6 +9112,7 @@ module Aws::MediaLive
8542
9112
  # statmux_settings: {
8543
9113
  # maximum_bitrate: 1,
8544
9114
  # minimum_bitrate: 1,
9115
+ # priority: 1,
8545
9116
  # },
8546
9117
  # },
8547
9118
  # },
@@ -8558,6 +9129,7 @@ module Aws::MediaLive
8558
9129
  # resp.multiplex_program.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
8559
9130
  # resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
8560
9131
  # resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
9132
+ # resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
8561
9133
  # resp.multiplex_program.packet_identifiers_map.audio_pids #=> Array
8562
9134
  # resp.multiplex_program.packet_identifiers_map.audio_pids[0] #=> Integer
8563
9135
  # resp.multiplex_program.packet_identifiers_map.dvb_sub_pids #=> Array
@@ -8575,6 +9147,9 @@ module Aws::MediaLive
8575
9147
  # resp.multiplex_program.packet_identifiers_map.scte_35_pid #=> Integer
8576
9148
  # resp.multiplex_program.packet_identifiers_map.timed_metadata_pid #=> Integer
8577
9149
  # resp.multiplex_program.packet_identifiers_map.video_pid #=> Integer
9150
+ # resp.multiplex_program.pipeline_details #=> Array
9151
+ # resp.multiplex_program.pipeline_details[0].active_channel_pipeline #=> String
9152
+ # resp.multiplex_program.pipeline_details[0].pipeline_id #=> String
8578
9153
  # resp.multiplex_program.program_name #=> String
8579
9154
  #
8580
9155
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateMultiplexProgram AWS API Documentation
@@ -8654,7 +9229,7 @@ module Aws::MediaLive
8654
9229
  params: params,
8655
9230
  config: config)
8656
9231
  context[:gem_name] = 'aws-sdk-medialive'
8657
- context[:gem_version] = '1.53.0'
9232
+ context[:gem_version] = '1.58.0'
8658
9233
  Seahorse::Client::Request.new(handlers, context)
8659
9234
  end
8660
9235