aws-sdk-medialive 1.52.0 → 1.57.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-medialive.rb +3 -2
- data/lib/aws-sdk-medialive/client.rb +527 -14
- data/lib/aws-sdk-medialive/client_api.rb +365 -2
- data/lib/aws-sdk-medialive/types.rb +1175 -62
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eaa67d16c20496901d76b1e11d9f864490a246544931725c447dfa9770d5aa72
|
4
|
+
data.tar.gz: d77ecba06406731ab5689c64a86eb993b1725311d3b757c8ffaf2cc4a0d9b541
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 457a3adf6779718bf665489aade41b7cd80ffd472e0bb884e066ddcdd72f09de3223b614c014da10078046b05fe2cf87651a3375323b541098c68f14a5ef823a
|
7
|
+
data.tar.gz: 0b6779d0d2b3c5d4c91c5c68660a61a1e95e07d50b2350350e8aa6134f34ae42db42e38b02b679944ce0e180dfd15a3a2bc9c3fc34aa3934ef885e2291420f0f
|
data/lib/aws-sdk-medialive.rb
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -28,7 +29,7 @@ require_relative 'aws-sdk-medialive/customizations'
|
|
28
29
|
# structure.
|
29
30
|
#
|
30
31
|
# media_live = Aws::MediaLive::Client.new
|
31
|
-
# resp = media_live.
|
32
|
+
# resp = media_live.accept_input_device_transfer(params)
|
32
33
|
#
|
33
34
|
# See {Client} for more information.
|
34
35
|
#
|
@@ -48,6 +49,6 @@ require_relative 'aws-sdk-medialive/customizations'
|
|
48
49
|
# @!group service
|
49
50
|
module Aws::MediaLive
|
50
51
|
|
51
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.57.0'
|
52
53
|
|
53
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<Types::BatchFailedResultModel>
|
365
|
+
# * {Types::BatchDeleteResponse#successful #successful} => Array<Types::BatchSuccessfulResultModel>
|
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<Types::BatchFailedResultModel>
|
406
|
+
# * {Types::BatchStartResponse#successful #successful} => Array<Types::BatchSuccessfulResultModel>
|
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<Types::BatchFailedResultModel>
|
445
|
+
# * {Types::BatchStopResponse#successful #successful} => Array<Types::BatchSuccessfulResultModel>
|
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
|
@@ -1090,6 +1266,8 @@ module Aws::MediaLive
|
|
1090
1266
|
# transport_stream_id: 1,
|
1091
1267
|
# video_pid: "__string",
|
1092
1268
|
# },
|
1269
|
+
# raw_settings: {
|
1270
|
+
# },
|
1093
1271
|
# },
|
1094
1272
|
# extension: "__string",
|
1095
1273
|
# name_modifier: "__string",
|
@@ -1352,6 +1530,29 @@ module Aws::MediaLive
|
|
1352
1530
|
# tier: "HIGH", # accepts HIGH, MAIN
|
1353
1531
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
1354
1532
|
# },
|
1533
|
+
# mpeg_2_settings: {
|
1534
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
1535
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
1536
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
1537
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
1538
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
1539
|
+
# filter_settings: {
|
1540
|
+
# temporal_filter_settings: {
|
1541
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
1542
|
+
# 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
|
1543
|
+
# },
|
1544
|
+
# },
|
1545
|
+
# 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
|
1546
|
+
# framerate_denominator: 1, # required
|
1547
|
+
# framerate_numerator: 1, # required
|
1548
|
+
# gop_closed_cadence: 1,
|
1549
|
+
# gop_num_b_frames: 1,
|
1550
|
+
# gop_size: 1.0,
|
1551
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
1552
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
1553
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
1554
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
1555
|
+
# },
|
1355
1556
|
# },
|
1356
1557
|
# height: 1,
|
1357
1558
|
# name: "__string", # required
|
@@ -1397,6 +1598,9 @@ module Aws::MediaLive
|
|
1397
1598
|
# language_code: "__string",
|
1398
1599
|
# name: "__stringMin1", # required
|
1399
1600
|
# selector_settings: {
|
1601
|
+
# ancillary_source_settings: {
|
1602
|
+
# source_ancillary_channel_number: 1,
|
1603
|
+
# },
|
1400
1604
|
# arib_source_settings: {
|
1401
1605
|
# },
|
1402
1606
|
# dvb_sub_source_settings: {
|
@@ -1469,6 +1673,7 @@ module Aws::MediaLive
|
|
1469
1673
|
# @example Response structure
|
1470
1674
|
#
|
1471
1675
|
# resp.channel.arn #=> String
|
1676
|
+
# resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
1472
1677
|
# resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
1473
1678
|
# resp.channel.destinations #=> Array
|
1474
1679
|
# resp.channel.destinations[0].id #=> String
|
@@ -1529,6 +1734,9 @@ module Aws::MediaLive
|
|
1529
1734
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
1530
1735
|
# 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
1736
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
1737
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
1738
|
+
# 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"
|
1739
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
1532
1740
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
|
1533
1741
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
1534
1742
|
# resp.channel.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -1955,6 +2163,23 @@ module Aws::MediaLive
|
|
1955
2163
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
1956
2164
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
1957
2165
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
2166
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
2167
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
2168
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
2169
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
2170
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
2171
|
+
# 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"
|
2172
|
+
# 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"
|
2173
|
+
# 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"
|
2174
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
2175
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
2176
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
2177
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
2178
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
2179
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
2180
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
2181
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
2182
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
1958
2183
|
# resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
|
1959
2184
|
# resp.channel.encoder_settings.video_descriptions[0].name #=> String
|
1960
2185
|
# resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -1977,6 +2202,7 @@ module Aws::MediaLive
|
|
1977
2202
|
# resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
|
1978
2203
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
1979
2204
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
2205
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
1980
2206
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
1981
2207
|
# 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
2208
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -2092,7 +2318,7 @@ module Aws::MediaLive
|
|
2092
2318
|
# tags: {
|
2093
2319
|
# "__string" => "__string",
|
2094
2320
|
# },
|
2095
|
-
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE
|
2321
|
+
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI
|
2096
2322
|
# vpc: {
|
2097
2323
|
# security_group_ids: ["__string"],
|
2098
2324
|
# subnet_ids: ["__string"], # required
|
@@ -2128,7 +2354,7 @@ module Aws::MediaLive
|
|
2128
2354
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2129
2355
|
# resp.input.tags #=> Hash
|
2130
2356
|
# resp.input.tags["__string"] #=> String
|
2131
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
|
2357
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
2132
2358
|
#
|
2133
2359
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
2134
2360
|
#
|
@@ -2280,6 +2506,7 @@ module Aws::MediaLive
|
|
2280
2506
|
# statmux_settings: {
|
2281
2507
|
# maximum_bitrate: 1,
|
2282
2508
|
# minimum_bitrate: 1,
|
2509
|
+
# priority: 1,
|
2283
2510
|
# },
|
2284
2511
|
# },
|
2285
2512
|
# },
|
@@ -2297,6 +2524,7 @@ module Aws::MediaLive
|
|
2297
2524
|
# resp.multiplex_program.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
|
2298
2525
|
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
|
2299
2526
|
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
|
2527
|
+
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
|
2300
2528
|
# resp.multiplex_program.packet_identifiers_map.audio_pids #=> Array
|
2301
2529
|
# resp.multiplex_program.packet_identifiers_map.audio_pids[0] #=> Integer
|
2302
2530
|
# resp.multiplex_program.packet_identifiers_map.dvb_sub_pids #=> Array
|
@@ -2314,6 +2542,9 @@ module Aws::MediaLive
|
|
2314
2542
|
# resp.multiplex_program.packet_identifiers_map.scte_35_pid #=> Integer
|
2315
2543
|
# resp.multiplex_program.packet_identifiers_map.timed_metadata_pid #=> Integer
|
2316
2544
|
# resp.multiplex_program.packet_identifiers_map.video_pid #=> Integer
|
2545
|
+
# resp.multiplex_program.pipeline_details #=> Array
|
2546
|
+
# resp.multiplex_program.pipeline_details[0].active_channel_pipeline #=> String
|
2547
|
+
# resp.multiplex_program.pipeline_details[0].pipeline_id #=> String
|
2317
2548
|
# resp.multiplex_program.program_name #=> String
|
2318
2549
|
#
|
2319
2550
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateMultiplexProgram AWS API Documentation
|
@@ -2358,6 +2589,7 @@ module Aws::MediaLive
|
|
2358
2589
|
# @return [Types::DeleteChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2359
2590
|
#
|
2360
2591
|
# * {Types::DeleteChannelResponse#arn #arn} => String
|
2592
|
+
# * {Types::DeleteChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
|
2361
2593
|
# * {Types::DeleteChannelResponse#channel_class #channel_class} => String
|
2362
2594
|
# * {Types::DeleteChannelResponse#destinations #destinations} => Array<Types::OutputDestination>
|
2363
2595
|
# * {Types::DeleteChannelResponse#egress_endpoints #egress_endpoints} => Array<Types::ChannelEgressEndpoint>
|
@@ -2382,6 +2614,7 @@ module Aws::MediaLive
|
|
2382
2614
|
# @example Response structure
|
2383
2615
|
#
|
2384
2616
|
# resp.arn #=> String
|
2617
|
+
# resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
2385
2618
|
# resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
2386
2619
|
# resp.destinations #=> Array
|
2387
2620
|
# resp.destinations[0].id #=> String
|
@@ -2442,6 +2675,9 @@ module Aws::MediaLive
|
|
2442
2675
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
2443
2676
|
# 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
2677
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
2678
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
2679
|
+
# 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"
|
2680
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
2445
2681
|
# resp.encoder_settings.audio_descriptions[0].language_code #=> String
|
2446
2682
|
# resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
2447
2683
|
# resp.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -2868,6 +3104,23 @@ module Aws::MediaLive
|
|
2868
3104
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
2869
3105
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
2870
3106
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
3107
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
3108
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
3109
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
3110
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
3111
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
3112
|
+
# 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"
|
3113
|
+
# 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"
|
3114
|
+
# 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"
|
3115
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
3116
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
3117
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
3118
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
3119
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
3120
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
3121
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
3122
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
3123
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
2871
3124
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
2872
3125
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
2873
3126
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -2890,6 +3143,7 @@ module Aws::MediaLive
|
|
2890
3143
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
2891
3144
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
2892
3145
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
3146
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
2893
3147
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
2894
3148
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
2895
3149
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -3042,6 +3296,7 @@ module Aws::MediaLive
|
|
3042
3296
|
# * {Types::DeleteMultiplexProgramResponse#channel_id #channel_id} => String
|
3043
3297
|
# * {Types::DeleteMultiplexProgramResponse#multiplex_program_settings #multiplex_program_settings} => Types::MultiplexProgramSettings
|
3044
3298
|
# * {Types::DeleteMultiplexProgramResponse#packet_identifiers_map #packet_identifiers_map} => Types::MultiplexProgramPacketIdentifiersMap
|
3299
|
+
# * {Types::DeleteMultiplexProgramResponse#pipeline_details #pipeline_details} => Array<Types::MultiplexProgramPipelineDetail>
|
3045
3300
|
# * {Types::DeleteMultiplexProgramResponse#program_name #program_name} => String
|
3046
3301
|
#
|
3047
3302
|
# @example Request syntax with placeholder values
|
@@ -3061,6 +3316,7 @@ module Aws::MediaLive
|
|
3061
3316
|
# resp.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
|
3062
3317
|
# resp.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
|
3063
3318
|
# resp.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
|
3319
|
+
# resp.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
|
3064
3320
|
# resp.packet_identifiers_map.audio_pids #=> Array
|
3065
3321
|
# resp.packet_identifiers_map.audio_pids[0] #=> Integer
|
3066
3322
|
# resp.packet_identifiers_map.dvb_sub_pids #=> Array
|
@@ -3078,6 +3334,9 @@ module Aws::MediaLive
|
|
3078
3334
|
# resp.packet_identifiers_map.scte_35_pid #=> Integer
|
3079
3335
|
# resp.packet_identifiers_map.timed_metadata_pid #=> Integer
|
3080
3336
|
# resp.packet_identifiers_map.video_pid #=> Integer
|
3337
|
+
# resp.pipeline_details #=> Array
|
3338
|
+
# resp.pipeline_details[0].active_channel_pipeline #=> String
|
3339
|
+
# resp.pipeline_details[0].pipeline_id #=> String
|
3081
3340
|
# resp.program_name #=> String
|
3082
3341
|
#
|
3083
3342
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteMultiplexProgram AWS API Documentation
|
@@ -3136,7 +3395,7 @@ module Aws::MediaLive
|
|
3136
3395
|
# resp.region #=> String
|
3137
3396
|
# resp.reservation_id #=> String
|
3138
3397
|
# resp.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
3139
|
-
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
3398
|
+
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
3140
3399
|
# resp.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
3141
3400
|
# resp.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
3142
3401
|
# resp.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -3210,6 +3469,7 @@ module Aws::MediaLive
|
|
3210
3469
|
# @return [Types::DescribeChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3211
3470
|
#
|
3212
3471
|
# * {Types::DescribeChannelResponse#arn #arn} => String
|
3472
|
+
# * {Types::DescribeChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
|
3213
3473
|
# * {Types::DescribeChannelResponse#channel_class #channel_class} => String
|
3214
3474
|
# * {Types::DescribeChannelResponse#destinations #destinations} => Array<Types::OutputDestination>
|
3215
3475
|
# * {Types::DescribeChannelResponse#egress_endpoints #egress_endpoints} => Array<Types::ChannelEgressEndpoint>
|
@@ -3234,6 +3494,7 @@ module Aws::MediaLive
|
|
3234
3494
|
# @example Response structure
|
3235
3495
|
#
|
3236
3496
|
# resp.arn #=> String
|
3497
|
+
# resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
3237
3498
|
# resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
3238
3499
|
# resp.destinations #=> Array
|
3239
3500
|
# resp.destinations[0].id #=> String
|
@@ -3294,6 +3555,9 @@ module Aws::MediaLive
|
|
3294
3555
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
3295
3556
|
# 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
3557
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
3558
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
3559
|
+
# 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"
|
3560
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
3297
3561
|
# resp.encoder_settings.audio_descriptions[0].language_code #=> String
|
3298
3562
|
# resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
3299
3563
|
# resp.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -3720,6 +3984,23 @@ module Aws::MediaLive
|
|
3720
3984
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
3721
3985
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
3722
3986
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
3987
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
3988
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
3989
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
3990
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
3991
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
3992
|
+
# 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"
|
3993
|
+
# 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"
|
3994
|
+
# 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"
|
3995
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
3996
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
3997
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
3998
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
3999
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
4000
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
4001
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
4002
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
4003
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
3723
4004
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
3724
4005
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
3725
4006
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -3742,6 +4023,7 @@ module Aws::MediaLive
|
|
3742
4023
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
3743
4024
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
3744
4025
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
4026
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
3745
4027
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
3746
4028
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
3747
4029
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -3855,7 +4137,7 @@ module Aws::MediaLive
|
|
3855
4137
|
# resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
3856
4138
|
# resp.tags #=> Hash
|
3857
4139
|
# resp.tags["__string"] #=> String
|
3858
|
-
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
|
4140
|
+
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
3859
4141
|
#
|
3860
4142
|
#
|
3861
4143
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -3935,7 +4217,6 @@ module Aws::MediaLive
|
|
3935
4217
|
# @option params [required, String] :input_device_id
|
3936
4218
|
#
|
3937
4219
|
# @option params [required, String] :accept
|
3938
|
-
# Accept Header
|
3939
4220
|
#
|
3940
4221
|
# @return [Types::DescribeInputDeviceThumbnailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3941
4222
|
#
|
@@ -4079,6 +4360,7 @@ module Aws::MediaLive
|
|
4079
4360
|
# * {Types::DescribeMultiplexProgramResponse#channel_id #channel_id} => String
|
4080
4361
|
# * {Types::DescribeMultiplexProgramResponse#multiplex_program_settings #multiplex_program_settings} => Types::MultiplexProgramSettings
|
4081
4362
|
# * {Types::DescribeMultiplexProgramResponse#packet_identifiers_map #packet_identifiers_map} => Types::MultiplexProgramPacketIdentifiersMap
|
4363
|
+
# * {Types::DescribeMultiplexProgramResponse#pipeline_details #pipeline_details} => Array<Types::MultiplexProgramPipelineDetail>
|
4082
4364
|
# * {Types::DescribeMultiplexProgramResponse#program_name #program_name} => String
|
4083
4365
|
#
|
4084
4366
|
# @example Request syntax with placeholder values
|
@@ -4098,6 +4380,7 @@ module Aws::MediaLive
|
|
4098
4380
|
# resp.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
|
4099
4381
|
# resp.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
|
4100
4382
|
# resp.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
|
4383
|
+
# resp.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
|
4101
4384
|
# resp.packet_identifiers_map.audio_pids #=> Array
|
4102
4385
|
# resp.packet_identifiers_map.audio_pids[0] #=> Integer
|
4103
4386
|
# resp.packet_identifiers_map.dvb_sub_pids #=> Array
|
@@ -4115,6 +4398,9 @@ module Aws::MediaLive
|
|
4115
4398
|
# resp.packet_identifiers_map.scte_35_pid #=> Integer
|
4116
4399
|
# resp.packet_identifiers_map.timed_metadata_pid #=> Integer
|
4117
4400
|
# resp.packet_identifiers_map.video_pid #=> Integer
|
4401
|
+
# resp.pipeline_details #=> Array
|
4402
|
+
# resp.pipeline_details[0].active_channel_pipeline #=> String
|
4403
|
+
# resp.pipeline_details[0].pipeline_id #=> String
|
4118
4404
|
# resp.program_name #=> String
|
4119
4405
|
#
|
4120
4406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeMultiplexProgram AWS API Documentation
|
@@ -4162,7 +4448,7 @@ module Aws::MediaLive
|
|
4162
4448
|
# resp.offering_type #=> String, one of "NO_UPFRONT"
|
4163
4449
|
# resp.region #=> String
|
4164
4450
|
# resp.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4165
|
-
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
4451
|
+
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
4166
4452
|
# resp.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
4167
4453
|
# resp.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
4168
4454
|
# resp.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -4227,7 +4513,7 @@ module Aws::MediaLive
|
|
4227
4513
|
# resp.region #=> String
|
4228
4514
|
# resp.reservation_id #=> String
|
4229
4515
|
# resp.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4230
|
-
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
4516
|
+
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
4231
4517
|
# resp.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
4232
4518
|
# resp.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
4233
4519
|
# resp.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -4364,6 +4650,7 @@ module Aws::MediaLive
|
|
4364
4650
|
#
|
4365
4651
|
# resp.channels #=> Array
|
4366
4652
|
# resp.channels[0].arn #=> String
|
4653
|
+
# resp.channels[0].cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
4367
4654
|
# resp.channels[0].channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4368
4655
|
# resp.channels[0].destinations #=> Array
|
4369
4656
|
# resp.channels[0].destinations[0].id #=> String
|
@@ -4394,6 +4681,7 @@ module Aws::MediaLive
|
|
4394
4681
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors #=> Array
|
4395
4682
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
4396
4683
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
4684
|
+
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
4397
4685
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
4398
4686
|
# 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
4687
|
# 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 +4727,49 @@ module Aws::MediaLive
|
|
4439
4727
|
req.send_request(options)
|
4440
4728
|
end
|
4441
4729
|
|
4730
|
+
# List input devices that are currently being transferred. List input
|
4731
|
+
# devices that you are transferring from your AWS account or input
|
4732
|
+
# devices that another AWS account is transferring to you.
|
4733
|
+
#
|
4734
|
+
# @option params [Integer] :max_results
|
4735
|
+
#
|
4736
|
+
# @option params [String] :next_token
|
4737
|
+
#
|
4738
|
+
# @option params [required, String] :transfer_type
|
4739
|
+
#
|
4740
|
+
# @return [Types::ListInputDeviceTransfersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4741
|
+
#
|
4742
|
+
# * {Types::ListInputDeviceTransfersResponse#input_device_transfers #input_device_transfers} => Array<Types::TransferringInputDeviceSummary>
|
4743
|
+
# * {Types::ListInputDeviceTransfersResponse#next_token #next_token} => String
|
4744
|
+
#
|
4745
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4746
|
+
#
|
4747
|
+
# @example Request syntax with placeholder values
|
4748
|
+
#
|
4749
|
+
# resp = client.list_input_device_transfers({
|
4750
|
+
# max_results: 1,
|
4751
|
+
# next_token: "__string",
|
4752
|
+
# transfer_type: "__string", # required
|
4753
|
+
# })
|
4754
|
+
#
|
4755
|
+
# @example Response structure
|
4756
|
+
#
|
4757
|
+
# resp.input_device_transfers #=> Array
|
4758
|
+
# resp.input_device_transfers[0].id #=> String
|
4759
|
+
# resp.input_device_transfers[0].message #=> String
|
4760
|
+
# resp.input_device_transfers[0].target_customer_id #=> String
|
4761
|
+
# resp.input_device_transfers[0].transfer_type #=> String, one of "OUTGOING", "INCOMING"
|
4762
|
+
# resp.next_token #=> String
|
4763
|
+
#
|
4764
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfers AWS API Documentation
|
4765
|
+
#
|
4766
|
+
# @overload list_input_device_transfers(params = {})
|
4767
|
+
# @param [Hash] params ({})
|
4768
|
+
def list_input_device_transfers(params = {}, options = {})
|
4769
|
+
req = build_request(:list_input_device_transfers, params)
|
4770
|
+
req.send_request(options)
|
4771
|
+
end
|
4772
|
+
|
4442
4773
|
# List input devices
|
4443
4774
|
#
|
4444
4775
|
# @option params [Integer] :max_results
|
@@ -4588,7 +4919,7 @@ module Aws::MediaLive
|
|
4588
4919
|
# resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
4589
4920
|
# resp.inputs[0].tags #=> Hash
|
4590
4921
|
# resp.inputs[0].tags["__string"] #=> String
|
4591
|
-
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
|
4922
|
+
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
4592
4923
|
# resp.next_token #=> String
|
4593
4924
|
#
|
4594
4925
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
|
@@ -4748,7 +5079,7 @@ module Aws::MediaLive
|
|
4748
5079
|
# resp.offerings[0].offering_type #=> String, one of "NO_UPFRONT"
|
4749
5080
|
# resp.offerings[0].region #=> String
|
4750
5081
|
# resp.offerings[0].resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4751
|
-
# resp.offerings[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
5082
|
+
# resp.offerings[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
4752
5083
|
# resp.offerings[0].resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
4753
5084
|
# resp.offerings[0].resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
4754
5085
|
# resp.offerings[0].resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -4828,7 +5159,7 @@ module Aws::MediaLive
|
|
4828
5159
|
# resp.reservations[0].region #=> String
|
4829
5160
|
# resp.reservations[0].reservation_id #=> String
|
4830
5161
|
# resp.reservations[0].resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4831
|
-
# resp.reservations[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
5162
|
+
# resp.reservations[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
4832
5163
|
# resp.reservations[0].resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
4833
5164
|
# resp.reservations[0].resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
4834
5165
|
# resp.reservations[0].resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -4927,7 +5258,7 @@ module Aws::MediaLive
|
|
4927
5258
|
# resp.reservation.region #=> String
|
4928
5259
|
# resp.reservation.reservation_id #=> String
|
4929
5260
|
# resp.reservation.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4930
|
-
# resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
5261
|
+
# resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
4931
5262
|
# resp.reservation.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
4932
5263
|
# resp.reservation.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
4933
5264
|
# resp.reservation.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -4949,6 +5280,27 @@ module Aws::MediaLive
|
|
4949
5280
|
req.send_request(options)
|
4950
5281
|
end
|
4951
5282
|
|
5283
|
+
# Reject the transfer of the specified input device to your AWS account.
|
5284
|
+
#
|
5285
|
+
# @option params [required, String] :input_device_id
|
5286
|
+
#
|
5287
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5288
|
+
#
|
5289
|
+
# @example Request syntax with placeholder values
|
5290
|
+
#
|
5291
|
+
# resp = client.reject_input_device_transfer({
|
5292
|
+
# input_device_id: "__string", # required
|
5293
|
+
# })
|
5294
|
+
#
|
5295
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransfer AWS API Documentation
|
5296
|
+
#
|
5297
|
+
# @overload reject_input_device_transfer(params = {})
|
5298
|
+
# @param [Hash] params ({})
|
5299
|
+
def reject_input_device_transfer(params = {}, options = {})
|
5300
|
+
req = build_request(:reject_input_device_transfer, params)
|
5301
|
+
req.send_request(options)
|
5302
|
+
end
|
5303
|
+
|
4952
5304
|
# Starts an existing channel
|
4953
5305
|
#
|
4954
5306
|
# @option params [required, String] :channel_id
|
@@ -4956,6 +5308,7 @@ module Aws::MediaLive
|
|
4956
5308
|
# @return [Types::StartChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4957
5309
|
#
|
4958
5310
|
# * {Types::StartChannelResponse#arn #arn} => String
|
5311
|
+
# * {Types::StartChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
|
4959
5312
|
# * {Types::StartChannelResponse#channel_class #channel_class} => String
|
4960
5313
|
# * {Types::StartChannelResponse#destinations #destinations} => Array<Types::OutputDestination>
|
4961
5314
|
# * {Types::StartChannelResponse#egress_endpoints #egress_endpoints} => Array<Types::ChannelEgressEndpoint>
|
@@ -4980,6 +5333,7 @@ module Aws::MediaLive
|
|
4980
5333
|
# @example Response structure
|
4981
5334
|
#
|
4982
5335
|
# resp.arn #=> String
|
5336
|
+
# resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
4983
5337
|
# resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4984
5338
|
# resp.destinations #=> Array
|
4985
5339
|
# resp.destinations[0].id #=> String
|
@@ -5040,6 +5394,9 @@ module Aws::MediaLive
|
|
5040
5394
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
5041
5395
|
# 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
5396
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
5397
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
5398
|
+
# 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"
|
5399
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
5043
5400
|
# resp.encoder_settings.audio_descriptions[0].language_code #=> String
|
5044
5401
|
# resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
5045
5402
|
# resp.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -5466,6 +5823,23 @@ module Aws::MediaLive
|
|
5466
5823
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
5467
5824
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
5468
5825
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
5826
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
5827
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
5828
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
5829
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
5830
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
5831
|
+
# 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"
|
5832
|
+
# 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"
|
5833
|
+
# 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"
|
5834
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
5835
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
5836
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
5837
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
5838
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
5839
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
5840
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
5841
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
5842
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
5469
5843
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
5470
5844
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
5471
5845
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -5488,6 +5862,7 @@ module Aws::MediaLive
|
|
5488
5862
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
5489
5863
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
5490
5864
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
5865
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
5491
5866
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
5492
5867
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
5493
5868
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -5595,6 +5970,7 @@ module Aws::MediaLive
|
|
5595
5970
|
# @return [Types::StopChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5596
5971
|
#
|
5597
5972
|
# * {Types::StopChannelResponse#arn #arn} => String
|
5973
|
+
# * {Types::StopChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
|
5598
5974
|
# * {Types::StopChannelResponse#channel_class #channel_class} => String
|
5599
5975
|
# * {Types::StopChannelResponse#destinations #destinations} => Array<Types::OutputDestination>
|
5600
5976
|
# * {Types::StopChannelResponse#egress_endpoints #egress_endpoints} => Array<Types::ChannelEgressEndpoint>
|
@@ -5619,6 +5995,7 @@ module Aws::MediaLive
|
|
5619
5995
|
# @example Response structure
|
5620
5996
|
#
|
5621
5997
|
# resp.arn #=> String
|
5998
|
+
# resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
5622
5999
|
# resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
5623
6000
|
# resp.destinations #=> Array
|
5624
6001
|
# resp.destinations[0].id #=> String
|
@@ -5679,6 +6056,9 @@ module Aws::MediaLive
|
|
5679
6056
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
5680
6057
|
# 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
6058
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
6059
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
6060
|
+
# 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"
|
6061
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
5682
6062
|
# resp.encoder_settings.audio_descriptions[0].language_code #=> String
|
5683
6063
|
# resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
5684
6064
|
# resp.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -6105,6 +6485,23 @@ module Aws::MediaLive
|
|
6105
6485
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
6106
6486
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
6107
6487
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
6488
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
6489
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
6490
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
6491
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
6492
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
6493
|
+
# 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"
|
6494
|
+
# 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"
|
6495
|
+
# 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"
|
6496
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
6497
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
6498
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
6499
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
6500
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
6501
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
6502
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
6503
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
6504
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
6108
6505
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
6109
6506
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
6110
6507
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -6127,6 +6524,7 @@ module Aws::MediaLive
|
|
6127
6524
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
6128
6525
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
6129
6526
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
6527
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
6130
6528
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
6131
6529
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
6132
6530
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -6227,8 +6625,38 @@ module Aws::MediaLive
|
|
6227
6625
|
req.send_request(options)
|
6228
6626
|
end
|
6229
6627
|
|
6628
|
+
# Start an input device transfer to another AWS account. After you make
|
6629
|
+
# the request, the other account must accept or reject the transfer.
|
6630
|
+
#
|
6631
|
+
# @option params [required, String] :input_device_id
|
6632
|
+
#
|
6633
|
+
# @option params [String] :target_customer_id
|
6634
|
+
#
|
6635
|
+
# @option params [String] :transfer_message
|
6636
|
+
#
|
6637
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
6638
|
+
#
|
6639
|
+
# @example Request syntax with placeholder values
|
6640
|
+
#
|
6641
|
+
# resp = client.transfer_input_device({
|
6642
|
+
# input_device_id: "__string", # required
|
6643
|
+
# target_customer_id: "__string",
|
6644
|
+
# transfer_message: "__string",
|
6645
|
+
# })
|
6646
|
+
#
|
6647
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDevice AWS API Documentation
|
6648
|
+
#
|
6649
|
+
# @overload transfer_input_device(params = {})
|
6650
|
+
# @param [Hash] params ({})
|
6651
|
+
def transfer_input_device(params = {}, options = {})
|
6652
|
+
req = build_request(:transfer_input_device, params)
|
6653
|
+
req.send_request(options)
|
6654
|
+
end
|
6655
|
+
|
6230
6656
|
# Updates a channel.
|
6231
6657
|
#
|
6658
|
+
# @option params [Types::CdiInputSpecification] :cdi_input_specification
|
6659
|
+
#
|
6232
6660
|
# @option params [required, String] :channel_id
|
6233
6661
|
#
|
6234
6662
|
# @option params [Array<Types::OutputDestination>] :destinations
|
@@ -6254,6 +6682,9 @@ module Aws::MediaLive
|
|
6254
6682
|
# @example Request syntax with placeholder values
|
6255
6683
|
#
|
6256
6684
|
# resp = client.update_channel({
|
6685
|
+
# cdi_input_specification: {
|
6686
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
6687
|
+
# },
|
6257
6688
|
# channel_id: "__string", # required
|
6258
6689
|
# destinations: [
|
6259
6690
|
# {
|
@@ -6338,6 +6769,11 @@ module Aws::MediaLive
|
|
6338
6769
|
# },
|
6339
6770
|
# pass_through_settings: {
|
6340
6771
|
# },
|
6772
|
+
# wav_settings: {
|
6773
|
+
# bit_depth: 1.0,
|
6774
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
6775
|
+
# sample_rate: 1.0,
|
6776
|
+
# },
|
6341
6777
|
# },
|
6342
6778
|
# language_code: "__stringMin1Max35",
|
6343
6779
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -6720,6 +7156,8 @@ module Aws::MediaLive
|
|
6720
7156
|
# transport_stream_id: 1,
|
6721
7157
|
# video_pid: "__string",
|
6722
7158
|
# },
|
7159
|
+
# raw_settings: {
|
7160
|
+
# },
|
6723
7161
|
# },
|
6724
7162
|
# extension: "__string",
|
6725
7163
|
# name_modifier: "__string",
|
@@ -6982,6 +7420,29 @@ module Aws::MediaLive
|
|
6982
7420
|
# tier: "HIGH", # accepts HIGH, MAIN
|
6983
7421
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
6984
7422
|
# },
|
7423
|
+
# mpeg_2_settings: {
|
7424
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
7425
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
7426
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
7427
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
7428
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
7429
|
+
# filter_settings: {
|
7430
|
+
# temporal_filter_settings: {
|
7431
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
7432
|
+
# 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
|
7433
|
+
# },
|
7434
|
+
# },
|
7435
|
+
# 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
|
7436
|
+
# framerate_denominator: 1, # required
|
7437
|
+
# framerate_numerator: 1, # required
|
7438
|
+
# gop_closed_cadence: 1,
|
7439
|
+
# gop_num_b_frames: 1,
|
7440
|
+
# gop_size: 1.0,
|
7441
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
7442
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
7443
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
7444
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
7445
|
+
# },
|
6985
7446
|
# },
|
6986
7447
|
# height: 1,
|
6987
7448
|
# name: "__string", # required
|
@@ -7027,6 +7488,9 @@ module Aws::MediaLive
|
|
7027
7488
|
# language_code: "__string",
|
7028
7489
|
# name: "__stringMin1", # required
|
7029
7490
|
# selector_settings: {
|
7491
|
+
# ancillary_source_settings: {
|
7492
|
+
# source_ancillary_channel_number: 1,
|
7493
|
+
# },
|
7030
7494
|
# arib_source_settings: {
|
7031
7495
|
# },
|
7032
7496
|
# dvb_sub_source_settings: {
|
@@ -7094,6 +7558,7 @@ module Aws::MediaLive
|
|
7094
7558
|
# @example Response structure
|
7095
7559
|
#
|
7096
7560
|
# resp.channel.arn #=> String
|
7561
|
+
# resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
7097
7562
|
# resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
7098
7563
|
# resp.channel.destinations #=> Array
|
7099
7564
|
# resp.channel.destinations[0].id #=> String
|
@@ -7154,6 +7619,9 @@ module Aws::MediaLive
|
|
7154
7619
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
7155
7620
|
# 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
7621
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
7622
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
7623
|
+
# 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"
|
7624
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
7157
7625
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
|
7158
7626
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
7159
7627
|
# resp.channel.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -7580,6 +8048,23 @@ module Aws::MediaLive
|
|
7580
8048
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
7581
8049
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
7582
8050
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
8051
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
8052
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
8053
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
8054
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
8055
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
8056
|
+
# 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"
|
8057
|
+
# 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"
|
8058
|
+
# 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"
|
8059
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
8060
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
8061
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
8062
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
8063
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
8064
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
8065
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
8066
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
8067
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
7583
8068
|
# resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
|
7584
8069
|
# resp.channel.encoder_settings.video_descriptions[0].name #=> String
|
7585
8070
|
# resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -7602,6 +8087,7 @@ module Aws::MediaLive
|
|
7602
8087
|
# resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
|
7603
8088
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
7604
8089
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
8090
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
7605
8091
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
7606
8092
|
# 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
8093
|
# 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 +8182,7 @@ module Aws::MediaLive
|
|
7696
8182
|
# @example Response structure
|
7697
8183
|
#
|
7698
8184
|
# resp.channel.arn #=> String
|
8185
|
+
# resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
7699
8186
|
# resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
7700
8187
|
# resp.channel.destinations #=> Array
|
7701
8188
|
# resp.channel.destinations[0].id #=> String
|
@@ -7756,6 +8243,9 @@ module Aws::MediaLive
|
|
7756
8243
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
7757
8244
|
# 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
8245
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
8246
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
8247
|
+
# 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"
|
8248
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
7759
8249
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
|
7760
8250
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
7761
8251
|
# resp.channel.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -8182,6 +8672,23 @@ module Aws::MediaLive
|
|
8182
8672
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
8183
8673
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
8184
8674
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
8675
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
8676
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
8677
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
8678
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
8679
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
8680
|
+
# 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"
|
8681
|
+
# 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"
|
8682
|
+
# 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"
|
8683
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
8684
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
8685
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
8686
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
8687
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
8688
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
8689
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
8690
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
8691
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
8185
8692
|
# resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
|
8186
8693
|
# resp.channel.encoder_settings.video_descriptions[0].name #=> String
|
8187
8694
|
# resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -8204,6 +8711,7 @@ module Aws::MediaLive
|
|
8204
8711
|
# resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
|
8205
8712
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
8206
8713
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
8714
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
8207
8715
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
8208
8716
|
# 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
8717
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -8334,7 +8842,7 @@ module Aws::MediaLive
|
|
8334
8842
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
8335
8843
|
# resp.input.tags #=> Hash
|
8336
8844
|
# resp.input.tags["__string"] #=> String
|
8337
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
|
8845
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
8338
8846
|
#
|
8339
8847
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
8340
8848
|
#
|
@@ -8542,6 +9050,7 @@ module Aws::MediaLive
|
|
8542
9050
|
# statmux_settings: {
|
8543
9051
|
# maximum_bitrate: 1,
|
8544
9052
|
# minimum_bitrate: 1,
|
9053
|
+
# priority: 1,
|
8545
9054
|
# },
|
8546
9055
|
# },
|
8547
9056
|
# },
|
@@ -8558,6 +9067,7 @@ module Aws::MediaLive
|
|
8558
9067
|
# resp.multiplex_program.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
|
8559
9068
|
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
|
8560
9069
|
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
|
9070
|
+
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
|
8561
9071
|
# resp.multiplex_program.packet_identifiers_map.audio_pids #=> Array
|
8562
9072
|
# resp.multiplex_program.packet_identifiers_map.audio_pids[0] #=> Integer
|
8563
9073
|
# resp.multiplex_program.packet_identifiers_map.dvb_sub_pids #=> Array
|
@@ -8575,6 +9085,9 @@ module Aws::MediaLive
|
|
8575
9085
|
# resp.multiplex_program.packet_identifiers_map.scte_35_pid #=> Integer
|
8576
9086
|
# resp.multiplex_program.packet_identifiers_map.timed_metadata_pid #=> Integer
|
8577
9087
|
# resp.multiplex_program.packet_identifiers_map.video_pid #=> Integer
|
9088
|
+
# resp.multiplex_program.pipeline_details #=> Array
|
9089
|
+
# resp.multiplex_program.pipeline_details[0].active_channel_pipeline #=> String
|
9090
|
+
# resp.multiplex_program.pipeline_details[0].pipeline_id #=> String
|
8578
9091
|
# resp.multiplex_program.program_name #=> String
|
8579
9092
|
#
|
8580
9093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateMultiplexProgram AWS API Documentation
|
@@ -8619,7 +9132,7 @@ module Aws::MediaLive
|
|
8619
9132
|
# resp.reservation.region #=> String
|
8620
9133
|
# resp.reservation.reservation_id #=> String
|
8621
9134
|
# resp.reservation.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
8622
|
-
# resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
9135
|
+
# resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
8623
9136
|
# resp.reservation.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
8624
9137
|
# resp.reservation.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
8625
9138
|
# resp.reservation.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -8654,7 +9167,7 @@ module Aws::MediaLive
|
|
8654
9167
|
params: params,
|
8655
9168
|
config: config)
|
8656
9169
|
context[:gem_name] = 'aws-sdk-medialive'
|
8657
|
-
context[:gem_version] = '1.
|
9170
|
+
context[:gem_version] = '1.57.0'
|
8658
9171
|
Seahorse::Client::Request.new(handlers, context)
|
8659
9172
|
end
|
8660
9173
|
|