aws-sdk-medialive 1.51.0 → 1.56.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-medialive.rb +4 -3
- data/lib/aws-sdk-medialive/client.rb +414 -21
- data/lib/aws-sdk-medialive/client_api.rb +210 -2
- data/lib/aws-sdk-medialive/types.rb +916 -30
- 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: d3a6900edcef11b32a20c86c0eae6b199b7766ceed3ff9ef3d59a879486cc228
|
4
|
+
data.tar.gz: 8dd50284b1a054cc64bc9c79dc56d51d1b8770b4855992a37c9e85925ba13d91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5f5a9ef4ccb366ba8900fdc9de8ef0d99d44fae02421616d7c584f8b0035f0259fcb0ce19289617359a0ad84d664330d0414ef7e06d5f018d944e0c168af74a
|
7
|
+
data.tar.gz: 04b1b5e179f0d3fb1f5ee04158c2ea690f848c6befbcec0bb750e218f913d6b39a3524d0cf556c9698b384e8ebb3301e35dd23dcb5f8acb5f952d322fd038142
|
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.batch_delete(params)
|
32
33
|
#
|
33
34
|
# See {Client} for more information.
|
34
35
|
#
|
@@ -45,9 +46,9 @@ require_relative 'aws-sdk-medialive/customizations'
|
|
45
46
|
#
|
46
47
|
# See {Errors} for more information.
|
47
48
|
#
|
48
|
-
#
|
49
|
+
# @!group service
|
49
50
|
module Aws::MediaLive
|
50
51
|
|
51
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.56.0'
|
52
53
|
|
53
54
|
end
|
@@ -85,13 +85,28 @@ module Aws::MediaLive
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::MediaLive
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -312,6 +327,129 @@ module Aws::MediaLive
|
|
312
327
|
|
313
328
|
# @!group API Operations
|
314
329
|
|
330
|
+
# Starts delete of resources.
|
331
|
+
#
|
332
|
+
# @option params [Array<String>] :channel_ids
|
333
|
+
#
|
334
|
+
# @option params [Array<String>] :input_ids
|
335
|
+
#
|
336
|
+
# @option params [Array<String>] :input_security_group_ids
|
337
|
+
#
|
338
|
+
# @option params [Array<String>] :multiplex_ids
|
339
|
+
#
|
340
|
+
# @return [Types::BatchDeleteResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
341
|
+
#
|
342
|
+
# * {Types::BatchDeleteResponse#failed #failed} => Array<Types::BatchFailedResultModel>
|
343
|
+
# * {Types::BatchDeleteResponse#successful #successful} => Array<Types::BatchSuccessfulResultModel>
|
344
|
+
#
|
345
|
+
# @example Request syntax with placeholder values
|
346
|
+
#
|
347
|
+
# resp = client.batch_delete({
|
348
|
+
# channel_ids: ["__string"],
|
349
|
+
# input_ids: ["__string"],
|
350
|
+
# input_security_group_ids: ["__string"],
|
351
|
+
# multiplex_ids: ["__string"],
|
352
|
+
# })
|
353
|
+
#
|
354
|
+
# @example Response structure
|
355
|
+
#
|
356
|
+
# resp.failed #=> Array
|
357
|
+
# resp.failed[0].arn #=> String
|
358
|
+
# resp.failed[0].code #=> String
|
359
|
+
# resp.failed[0].id #=> String
|
360
|
+
# resp.failed[0].message #=> String
|
361
|
+
# resp.successful #=> Array
|
362
|
+
# resp.successful[0].arn #=> String
|
363
|
+
# resp.successful[0].id #=> String
|
364
|
+
# resp.successful[0].state #=> String
|
365
|
+
#
|
366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDelete AWS API Documentation
|
367
|
+
#
|
368
|
+
# @overload batch_delete(params = {})
|
369
|
+
# @param [Hash] params ({})
|
370
|
+
def batch_delete(params = {}, options = {})
|
371
|
+
req = build_request(:batch_delete, params)
|
372
|
+
req.send_request(options)
|
373
|
+
end
|
374
|
+
|
375
|
+
# Starts existing resources
|
376
|
+
#
|
377
|
+
# @option params [Array<String>] :channel_ids
|
378
|
+
#
|
379
|
+
# @option params [Array<String>] :multiplex_ids
|
380
|
+
#
|
381
|
+
# @return [Types::BatchStartResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
382
|
+
#
|
383
|
+
# * {Types::BatchStartResponse#failed #failed} => Array<Types::BatchFailedResultModel>
|
384
|
+
# * {Types::BatchStartResponse#successful #successful} => Array<Types::BatchSuccessfulResultModel>
|
385
|
+
#
|
386
|
+
# @example Request syntax with placeholder values
|
387
|
+
#
|
388
|
+
# resp = client.batch_start({
|
389
|
+
# channel_ids: ["__string"],
|
390
|
+
# multiplex_ids: ["__string"],
|
391
|
+
# })
|
392
|
+
#
|
393
|
+
# @example Response structure
|
394
|
+
#
|
395
|
+
# resp.failed #=> Array
|
396
|
+
# resp.failed[0].arn #=> String
|
397
|
+
# resp.failed[0].code #=> String
|
398
|
+
# resp.failed[0].id #=> String
|
399
|
+
# resp.failed[0].message #=> String
|
400
|
+
# resp.successful #=> Array
|
401
|
+
# resp.successful[0].arn #=> String
|
402
|
+
# resp.successful[0].id #=> String
|
403
|
+
# resp.successful[0].state #=> String
|
404
|
+
#
|
405
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStart AWS API Documentation
|
406
|
+
#
|
407
|
+
# @overload batch_start(params = {})
|
408
|
+
# @param [Hash] params ({})
|
409
|
+
def batch_start(params = {}, options = {})
|
410
|
+
req = build_request(:batch_start, params)
|
411
|
+
req.send_request(options)
|
412
|
+
end
|
413
|
+
|
414
|
+
# Stops running resources
|
415
|
+
#
|
416
|
+
# @option params [Array<String>] :channel_ids
|
417
|
+
#
|
418
|
+
# @option params [Array<String>] :multiplex_ids
|
419
|
+
#
|
420
|
+
# @return [Types::BatchStopResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
421
|
+
#
|
422
|
+
# * {Types::BatchStopResponse#failed #failed} => Array<Types::BatchFailedResultModel>
|
423
|
+
# * {Types::BatchStopResponse#successful #successful} => Array<Types::BatchSuccessfulResultModel>
|
424
|
+
#
|
425
|
+
# @example Request syntax with placeholder values
|
426
|
+
#
|
427
|
+
# resp = client.batch_stop({
|
428
|
+
# channel_ids: ["__string"],
|
429
|
+
# multiplex_ids: ["__string"],
|
430
|
+
# })
|
431
|
+
#
|
432
|
+
# @example Response structure
|
433
|
+
#
|
434
|
+
# resp.failed #=> Array
|
435
|
+
# resp.failed[0].arn #=> String
|
436
|
+
# resp.failed[0].code #=> String
|
437
|
+
# resp.failed[0].id #=> String
|
438
|
+
# resp.failed[0].message #=> String
|
439
|
+
# resp.successful #=> Array
|
440
|
+
# resp.successful[0].arn #=> String
|
441
|
+
# resp.successful[0].id #=> String
|
442
|
+
# resp.successful[0].state #=> String
|
443
|
+
#
|
444
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStop AWS API Documentation
|
445
|
+
#
|
446
|
+
# @overload batch_stop(params = {})
|
447
|
+
# @param [Hash] params ({})
|
448
|
+
def batch_stop(params = {}, options = {})
|
449
|
+
req = build_request(:batch_stop, params)
|
450
|
+
req.send_request(options)
|
451
|
+
end
|
452
|
+
|
315
453
|
# Update a channel schedule
|
316
454
|
#
|
317
455
|
# @option params [required, String] :channel_id
|
@@ -574,6 +712,8 @@ module Aws::MediaLive
|
|
574
712
|
|
575
713
|
# Creates a new channel
|
576
714
|
#
|
715
|
+
# @option params [Types::CdiInputSpecification] :cdi_input_specification
|
716
|
+
#
|
577
717
|
# @option params [String] :channel_class
|
578
718
|
# A standard channel has two encoding pipelines and a single pipeline
|
579
719
|
# channel only has one.
|
@@ -609,6 +749,9 @@ module Aws::MediaLive
|
|
609
749
|
# @example Request syntax with placeholder values
|
610
750
|
#
|
611
751
|
# resp = client.create_channel({
|
752
|
+
# cdi_input_specification: {
|
753
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
754
|
+
# },
|
612
755
|
# channel_class: "STANDARD", # accepts STANDARD, SINGLE_PIPELINE
|
613
756
|
# destinations: [
|
614
757
|
# {
|
@@ -693,6 +836,11 @@ module Aws::MediaLive
|
|
693
836
|
# },
|
694
837
|
# pass_through_settings: {
|
695
838
|
# },
|
839
|
+
# wav_settings: {
|
840
|
+
# bit_depth: 1.0,
|
841
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
842
|
+
# sample_rate: 1.0,
|
843
|
+
# },
|
696
844
|
# },
|
697
845
|
# language_code: "__stringMin1Max35",
|
698
846
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -1075,6 +1223,8 @@ module Aws::MediaLive
|
|
1075
1223
|
# transport_stream_id: 1,
|
1076
1224
|
# video_pid: "__string",
|
1077
1225
|
# },
|
1226
|
+
# raw_settings: {
|
1227
|
+
# },
|
1078
1228
|
# },
|
1079
1229
|
# extension: "__string",
|
1080
1230
|
# name_modifier: "__string",
|
@@ -1337,6 +1487,29 @@ module Aws::MediaLive
|
|
1337
1487
|
# tier: "HIGH", # accepts HIGH, MAIN
|
1338
1488
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
1339
1489
|
# },
|
1490
|
+
# mpeg_2_settings: {
|
1491
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
1492
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
1493
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
1494
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
1495
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
1496
|
+
# filter_settings: {
|
1497
|
+
# temporal_filter_settings: {
|
1498
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
1499
|
+
# 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
|
1500
|
+
# },
|
1501
|
+
# },
|
1502
|
+
# 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
|
1503
|
+
# framerate_denominator: 1, # required
|
1504
|
+
# framerate_numerator: 1, # required
|
1505
|
+
# gop_closed_cadence: 1,
|
1506
|
+
# gop_num_b_frames: 1,
|
1507
|
+
# gop_size: 1.0,
|
1508
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
1509
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
1510
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
1511
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
1512
|
+
# },
|
1340
1513
|
# },
|
1341
1514
|
# height: 1,
|
1342
1515
|
# name: "__string", # required
|
@@ -1382,6 +1555,9 @@ module Aws::MediaLive
|
|
1382
1555
|
# language_code: "__string",
|
1383
1556
|
# name: "__stringMin1", # required
|
1384
1557
|
# selector_settings: {
|
1558
|
+
# ancillary_source_settings: {
|
1559
|
+
# source_ancillary_channel_number: 1,
|
1560
|
+
# },
|
1385
1561
|
# arib_source_settings: {
|
1386
1562
|
# },
|
1387
1563
|
# dvb_sub_source_settings: {
|
@@ -1454,6 +1630,7 @@ module Aws::MediaLive
|
|
1454
1630
|
# @example Response structure
|
1455
1631
|
#
|
1456
1632
|
# resp.channel.arn #=> String
|
1633
|
+
# resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
1457
1634
|
# resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
1458
1635
|
# resp.channel.destinations #=> Array
|
1459
1636
|
# resp.channel.destinations[0].id #=> String
|
@@ -1514,6 +1691,9 @@ module Aws::MediaLive
|
|
1514
1691
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
1515
1692
|
# 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"
|
1516
1693
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
1694
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
1695
|
+
# 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"
|
1696
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
1517
1697
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
|
1518
1698
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
1519
1699
|
# resp.channel.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -1940,6 +2120,23 @@ module Aws::MediaLive
|
|
1940
2120
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
1941
2121
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
1942
2122
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
2123
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
2124
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
2125
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
2126
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
2127
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
2128
|
+
# 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"
|
2129
|
+
# 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"
|
2130
|
+
# 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"
|
2131
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
2132
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
2133
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
2134
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
2135
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
2136
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
2137
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
2138
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
2139
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
1943
2140
|
# resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
|
1944
2141
|
# resp.channel.encoder_settings.video_descriptions[0].name #=> String
|
1945
2142
|
# resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -1962,6 +2159,7 @@ module Aws::MediaLive
|
|
1962
2159
|
# resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
|
1963
2160
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
1964
2161
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
2162
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
1965
2163
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
1966
2164
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
1967
2165
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -2077,7 +2275,7 @@ module Aws::MediaLive
|
|
2077
2275
|
# tags: {
|
2078
2276
|
# "__string" => "__string",
|
2079
2277
|
# },
|
2080
|
-
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE
|
2278
|
+
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI
|
2081
2279
|
# vpc: {
|
2082
2280
|
# security_group_ids: ["__string"],
|
2083
2281
|
# subnet_ids: ["__string"], # required
|
@@ -2113,7 +2311,7 @@ module Aws::MediaLive
|
|
2113
2311
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2114
2312
|
# resp.input.tags #=> Hash
|
2115
2313
|
# resp.input.tags["__string"] #=> String
|
2116
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
|
2314
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
2117
2315
|
#
|
2118
2316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
2119
2317
|
#
|
@@ -2265,6 +2463,7 @@ module Aws::MediaLive
|
|
2265
2463
|
# statmux_settings: {
|
2266
2464
|
# maximum_bitrate: 1,
|
2267
2465
|
# minimum_bitrate: 1,
|
2466
|
+
# priority: 1,
|
2268
2467
|
# },
|
2269
2468
|
# },
|
2270
2469
|
# },
|
@@ -2282,6 +2481,7 @@ module Aws::MediaLive
|
|
2282
2481
|
# resp.multiplex_program.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
|
2283
2482
|
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
|
2284
2483
|
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
|
2484
|
+
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
|
2285
2485
|
# resp.multiplex_program.packet_identifiers_map.audio_pids #=> Array
|
2286
2486
|
# resp.multiplex_program.packet_identifiers_map.audio_pids[0] #=> Integer
|
2287
2487
|
# resp.multiplex_program.packet_identifiers_map.dvb_sub_pids #=> Array
|
@@ -2299,6 +2499,9 @@ module Aws::MediaLive
|
|
2299
2499
|
# resp.multiplex_program.packet_identifiers_map.scte_35_pid #=> Integer
|
2300
2500
|
# resp.multiplex_program.packet_identifiers_map.timed_metadata_pid #=> Integer
|
2301
2501
|
# resp.multiplex_program.packet_identifiers_map.video_pid #=> Integer
|
2502
|
+
# resp.multiplex_program.pipeline_details #=> Array
|
2503
|
+
# resp.multiplex_program.pipeline_details[0].active_channel_pipeline #=> String
|
2504
|
+
# resp.multiplex_program.pipeline_details[0].pipeline_id #=> String
|
2302
2505
|
# resp.multiplex_program.program_name #=> String
|
2303
2506
|
#
|
2304
2507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateMultiplexProgram AWS API Documentation
|
@@ -2343,6 +2546,7 @@ module Aws::MediaLive
|
|
2343
2546
|
# @return [Types::DeleteChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2344
2547
|
#
|
2345
2548
|
# * {Types::DeleteChannelResponse#arn #arn} => String
|
2549
|
+
# * {Types::DeleteChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
|
2346
2550
|
# * {Types::DeleteChannelResponse#channel_class #channel_class} => String
|
2347
2551
|
# * {Types::DeleteChannelResponse#destinations #destinations} => Array<Types::OutputDestination>
|
2348
2552
|
# * {Types::DeleteChannelResponse#egress_endpoints #egress_endpoints} => Array<Types::ChannelEgressEndpoint>
|
@@ -2367,6 +2571,7 @@ module Aws::MediaLive
|
|
2367
2571
|
# @example Response structure
|
2368
2572
|
#
|
2369
2573
|
# resp.arn #=> String
|
2574
|
+
# resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
2370
2575
|
# resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
2371
2576
|
# resp.destinations #=> Array
|
2372
2577
|
# resp.destinations[0].id #=> String
|
@@ -2427,6 +2632,9 @@ module Aws::MediaLive
|
|
2427
2632
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
2428
2633
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
|
2429
2634
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
2635
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
2636
|
+
# 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"
|
2637
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
2430
2638
|
# resp.encoder_settings.audio_descriptions[0].language_code #=> String
|
2431
2639
|
# resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
2432
2640
|
# resp.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -2853,6 +3061,23 @@ module Aws::MediaLive
|
|
2853
3061
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
2854
3062
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
2855
3063
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
3064
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
3065
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
3066
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
3067
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
3068
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
3069
|
+
# 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"
|
3070
|
+
# 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"
|
3071
|
+
# 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"
|
3072
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
3073
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
3074
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
3075
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
3076
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
3077
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
3078
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
3079
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
3080
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
2856
3081
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
2857
3082
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
2858
3083
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -2875,6 +3100,7 @@ module Aws::MediaLive
|
|
2875
3100
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
2876
3101
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
2877
3102
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
3103
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
2878
3104
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
2879
3105
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
2880
3106
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -3027,6 +3253,7 @@ module Aws::MediaLive
|
|
3027
3253
|
# * {Types::DeleteMultiplexProgramResponse#channel_id #channel_id} => String
|
3028
3254
|
# * {Types::DeleteMultiplexProgramResponse#multiplex_program_settings #multiplex_program_settings} => Types::MultiplexProgramSettings
|
3029
3255
|
# * {Types::DeleteMultiplexProgramResponse#packet_identifiers_map #packet_identifiers_map} => Types::MultiplexProgramPacketIdentifiersMap
|
3256
|
+
# * {Types::DeleteMultiplexProgramResponse#pipeline_details #pipeline_details} => Array<Types::MultiplexProgramPipelineDetail>
|
3030
3257
|
# * {Types::DeleteMultiplexProgramResponse#program_name #program_name} => String
|
3031
3258
|
#
|
3032
3259
|
# @example Request syntax with placeholder values
|
@@ -3046,6 +3273,7 @@ module Aws::MediaLive
|
|
3046
3273
|
# resp.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
|
3047
3274
|
# resp.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
|
3048
3275
|
# resp.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
|
3276
|
+
# resp.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
|
3049
3277
|
# resp.packet_identifiers_map.audio_pids #=> Array
|
3050
3278
|
# resp.packet_identifiers_map.audio_pids[0] #=> Integer
|
3051
3279
|
# resp.packet_identifiers_map.dvb_sub_pids #=> Array
|
@@ -3063,6 +3291,9 @@ module Aws::MediaLive
|
|
3063
3291
|
# resp.packet_identifiers_map.scte_35_pid #=> Integer
|
3064
3292
|
# resp.packet_identifiers_map.timed_metadata_pid #=> Integer
|
3065
3293
|
# resp.packet_identifiers_map.video_pid #=> Integer
|
3294
|
+
# resp.pipeline_details #=> Array
|
3295
|
+
# resp.pipeline_details[0].active_channel_pipeline #=> String
|
3296
|
+
# resp.pipeline_details[0].pipeline_id #=> String
|
3066
3297
|
# resp.program_name #=> String
|
3067
3298
|
#
|
3068
3299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteMultiplexProgram AWS API Documentation
|
@@ -3121,7 +3352,7 @@ module Aws::MediaLive
|
|
3121
3352
|
# resp.region #=> String
|
3122
3353
|
# resp.reservation_id #=> String
|
3123
3354
|
# resp.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
3124
|
-
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
3355
|
+
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
3125
3356
|
# resp.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
3126
3357
|
# resp.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
3127
3358
|
# resp.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -3195,6 +3426,7 @@ module Aws::MediaLive
|
|
3195
3426
|
# @return [Types::DescribeChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3196
3427
|
#
|
3197
3428
|
# * {Types::DescribeChannelResponse#arn #arn} => String
|
3429
|
+
# * {Types::DescribeChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
|
3198
3430
|
# * {Types::DescribeChannelResponse#channel_class #channel_class} => String
|
3199
3431
|
# * {Types::DescribeChannelResponse#destinations #destinations} => Array<Types::OutputDestination>
|
3200
3432
|
# * {Types::DescribeChannelResponse#egress_endpoints #egress_endpoints} => Array<Types::ChannelEgressEndpoint>
|
@@ -3219,6 +3451,7 @@ module Aws::MediaLive
|
|
3219
3451
|
# @example Response structure
|
3220
3452
|
#
|
3221
3453
|
# resp.arn #=> String
|
3454
|
+
# resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
3222
3455
|
# resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
3223
3456
|
# resp.destinations #=> Array
|
3224
3457
|
# resp.destinations[0].id #=> String
|
@@ -3279,6 +3512,9 @@ module Aws::MediaLive
|
|
3279
3512
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
3280
3513
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
|
3281
3514
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
3515
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
3516
|
+
# 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"
|
3517
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
3282
3518
|
# resp.encoder_settings.audio_descriptions[0].language_code #=> String
|
3283
3519
|
# resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
3284
3520
|
# resp.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -3705,6 +3941,23 @@ module Aws::MediaLive
|
|
3705
3941
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
3706
3942
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
3707
3943
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
3944
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
3945
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
3946
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
3947
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
3948
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
3949
|
+
# 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"
|
3950
|
+
# 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"
|
3951
|
+
# 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"
|
3952
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
3953
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
3954
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
3955
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
3956
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
3957
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
3958
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
3959
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
3960
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
3708
3961
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
3709
3962
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
3710
3963
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -3727,6 +3980,7 @@ module Aws::MediaLive
|
|
3727
3980
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
3728
3981
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
3729
3982
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
3983
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
3730
3984
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
3731
3985
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
3732
3986
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -3840,7 +4094,7 @@ module Aws::MediaLive
|
|
3840
4094
|
# resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
3841
4095
|
# resp.tags #=> Hash
|
3842
4096
|
# resp.tags["__string"] #=> String
|
3843
|
-
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
|
4097
|
+
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
3844
4098
|
#
|
3845
4099
|
#
|
3846
4100
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -3920,7 +4174,6 @@ module Aws::MediaLive
|
|
3920
4174
|
# @option params [required, String] :input_device_id
|
3921
4175
|
#
|
3922
4176
|
# @option params [required, String] :accept
|
3923
|
-
# Accept Header
|
3924
4177
|
#
|
3925
4178
|
# @return [Types::DescribeInputDeviceThumbnailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3926
4179
|
#
|
@@ -4064,6 +4317,7 @@ module Aws::MediaLive
|
|
4064
4317
|
# * {Types::DescribeMultiplexProgramResponse#channel_id #channel_id} => String
|
4065
4318
|
# * {Types::DescribeMultiplexProgramResponse#multiplex_program_settings #multiplex_program_settings} => Types::MultiplexProgramSettings
|
4066
4319
|
# * {Types::DescribeMultiplexProgramResponse#packet_identifiers_map #packet_identifiers_map} => Types::MultiplexProgramPacketIdentifiersMap
|
4320
|
+
# * {Types::DescribeMultiplexProgramResponse#pipeline_details #pipeline_details} => Array<Types::MultiplexProgramPipelineDetail>
|
4067
4321
|
# * {Types::DescribeMultiplexProgramResponse#program_name #program_name} => String
|
4068
4322
|
#
|
4069
4323
|
# @example Request syntax with placeholder values
|
@@ -4083,6 +4337,7 @@ module Aws::MediaLive
|
|
4083
4337
|
# resp.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
|
4084
4338
|
# resp.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
|
4085
4339
|
# resp.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
|
4340
|
+
# resp.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
|
4086
4341
|
# resp.packet_identifiers_map.audio_pids #=> Array
|
4087
4342
|
# resp.packet_identifiers_map.audio_pids[0] #=> Integer
|
4088
4343
|
# resp.packet_identifiers_map.dvb_sub_pids #=> Array
|
@@ -4100,6 +4355,9 @@ module Aws::MediaLive
|
|
4100
4355
|
# resp.packet_identifiers_map.scte_35_pid #=> Integer
|
4101
4356
|
# resp.packet_identifiers_map.timed_metadata_pid #=> Integer
|
4102
4357
|
# resp.packet_identifiers_map.video_pid #=> Integer
|
4358
|
+
# resp.pipeline_details #=> Array
|
4359
|
+
# resp.pipeline_details[0].active_channel_pipeline #=> String
|
4360
|
+
# resp.pipeline_details[0].pipeline_id #=> String
|
4103
4361
|
# resp.program_name #=> String
|
4104
4362
|
#
|
4105
4363
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeMultiplexProgram AWS API Documentation
|
@@ -4147,7 +4405,7 @@ module Aws::MediaLive
|
|
4147
4405
|
# resp.offering_type #=> String, one of "NO_UPFRONT"
|
4148
4406
|
# resp.region #=> String
|
4149
4407
|
# resp.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4150
|
-
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
4408
|
+
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
4151
4409
|
# resp.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
4152
4410
|
# resp.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
4153
4411
|
# resp.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -4212,7 +4470,7 @@ module Aws::MediaLive
|
|
4212
4470
|
# resp.region #=> String
|
4213
4471
|
# resp.reservation_id #=> String
|
4214
4472
|
# resp.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4215
|
-
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
4473
|
+
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
4216
4474
|
# resp.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
4217
4475
|
# resp.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
4218
4476
|
# resp.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -4349,6 +4607,7 @@ module Aws::MediaLive
|
|
4349
4607
|
#
|
4350
4608
|
# resp.channels #=> Array
|
4351
4609
|
# resp.channels[0].arn #=> String
|
4610
|
+
# resp.channels[0].cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
4352
4611
|
# resp.channels[0].channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4353
4612
|
# resp.channels[0].destinations #=> Array
|
4354
4613
|
# resp.channels[0].destinations[0].id #=> String
|
@@ -4379,6 +4638,7 @@ module Aws::MediaLive
|
|
4379
4638
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors #=> Array
|
4380
4639
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
4381
4640
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
4641
|
+
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
4382
4642
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
4383
4643
|
# 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"
|
4384
4644
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -4573,7 +4833,7 @@ module Aws::MediaLive
|
|
4573
4833
|
# resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
4574
4834
|
# resp.inputs[0].tags #=> Hash
|
4575
4835
|
# resp.inputs[0].tags["__string"] #=> String
|
4576
|
-
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
|
4836
|
+
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
4577
4837
|
# resp.next_token #=> String
|
4578
4838
|
#
|
4579
4839
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
|
@@ -4733,7 +4993,7 @@ module Aws::MediaLive
|
|
4733
4993
|
# resp.offerings[0].offering_type #=> String, one of "NO_UPFRONT"
|
4734
4994
|
# resp.offerings[0].region #=> String
|
4735
4995
|
# resp.offerings[0].resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4736
|
-
# resp.offerings[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
4996
|
+
# resp.offerings[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
4737
4997
|
# resp.offerings[0].resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
4738
4998
|
# resp.offerings[0].resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
4739
4999
|
# resp.offerings[0].resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -4813,7 +5073,7 @@ module Aws::MediaLive
|
|
4813
5073
|
# resp.reservations[0].region #=> String
|
4814
5074
|
# resp.reservations[0].reservation_id #=> String
|
4815
5075
|
# resp.reservations[0].resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4816
|
-
# resp.reservations[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
5076
|
+
# resp.reservations[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
4817
5077
|
# resp.reservations[0].resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
4818
5078
|
# resp.reservations[0].resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
4819
5079
|
# resp.reservations[0].resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -4912,7 +5172,7 @@ module Aws::MediaLive
|
|
4912
5172
|
# resp.reservation.region #=> String
|
4913
5173
|
# resp.reservation.reservation_id #=> String
|
4914
5174
|
# resp.reservation.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4915
|
-
# resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
5175
|
+
# resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
4916
5176
|
# resp.reservation.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
4917
5177
|
# resp.reservation.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
4918
5178
|
# resp.reservation.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -4941,6 +5201,7 @@ module Aws::MediaLive
|
|
4941
5201
|
# @return [Types::StartChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4942
5202
|
#
|
4943
5203
|
# * {Types::StartChannelResponse#arn #arn} => String
|
5204
|
+
# * {Types::StartChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
|
4944
5205
|
# * {Types::StartChannelResponse#channel_class #channel_class} => String
|
4945
5206
|
# * {Types::StartChannelResponse#destinations #destinations} => Array<Types::OutputDestination>
|
4946
5207
|
# * {Types::StartChannelResponse#egress_endpoints #egress_endpoints} => Array<Types::ChannelEgressEndpoint>
|
@@ -4965,6 +5226,7 @@ module Aws::MediaLive
|
|
4965
5226
|
# @example Response structure
|
4966
5227
|
#
|
4967
5228
|
# resp.arn #=> String
|
5229
|
+
# resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
4968
5230
|
# resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4969
5231
|
# resp.destinations #=> Array
|
4970
5232
|
# resp.destinations[0].id #=> String
|
@@ -5025,6 +5287,9 @@ module Aws::MediaLive
|
|
5025
5287
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
5026
5288
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
|
5027
5289
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
5290
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
5291
|
+
# 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"
|
5292
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
5028
5293
|
# resp.encoder_settings.audio_descriptions[0].language_code #=> String
|
5029
5294
|
# resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
5030
5295
|
# resp.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -5451,6 +5716,23 @@ module Aws::MediaLive
|
|
5451
5716
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
5452
5717
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
5453
5718
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
5719
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
5720
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
5721
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
5722
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
5723
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
5724
|
+
# 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"
|
5725
|
+
# 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"
|
5726
|
+
# 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"
|
5727
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
5728
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
5729
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
5730
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
5731
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
5732
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
5733
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
5734
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
5735
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
5454
5736
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
5455
5737
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
5456
5738
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -5473,6 +5755,7 @@ module Aws::MediaLive
|
|
5473
5755
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
5474
5756
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
5475
5757
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
5758
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
5476
5759
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
5477
5760
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
5478
5761
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -5580,6 +5863,7 @@ module Aws::MediaLive
|
|
5580
5863
|
# @return [Types::StopChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5581
5864
|
#
|
5582
5865
|
# * {Types::StopChannelResponse#arn #arn} => String
|
5866
|
+
# * {Types::StopChannelResponse#cdi_input_specification #cdi_input_specification} => Types::CdiInputSpecification
|
5583
5867
|
# * {Types::StopChannelResponse#channel_class #channel_class} => String
|
5584
5868
|
# * {Types::StopChannelResponse#destinations #destinations} => Array<Types::OutputDestination>
|
5585
5869
|
# * {Types::StopChannelResponse#egress_endpoints #egress_endpoints} => Array<Types::ChannelEgressEndpoint>
|
@@ -5604,6 +5888,7 @@ module Aws::MediaLive
|
|
5604
5888
|
# @example Response structure
|
5605
5889
|
#
|
5606
5890
|
# resp.arn #=> String
|
5891
|
+
# resp.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
5607
5892
|
# resp.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
5608
5893
|
# resp.destinations #=> Array
|
5609
5894
|
# resp.destinations[0].id #=> String
|
@@ -5664,6 +5949,9 @@ module Aws::MediaLive
|
|
5664
5949
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
5665
5950
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.coding_mode #=> String, one of "CODING_MODE_1_0", "CODING_MODE_2_0"
|
5666
5951
|
# resp.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
5952
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
5953
|
+
# 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"
|
5954
|
+
# resp.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
5667
5955
|
# resp.encoder_settings.audio_descriptions[0].language_code #=> String
|
5668
5956
|
# resp.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
5669
5957
|
# resp.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -6090,6 +6378,23 @@ module Aws::MediaLive
|
|
6090
6378
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
6091
6379
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
6092
6380
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
6381
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
6382
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
6383
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
6384
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
6385
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
6386
|
+
# 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"
|
6387
|
+
# 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"
|
6388
|
+
# 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"
|
6389
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
6390
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
6391
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
6392
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
6393
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
6394
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
6395
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
6396
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
6397
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
6093
6398
|
# resp.encoder_settings.video_descriptions[0].height #=> Integer
|
6094
6399
|
# resp.encoder_settings.video_descriptions[0].name #=> String
|
6095
6400
|
# resp.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -6112,6 +6417,7 @@ module Aws::MediaLive
|
|
6112
6417
|
# resp.input_attachments[0].input_settings.caption_selectors #=> Array
|
6113
6418
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
6114
6419
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
6420
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
6115
6421
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
6116
6422
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
6117
6423
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -6214,6 +6520,8 @@ module Aws::MediaLive
|
|
6214
6520
|
|
6215
6521
|
# Updates a channel.
|
6216
6522
|
#
|
6523
|
+
# @option params [Types::CdiInputSpecification] :cdi_input_specification
|
6524
|
+
#
|
6217
6525
|
# @option params [required, String] :channel_id
|
6218
6526
|
#
|
6219
6527
|
# @option params [Array<Types::OutputDestination>] :destinations
|
@@ -6239,6 +6547,9 @@ module Aws::MediaLive
|
|
6239
6547
|
# @example Request syntax with placeholder values
|
6240
6548
|
#
|
6241
6549
|
# resp = client.update_channel({
|
6550
|
+
# cdi_input_specification: {
|
6551
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
6552
|
+
# },
|
6242
6553
|
# channel_id: "__string", # required
|
6243
6554
|
# destinations: [
|
6244
6555
|
# {
|
@@ -6323,6 +6634,11 @@ module Aws::MediaLive
|
|
6323
6634
|
# },
|
6324
6635
|
# pass_through_settings: {
|
6325
6636
|
# },
|
6637
|
+
# wav_settings: {
|
6638
|
+
# bit_depth: 1.0,
|
6639
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
6640
|
+
# sample_rate: 1.0,
|
6641
|
+
# },
|
6326
6642
|
# },
|
6327
6643
|
# language_code: "__stringMin1Max35",
|
6328
6644
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -6705,6 +7021,8 @@ module Aws::MediaLive
|
|
6705
7021
|
# transport_stream_id: 1,
|
6706
7022
|
# video_pid: "__string",
|
6707
7023
|
# },
|
7024
|
+
# raw_settings: {
|
7025
|
+
# },
|
6708
7026
|
# },
|
6709
7027
|
# extension: "__string",
|
6710
7028
|
# name_modifier: "__string",
|
@@ -6967,6 +7285,29 @@ module Aws::MediaLive
|
|
6967
7285
|
# tier: "HIGH", # accepts HIGH, MAIN
|
6968
7286
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
6969
7287
|
# },
|
7288
|
+
# mpeg_2_settings: {
|
7289
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
7290
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
7291
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
7292
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
7293
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
7294
|
+
# filter_settings: {
|
7295
|
+
# temporal_filter_settings: {
|
7296
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
7297
|
+
# 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
|
7298
|
+
# },
|
7299
|
+
# },
|
7300
|
+
# 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
|
7301
|
+
# framerate_denominator: 1, # required
|
7302
|
+
# framerate_numerator: 1, # required
|
7303
|
+
# gop_closed_cadence: 1,
|
7304
|
+
# gop_num_b_frames: 1,
|
7305
|
+
# gop_size: 1.0,
|
7306
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
7307
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
7308
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
7309
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
7310
|
+
# },
|
6970
7311
|
# },
|
6971
7312
|
# height: 1,
|
6972
7313
|
# name: "__string", # required
|
@@ -7012,6 +7353,9 @@ module Aws::MediaLive
|
|
7012
7353
|
# language_code: "__string",
|
7013
7354
|
# name: "__stringMin1", # required
|
7014
7355
|
# selector_settings: {
|
7356
|
+
# ancillary_source_settings: {
|
7357
|
+
# source_ancillary_channel_number: 1,
|
7358
|
+
# },
|
7015
7359
|
# arib_source_settings: {
|
7016
7360
|
# },
|
7017
7361
|
# dvb_sub_source_settings: {
|
@@ -7079,6 +7423,7 @@ module Aws::MediaLive
|
|
7079
7423
|
# @example Response structure
|
7080
7424
|
#
|
7081
7425
|
# resp.channel.arn #=> String
|
7426
|
+
# resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
7082
7427
|
# resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
7083
7428
|
# resp.channel.destinations #=> Array
|
7084
7429
|
# resp.channel.destinations[0].id #=> String
|
@@ -7139,6 +7484,9 @@ module Aws::MediaLive
|
|
7139
7484
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
7140
7485
|
# 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"
|
7141
7486
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
7487
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
7488
|
+
# 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"
|
7489
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
7142
7490
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
|
7143
7491
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
7144
7492
|
# resp.channel.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -7565,6 +7913,23 @@ module Aws::MediaLive
|
|
7565
7913
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
7566
7914
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
7567
7915
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
7916
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
7917
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
7918
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
7919
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
7920
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
7921
|
+
# 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"
|
7922
|
+
# 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"
|
7923
|
+
# 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"
|
7924
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
7925
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
7926
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
7927
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
7928
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
7929
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
7930
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
7931
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
7932
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
7568
7933
|
# resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
|
7569
7934
|
# resp.channel.encoder_settings.video_descriptions[0].name #=> String
|
7570
7935
|
# resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -7587,6 +7952,7 @@ module Aws::MediaLive
|
|
7587
7952
|
# resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
|
7588
7953
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
7589
7954
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
7955
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
7590
7956
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
7591
7957
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
7592
7958
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -7681,6 +8047,7 @@ module Aws::MediaLive
|
|
7681
8047
|
# @example Response structure
|
7682
8048
|
#
|
7683
8049
|
# resp.channel.arn #=> String
|
8050
|
+
# resp.channel.cdi_input_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
7684
8051
|
# resp.channel.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
7685
8052
|
# resp.channel.destinations #=> Array
|
7686
8053
|
# resp.channel.destinations[0].id #=> String
|
@@ -7741,6 +8108,9 @@ module Aws::MediaLive
|
|
7741
8108
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Float
|
7742
8109
|
# 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"
|
7743
8110
|
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Float
|
8111
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.bit_depth #=> Float
|
8112
|
+
# 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"
|
8113
|
+
# resp.channel.encoder_settings.audio_descriptions[0].codec_settings.wav_settings.sample_rate #=> Float
|
7744
8114
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code #=> String
|
7745
8115
|
# resp.channel.encoder_settings.audio_descriptions[0].language_code_control #=> String, one of "FOLLOW_INPUT", "USE_CONFIGURED"
|
7746
8116
|
# resp.channel.encoder_settings.audio_descriptions[0].name #=> String
|
@@ -8167,6 +8537,23 @@ module Aws::MediaLive
|
|
8167
8537
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
|
8168
8538
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
|
8169
8539
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
8540
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
|
8541
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
8542
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
|
8543
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_space #=> String, one of "AUTO", "PASSTHROUGH"
|
8544
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.display_aspect_ratio #=> String, one of "DISPLAYRATIO16X9", "DISPLAYRATIO4X3"
|
8545
|
+
# 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"
|
8546
|
+
# 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"
|
8547
|
+
# 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"
|
8548
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_denominator #=> Integer
|
8549
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.framerate_numerator #=> Integer
|
8550
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
|
8551
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_num_b_frames #=> Integer
|
8552
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size #=> Float
|
8553
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
|
8554
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
8555
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.subgop_length #=> String, one of "DYNAMIC", "FIXED"
|
8556
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.timecode_insertion #=> String, one of "DISABLED", "GOP_TIMECODE"
|
8170
8557
|
# resp.channel.encoder_settings.video_descriptions[0].height #=> Integer
|
8171
8558
|
# resp.channel.encoder_settings.video_descriptions[0].name #=> String
|
8172
8559
|
# resp.channel.encoder_settings.video_descriptions[0].respond_to_afd #=> String, one of "NONE", "PASSTHROUGH", "RESPOND"
|
@@ -8189,6 +8576,7 @@ module Aws::MediaLive
|
|
8189
8576
|
# resp.channel.input_attachments[0].input_settings.caption_selectors #=> Array
|
8190
8577
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
8191
8578
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
8579
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
8192
8580
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
8193
8581
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
8194
8582
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -8319,7 +8707,7 @@ module Aws::MediaLive
|
|
8319
8707
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
8320
8708
|
# resp.input.tags #=> Hash
|
8321
8709
|
# resp.input.tags["__string"] #=> String
|
8322
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
|
8710
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
|
8323
8711
|
#
|
8324
8712
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
8325
8713
|
#
|
@@ -8527,6 +8915,7 @@ module Aws::MediaLive
|
|
8527
8915
|
# statmux_settings: {
|
8528
8916
|
# maximum_bitrate: 1,
|
8529
8917
|
# minimum_bitrate: 1,
|
8918
|
+
# priority: 1,
|
8530
8919
|
# },
|
8531
8920
|
# },
|
8532
8921
|
# },
|
@@ -8543,6 +8932,7 @@ module Aws::MediaLive
|
|
8543
8932
|
# resp.multiplex_program.multiplex_program_settings.video_settings.constant_bitrate #=> Integer
|
8544
8933
|
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.maximum_bitrate #=> Integer
|
8545
8934
|
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.minimum_bitrate #=> Integer
|
8935
|
+
# resp.multiplex_program.multiplex_program_settings.video_settings.statmux_settings.priority #=> Integer
|
8546
8936
|
# resp.multiplex_program.packet_identifiers_map.audio_pids #=> Array
|
8547
8937
|
# resp.multiplex_program.packet_identifiers_map.audio_pids[0] #=> Integer
|
8548
8938
|
# resp.multiplex_program.packet_identifiers_map.dvb_sub_pids #=> Array
|
@@ -8560,6 +8950,9 @@ module Aws::MediaLive
|
|
8560
8950
|
# resp.multiplex_program.packet_identifiers_map.scte_35_pid #=> Integer
|
8561
8951
|
# resp.multiplex_program.packet_identifiers_map.timed_metadata_pid #=> Integer
|
8562
8952
|
# resp.multiplex_program.packet_identifiers_map.video_pid #=> Integer
|
8953
|
+
# resp.multiplex_program.pipeline_details #=> Array
|
8954
|
+
# resp.multiplex_program.pipeline_details[0].active_channel_pipeline #=> String
|
8955
|
+
# resp.multiplex_program.pipeline_details[0].pipeline_id #=> String
|
8563
8956
|
# resp.multiplex_program.program_name #=> String
|
8564
8957
|
#
|
8565
8958
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateMultiplexProgram AWS API Documentation
|
@@ -8604,7 +8997,7 @@ module Aws::MediaLive
|
|
8604
8997
|
# resp.reservation.region #=> String
|
8605
8998
|
# resp.reservation.reservation_id #=> String
|
8606
8999
|
# resp.reservation.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
8607
|
-
# resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
|
9000
|
+
# resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
8608
9001
|
# resp.reservation.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
8609
9002
|
# resp.reservation.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
8610
9003
|
# resp.reservation.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
@@ -8639,7 +9032,7 @@ module Aws::MediaLive
|
|
8639
9032
|
params: params,
|
8640
9033
|
config: config)
|
8641
9034
|
context[:gem_name] = 'aws-sdk-medialive'
|
8642
|
-
context[:gem_version] = '1.
|
9035
|
+
context[:gem_version] = '1.56.0'
|
8643
9036
|
Seahorse::Client::Request.new(handlers, context)
|
8644
9037
|
end
|
8645
9038
|
|