aws-sdk-medialive 1.54.0 → 1.59.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-medialive.rb +2 -2
- data/lib/aws-sdk-medialive/client.rb +470 -1
- data/lib/aws-sdk-medialive/client_api.rb +260 -2
- data/lib/aws-sdk-medialive/types.rb +1001 -24
- metadata +4 -4
@@ -159,6 +159,28 @@ module Aws::MediaLive
|
|
159
159
|
include Aws::Structure
|
160
160
|
end
|
161
161
|
|
162
|
+
# @note When making an API call, you may pass AcceptInputDeviceTransferRequest
|
163
|
+
# data as a hash:
|
164
|
+
#
|
165
|
+
# {
|
166
|
+
# input_device_id: "__string", # required
|
167
|
+
# }
|
168
|
+
#
|
169
|
+
# @!attribute [rw] input_device_id
|
170
|
+
# @return [String]
|
171
|
+
#
|
172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransferRequest AWS API Documentation
|
173
|
+
#
|
174
|
+
class AcceptInputDeviceTransferRequest < Struct.new(
|
175
|
+
:input_device_id)
|
176
|
+
SENSITIVE = []
|
177
|
+
include Aws::Structure
|
178
|
+
end
|
179
|
+
|
180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransferResponse AWS API Documentation
|
181
|
+
#
|
182
|
+
class AcceptInputDeviceTransferResponse < Aws::EmptyStructure; end
|
183
|
+
|
162
184
|
# @!attribute [rw] message
|
163
185
|
# @return [String]
|
164
186
|
#
|
@@ -170,6 +192,32 @@ module Aws::MediaLive
|
|
170
192
|
include Aws::Structure
|
171
193
|
end
|
172
194
|
|
195
|
+
# Ancillary Source Settings
|
196
|
+
#
|
197
|
+
# @note When making an API call, you may pass AncillarySourceSettings
|
198
|
+
# data as a hash:
|
199
|
+
#
|
200
|
+
# {
|
201
|
+
# source_ancillary_channel_number: 1,
|
202
|
+
# }
|
203
|
+
#
|
204
|
+
# @!attribute [rw] source_ancillary_channel_number
|
205
|
+
# Specifies the number (1 to 4) of the captions channel you want to
|
206
|
+
# extract from the ancillary captions. If you plan to convert the
|
207
|
+
# ancillary captions to another format, complete this field. If you
|
208
|
+
# plan to choose Embedded as the captions destination in the output
|
209
|
+
# (to pass through all the channels in the ancillary captions), leave
|
210
|
+
# this field blank because MediaLive ignores the field.
|
211
|
+
# @return [Integer]
|
212
|
+
#
|
213
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AncillarySourceSettings AWS API Documentation
|
214
|
+
#
|
215
|
+
class AncillarySourceSettings < Struct.new(
|
216
|
+
:source_ancillary_channel_number)
|
217
|
+
SENSITIVE = []
|
218
|
+
include Aws::Structure
|
219
|
+
end
|
220
|
+
|
173
221
|
# Archive Container Settings
|
174
222
|
#
|
175
223
|
# @note When making an API call, you may pass ArchiveContainerSettings
|
@@ -236,16 +284,23 @@ module Aws::MediaLive
|
|
236
284
|
# transport_stream_id: 1,
|
237
285
|
# video_pid: "__string",
|
238
286
|
# },
|
287
|
+
# raw_settings: {
|
288
|
+
# },
|
239
289
|
# }
|
240
290
|
#
|
241
291
|
# @!attribute [rw] m2ts_settings
|
242
292
|
# M2ts Settings
|
243
293
|
# @return [Types::M2tsSettings]
|
244
294
|
#
|
295
|
+
# @!attribute [rw] raw_settings
|
296
|
+
# Raw Settings
|
297
|
+
# @return [Types::RawSettings]
|
298
|
+
#
|
245
299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ArchiveContainerSettings AWS API Documentation
|
246
300
|
#
|
247
301
|
class ArchiveContainerSettings < Struct.new(
|
248
|
-
:m2ts_settings
|
302
|
+
:m2ts_settings,
|
303
|
+
:raw_settings)
|
249
304
|
SENSITIVE = []
|
250
305
|
include Aws::Structure
|
251
306
|
end
|
@@ -347,6 +402,8 @@ module Aws::MediaLive
|
|
347
402
|
# transport_stream_id: 1,
|
348
403
|
# video_pid: "__string",
|
349
404
|
# },
|
405
|
+
# raw_settings: {
|
406
|
+
# },
|
350
407
|
# },
|
351
408
|
# extension: "__string",
|
352
409
|
# name_modifier: "__string",
|
@@ -480,6 +537,11 @@ module Aws::MediaLive
|
|
480
537
|
# },
|
481
538
|
# pass_through_settings: {
|
482
539
|
# },
|
540
|
+
# wav_settings: {
|
541
|
+
# bit_depth: 1.0,
|
542
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
543
|
+
# sample_rate: 1.0,
|
544
|
+
# },
|
483
545
|
# }
|
484
546
|
#
|
485
547
|
# @!attribute [rw] aac_settings
|
@@ -502,6 +564,10 @@ module Aws::MediaLive
|
|
502
564
|
# Pass Through Settings
|
503
565
|
# @return [Types::PassThroughSettings]
|
504
566
|
#
|
567
|
+
# @!attribute [rw] wav_settings
|
568
|
+
# Wav Settings
|
569
|
+
# @return [Types::WavSettings]
|
570
|
+
#
|
505
571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioCodecSettings AWS API Documentation
|
506
572
|
#
|
507
573
|
class AudioCodecSettings < Struct.new(
|
@@ -509,7 +575,8 @@ module Aws::MediaLive
|
|
509
575
|
:ac_3_settings,
|
510
576
|
:eac_3_settings,
|
511
577
|
:mp_2_settings,
|
512
|
-
:pass_through_settings
|
578
|
+
:pass_through_settings,
|
579
|
+
:wav_settings)
|
513
580
|
SENSITIVE = []
|
514
581
|
include Aws::Structure
|
515
582
|
end
|
@@ -578,6 +645,11 @@ module Aws::MediaLive
|
|
578
645
|
# },
|
579
646
|
# pass_through_settings: {
|
580
647
|
# },
|
648
|
+
# wav_settings: {
|
649
|
+
# bit_depth: 1.0,
|
650
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
651
|
+
# sample_rate: 1.0,
|
652
|
+
# },
|
581
653
|
# },
|
582
654
|
# language_code: "__stringMin1Max35",
|
583
655
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -966,10 +1038,34 @@ module Aws::MediaLive
|
|
966
1038
|
# data as a hash:
|
967
1039
|
#
|
968
1040
|
# {
|
1041
|
+
# error_clear_time_msec: 1,
|
1042
|
+
# failover_conditions: [
|
1043
|
+
# {
|
1044
|
+
# failover_condition_settings: {
|
1045
|
+
# input_loss_settings: {
|
1046
|
+
# input_loss_threshold_msec: 1,
|
1047
|
+
# },
|
1048
|
+
# },
|
1049
|
+
# },
|
1050
|
+
# ],
|
969
1051
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
970
1052
|
# secondary_input_id: "__string", # required
|
971
1053
|
# }
|
972
1054
|
#
|
1055
|
+
# @!attribute [rw] error_clear_time_msec
|
1056
|
+
# This clear time defines the requirement a recovered input must meet
|
1057
|
+
# to be considered healthy. The input must have no failover conditions
|
1058
|
+
# for this length of time. Enter a time in milliseconds. This value is
|
1059
|
+
# particularly important if the input\_preference for the failover
|
1060
|
+
# pair is set to PRIMARY\_INPUT\_PREFERRED, because after this time,
|
1061
|
+
# MediaLive will switch back to the primary input.
|
1062
|
+
# @return [Integer]
|
1063
|
+
#
|
1064
|
+
# @!attribute [rw] failover_conditions
|
1065
|
+
# A list of failover conditions. If any of these conditions occur,
|
1066
|
+
# MediaLive will perform a failover to the other input.
|
1067
|
+
# @return [Array<Types::FailoverCondition>]
|
1068
|
+
#
|
973
1069
|
# @!attribute [rw] input_preference
|
974
1070
|
# Input preference when deciding which input to make active when a
|
975
1071
|
# previously failed input has recovered.
|
@@ -983,6 +1079,8 @@ module Aws::MediaLive
|
|
983
1079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AutomaticInputFailoverSettings AWS API Documentation
|
984
1080
|
#
|
985
1081
|
class AutomaticInputFailoverSettings < Struct.new(
|
1082
|
+
:error_clear_time_msec,
|
1083
|
+
:failover_conditions,
|
986
1084
|
:input_preference,
|
987
1085
|
:secondary_input_id)
|
988
1086
|
SENSITIVE = []
|
@@ -2014,6 +2112,28 @@ module Aws::MediaLive
|
|
2014
2112
|
include Aws::Structure
|
2015
2113
|
end
|
2016
2114
|
|
2115
|
+
# @note When making an API call, you may pass CancelInputDeviceTransferRequest
|
2116
|
+
# data as a hash:
|
2117
|
+
#
|
2118
|
+
# {
|
2119
|
+
# input_device_id: "__string", # required
|
2120
|
+
# }
|
2121
|
+
#
|
2122
|
+
# @!attribute [rw] input_device_id
|
2123
|
+
# @return [String]
|
2124
|
+
#
|
2125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransferRequest AWS API Documentation
|
2126
|
+
#
|
2127
|
+
class CancelInputDeviceTransferRequest < Struct.new(
|
2128
|
+
:input_device_id)
|
2129
|
+
SENSITIVE = []
|
2130
|
+
include Aws::Structure
|
2131
|
+
end
|
2132
|
+
|
2133
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransferResponse AWS API Documentation
|
2134
|
+
#
|
2135
|
+
class CancelInputDeviceTransferResponse < Aws::EmptyStructure; end
|
2136
|
+
|
2017
2137
|
# Caption Description
|
2018
2138
|
#
|
2019
2139
|
# @note When making an API call, you may pass CaptionDescription
|
@@ -2336,6 +2456,9 @@ module Aws::MediaLive
|
|
2336
2456
|
# language_code: "__string",
|
2337
2457
|
# name: "__stringMin1", # required
|
2338
2458
|
# selector_settings: {
|
2459
|
+
# ancillary_source_settings: {
|
2460
|
+
# source_ancillary_channel_number: 1,
|
2461
|
+
# },
|
2339
2462
|
# arib_source_settings: {
|
2340
2463
|
# },
|
2341
2464
|
# dvb_sub_source_settings: {
|
@@ -2391,6 +2514,9 @@ module Aws::MediaLive
|
|
2391
2514
|
# data as a hash:
|
2392
2515
|
#
|
2393
2516
|
# {
|
2517
|
+
# ancillary_source_settings: {
|
2518
|
+
# source_ancillary_channel_number: 1,
|
2519
|
+
# },
|
2394
2520
|
# arib_source_settings: {
|
2395
2521
|
# },
|
2396
2522
|
# dvb_sub_source_settings: {
|
@@ -2414,6 +2540,10 @@ module Aws::MediaLive
|
|
2414
2540
|
# },
|
2415
2541
|
# }
|
2416
2542
|
#
|
2543
|
+
# @!attribute [rw] ancillary_source_settings
|
2544
|
+
# Ancillary Source Settings
|
2545
|
+
# @return [Types::AncillarySourceSettings]
|
2546
|
+
#
|
2417
2547
|
# @!attribute [rw] arib_source_settings
|
2418
2548
|
# Arib Source Settings
|
2419
2549
|
# @return [Types::AribSourceSettings]
|
@@ -2441,6 +2571,7 @@ module Aws::MediaLive
|
|
2441
2571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionSelectorSettings AWS API Documentation
|
2442
2572
|
#
|
2443
2573
|
class CaptionSelectorSettings < Struct.new(
|
2574
|
+
:ancillary_source_settings,
|
2444
2575
|
:arib_source_settings,
|
2445
2576
|
:dvb_sub_source_settings,
|
2446
2577
|
:embedded_source_settings,
|
@@ -2451,10 +2582,33 @@ module Aws::MediaLive
|
|
2451
2582
|
include Aws::Structure
|
2452
2583
|
end
|
2453
2584
|
|
2585
|
+
# @note When making an API call, you may pass CdiInputSpecification
|
2586
|
+
# data as a hash:
|
2587
|
+
#
|
2588
|
+
# {
|
2589
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
2590
|
+
# }
|
2591
|
+
#
|
2592
|
+
# @!attribute [rw] resolution
|
2593
|
+
# Maximum CDI input resolution
|
2594
|
+
# @return [String]
|
2595
|
+
#
|
2596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CdiInputSpecification AWS API Documentation
|
2597
|
+
#
|
2598
|
+
class CdiInputSpecification < Struct.new(
|
2599
|
+
:resolution)
|
2600
|
+
SENSITIVE = []
|
2601
|
+
include Aws::Structure
|
2602
|
+
end
|
2603
|
+
|
2454
2604
|
# @!attribute [rw] arn
|
2455
2605
|
# The unique arn of the channel.
|
2456
2606
|
# @return [String]
|
2457
2607
|
#
|
2608
|
+
# @!attribute [rw] cdi_input_specification
|
2609
|
+
# Specification of CDI inputs for this channel
|
2610
|
+
# @return [Types::CdiInputSpecification]
|
2611
|
+
#
|
2458
2612
|
# @!attribute [rw] channel_class
|
2459
2613
|
# The class for this channel. STANDARD for a channel with two
|
2460
2614
|
# pipelines or SINGLE\_PIPELINE for a channel with one pipeline.
|
@@ -2483,6 +2637,7 @@ module Aws::MediaLive
|
|
2483
2637
|
# @return [Array<Types::InputAttachment>]
|
2484
2638
|
#
|
2485
2639
|
# @!attribute [rw] input_specification
|
2640
|
+
# Specification of network and file inputs for this channel
|
2486
2641
|
# @return [Types::InputSpecification]
|
2487
2642
|
#
|
2488
2643
|
# @!attribute [rw] log_level
|
@@ -2517,6 +2672,7 @@ module Aws::MediaLive
|
|
2517
2672
|
#
|
2518
2673
|
class Channel < Struct.new(
|
2519
2674
|
:arn,
|
2675
|
+
:cdi_input_specification,
|
2520
2676
|
:channel_class,
|
2521
2677
|
:destinations,
|
2522
2678
|
:egress_endpoints,
|
@@ -2567,6 +2723,10 @@ module Aws::MediaLive
|
|
2567
2723
|
# The unique arn of the channel.
|
2568
2724
|
# @return [String]
|
2569
2725
|
#
|
2726
|
+
# @!attribute [rw] cdi_input_specification
|
2727
|
+
# Specification of CDI inputs for this channel
|
2728
|
+
# @return [Types::CdiInputSpecification]
|
2729
|
+
#
|
2570
2730
|
# @!attribute [rw] channel_class
|
2571
2731
|
# The class for this channel. STANDARD for a channel with two
|
2572
2732
|
# pipelines or SINGLE\_PIPELINE for a channel with one pipeline.
|
@@ -2591,6 +2751,7 @@ module Aws::MediaLive
|
|
2591
2751
|
# @return [Array<Types::InputAttachment>]
|
2592
2752
|
#
|
2593
2753
|
# @!attribute [rw] input_specification
|
2754
|
+
# Specification of network and file inputs for this channel
|
2594
2755
|
# @return [Types::InputSpecification]
|
2595
2756
|
#
|
2596
2757
|
# @!attribute [rw] log_level
|
@@ -2621,6 +2782,7 @@ module Aws::MediaLive
|
|
2621
2782
|
#
|
2622
2783
|
class ChannelSummary < Struct.new(
|
2623
2784
|
:arn,
|
2785
|
+
:cdi_input_specification,
|
2624
2786
|
:channel_class,
|
2625
2787
|
:destinations,
|
2626
2788
|
:egress_endpoints,
|
@@ -2656,6 +2818,10 @@ module Aws::MediaLive
|
|
2656
2818
|
include Aws::Structure
|
2657
2819
|
end
|
2658
2820
|
|
2821
|
+
# @!attribute [rw] cdi_input_specification
|
2822
|
+
# Specification of CDI inputs for this channel
|
2823
|
+
# @return [Types::CdiInputSpecification]
|
2824
|
+
#
|
2659
2825
|
# @!attribute [rw] channel_class
|
2660
2826
|
# The class for this channel. STANDARD for a channel with two
|
2661
2827
|
# pipelines or SINGLE\_PIPELINE for a channel with one pipeline.
|
@@ -2673,8 +2839,7 @@ module Aws::MediaLive
|
|
2673
2839
|
# @return [Array<Types::InputAttachment>]
|
2674
2840
|
#
|
2675
2841
|
# @!attribute [rw] input_specification
|
2676
|
-
# Specification of
|
2677
|
-
# codec, etc.)
|
2842
|
+
# Specification of network and file inputs for this channel
|
2678
2843
|
# @return [Types::InputSpecification]
|
2679
2844
|
#
|
2680
2845
|
# @!attribute [rw] log_level
|
@@ -2706,6 +2871,7 @@ module Aws::MediaLive
|
|
2706
2871
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel AWS API Documentation
|
2707
2872
|
#
|
2708
2873
|
class CreateChannel < Struct.new(
|
2874
|
+
:cdi_input_specification,
|
2709
2875
|
:channel_class,
|
2710
2876
|
:destinations,
|
2711
2877
|
:encoder_settings,
|
@@ -2725,6 +2891,9 @@ module Aws::MediaLive
|
|
2725
2891
|
# data as a hash:
|
2726
2892
|
#
|
2727
2893
|
# {
|
2894
|
+
# cdi_input_specification: {
|
2895
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
2896
|
+
# },
|
2728
2897
|
# channel_class: "STANDARD", # accepts STANDARD, SINGLE_PIPELINE
|
2729
2898
|
# destinations: [
|
2730
2899
|
# {
|
@@ -2809,6 +2978,11 @@ module Aws::MediaLive
|
|
2809
2978
|
# },
|
2810
2979
|
# pass_through_settings: {
|
2811
2980
|
# },
|
2981
|
+
# wav_settings: {
|
2982
|
+
# bit_depth: 1.0,
|
2983
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
2984
|
+
# sample_rate: 1.0,
|
2985
|
+
# },
|
2812
2986
|
# },
|
2813
2987
|
# language_code: "__stringMin1Max35",
|
2814
2988
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -3011,6 +3185,7 @@ module Aws::MediaLive
|
|
3011
3185
|
# destination_ref_id: "__string",
|
3012
3186
|
# },
|
3013
3187
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
3188
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
3014
3189
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
3015
3190
|
# hls_cdn_settings: {
|
3016
3191
|
# hls_akamai_settings: {
|
@@ -3045,6 +3220,7 @@ module Aws::MediaLive
|
|
3045
3220
|
# },
|
3046
3221
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
3047
3222
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
3223
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
3048
3224
|
# index_n_segments: 1,
|
3049
3225
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
3050
3226
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -3110,6 +3286,7 @@ module Aws::MediaLive
|
|
3110
3286
|
# multiplex_group_settings: {
|
3111
3287
|
# },
|
3112
3288
|
# rtmp_group_settings: {
|
3289
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
3113
3290
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
3114
3291
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
3115
3292
|
# cache_length: 1,
|
@@ -3191,6 +3368,8 @@ module Aws::MediaLive
|
|
3191
3368
|
# transport_stream_id: 1,
|
3192
3369
|
# video_pid: "__string",
|
3193
3370
|
# },
|
3371
|
+
# raw_settings: {
|
3372
|
+
# },
|
3194
3373
|
# },
|
3195
3374
|
# extension: "__string",
|
3196
3375
|
# name_modifier: "__string",
|
@@ -3453,6 +3632,29 @@ module Aws::MediaLive
|
|
3453
3632
|
# tier: "HIGH", # accepts HIGH, MAIN
|
3454
3633
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
3455
3634
|
# },
|
3635
|
+
# mpeg_2_settings: {
|
3636
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
3637
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
3638
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
3639
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
3640
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
3641
|
+
# filter_settings: {
|
3642
|
+
# temporal_filter_settings: {
|
3643
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
3644
|
+
# 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
|
3645
|
+
# },
|
3646
|
+
# },
|
3647
|
+
# 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
|
3648
|
+
# framerate_denominator: 1, # required
|
3649
|
+
# framerate_numerator: 1, # required
|
3650
|
+
# gop_closed_cadence: 1,
|
3651
|
+
# gop_num_b_frames: 1,
|
3652
|
+
# gop_size: 1.0,
|
3653
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
3654
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
3655
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
3656
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
3657
|
+
# },
|
3456
3658
|
# },
|
3457
3659
|
# height: 1,
|
3458
3660
|
# name: "__string", # required
|
@@ -3466,6 +3668,16 @@ module Aws::MediaLive
|
|
3466
3668
|
# input_attachments: [
|
3467
3669
|
# {
|
3468
3670
|
# automatic_input_failover_settings: {
|
3671
|
+
# error_clear_time_msec: 1,
|
3672
|
+
# failover_conditions: [
|
3673
|
+
# {
|
3674
|
+
# failover_condition_settings: {
|
3675
|
+
# input_loss_settings: {
|
3676
|
+
# input_loss_threshold_msec: 1,
|
3677
|
+
# },
|
3678
|
+
# },
|
3679
|
+
# },
|
3680
|
+
# ],
|
3469
3681
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
3470
3682
|
# secondary_input_id: "__string", # required
|
3471
3683
|
# },
|
@@ -3498,6 +3710,9 @@ module Aws::MediaLive
|
|
3498
3710
|
# language_code: "__string",
|
3499
3711
|
# name: "__stringMin1", # required
|
3500
3712
|
# selector_settings: {
|
3713
|
+
# ancillary_source_settings: {
|
3714
|
+
# source_ancillary_channel_number: 1,
|
3715
|
+
# },
|
3501
3716
|
# arib_source_settings: {
|
3502
3717
|
# },
|
3503
3718
|
# dvb_sub_source_settings: {
|
@@ -3567,6 +3782,9 @@ module Aws::MediaLive
|
|
3567
3782
|
# },
|
3568
3783
|
# }
|
3569
3784
|
#
|
3785
|
+
# @!attribute [rw] cdi_input_specification
|
3786
|
+
# @return [Types::CdiInputSpecification]
|
3787
|
+
#
|
3570
3788
|
# @!attribute [rw] channel_class
|
3571
3789
|
# A standard channel has two encoding pipelines and a single pipeline
|
3572
3790
|
# channel only has one.
|
@@ -3609,6 +3827,7 @@ module Aws::MediaLive
|
|
3609
3827
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannelRequest AWS API Documentation
|
3610
3828
|
#
|
3611
3829
|
class CreateChannelRequest < Struct.new(
|
3830
|
+
:cdi_input_specification,
|
3612
3831
|
:channel_class,
|
3613
3832
|
:destinations,
|
3614
3833
|
:encoder_settings,
|
@@ -3966,6 +4185,7 @@ module Aws::MediaLive
|
|
3966
4185
|
# statmux_settings: {
|
3967
4186
|
# maximum_bitrate: 1,
|
3968
4187
|
# minimum_bitrate: 1,
|
4188
|
+
# priority: 1,
|
3969
4189
|
# },
|
3970
4190
|
# },
|
3971
4191
|
# },
|
@@ -4141,6 +4361,9 @@ module Aws::MediaLive
|
|
4141
4361
|
# @!attribute [rw] arn
|
4142
4362
|
# @return [String]
|
4143
4363
|
#
|
4364
|
+
# @!attribute [rw] cdi_input_specification
|
4365
|
+
# @return [Types::CdiInputSpecification]
|
4366
|
+
#
|
4144
4367
|
# @!attribute [rw] channel_class
|
4145
4368
|
# A standard channel has two encoding pipelines and a single pipeline
|
4146
4369
|
# channel only has one.
|
@@ -4191,6 +4414,7 @@ module Aws::MediaLive
|
|
4191
4414
|
#
|
4192
4415
|
class DeleteChannelResponse < Struct.new(
|
4193
4416
|
:arn,
|
4417
|
+
:cdi_input_specification,
|
4194
4418
|
:channel_class,
|
4195
4419
|
:destinations,
|
4196
4420
|
:egress_endpoints,
|
@@ -4287,6 +4511,9 @@ module Aws::MediaLive
|
|
4287
4511
|
# Packet identifiers map for a given Multiplex program.
|
4288
4512
|
# @return [Types::MultiplexProgramPacketIdentifiersMap]
|
4289
4513
|
#
|
4514
|
+
# @!attribute [rw] pipeline_details
|
4515
|
+
# @return [Array<Types::MultiplexProgramPipelineDetail>]
|
4516
|
+
#
|
4290
4517
|
# @!attribute [rw] program_name
|
4291
4518
|
# @return [String]
|
4292
4519
|
#
|
@@ -4296,6 +4523,7 @@ module Aws::MediaLive
|
|
4296
4523
|
:channel_id,
|
4297
4524
|
:multiplex_program_settings,
|
4298
4525
|
:packet_identifiers_map,
|
4526
|
+
:pipeline_details,
|
4299
4527
|
:program_name)
|
4300
4528
|
SENSITIVE = []
|
4301
4529
|
include Aws::Structure
|
@@ -4535,6 +4763,9 @@ module Aws::MediaLive
|
|
4535
4763
|
# @!attribute [rw] arn
|
4536
4764
|
# @return [String]
|
4537
4765
|
#
|
4766
|
+
# @!attribute [rw] cdi_input_specification
|
4767
|
+
# @return [Types::CdiInputSpecification]
|
4768
|
+
#
|
4538
4769
|
# @!attribute [rw] channel_class
|
4539
4770
|
# A standard channel has two encoding pipelines and a single pipeline
|
4540
4771
|
# channel only has one.
|
@@ -4585,6 +4816,7 @@ module Aws::MediaLive
|
|
4585
4816
|
#
|
4586
4817
|
class DescribeChannelResponse < Struct.new(
|
4587
4818
|
:arn,
|
4819
|
+
:cdi_input_specification,
|
4588
4820
|
:channel_class,
|
4589
4821
|
:destinations,
|
4590
4822
|
:egress_endpoints,
|
@@ -4905,6 +5137,9 @@ module Aws::MediaLive
|
|
4905
5137
|
# Packet identifiers map for a given Multiplex program.
|
4906
5138
|
# @return [Types::MultiplexProgramPacketIdentifiersMap]
|
4907
5139
|
#
|
5140
|
+
# @!attribute [rw] pipeline_details
|
5141
|
+
# @return [Array<Types::MultiplexProgramPipelineDetail>]
|
5142
|
+
#
|
4908
5143
|
# @!attribute [rw] program_name
|
4909
5144
|
# @return [String]
|
4910
5145
|
#
|
@@ -4914,6 +5149,7 @@ module Aws::MediaLive
|
|
4914
5149
|
:channel_id,
|
4915
5150
|
:multiplex_program_settings,
|
4916
5151
|
:packet_identifiers_map,
|
5152
|
+
:pipeline_details,
|
4917
5153
|
:program_name)
|
4918
5154
|
SENSITIVE = []
|
4919
5155
|
include Aws::Structure
|
@@ -5851,6 +6087,11 @@ module Aws::MediaLive
|
|
5851
6087
|
# },
|
5852
6088
|
# pass_through_settings: {
|
5853
6089
|
# },
|
6090
|
+
# wav_settings: {
|
6091
|
+
# bit_depth: 1.0,
|
6092
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
6093
|
+
# sample_rate: 1.0,
|
6094
|
+
# },
|
5854
6095
|
# },
|
5855
6096
|
# language_code: "__stringMin1Max35",
|
5856
6097
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -6053,6 +6294,7 @@ module Aws::MediaLive
|
|
6053
6294
|
# destination_ref_id: "__string",
|
6054
6295
|
# },
|
6055
6296
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
6297
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
6056
6298
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
6057
6299
|
# hls_cdn_settings: {
|
6058
6300
|
# hls_akamai_settings: {
|
@@ -6087,6 +6329,7 @@ module Aws::MediaLive
|
|
6087
6329
|
# },
|
6088
6330
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
6089
6331
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
6332
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
6090
6333
|
# index_n_segments: 1,
|
6091
6334
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
6092
6335
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -6152,6 +6395,7 @@ module Aws::MediaLive
|
|
6152
6395
|
# multiplex_group_settings: {
|
6153
6396
|
# },
|
6154
6397
|
# rtmp_group_settings: {
|
6398
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
6155
6399
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
6156
6400
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
6157
6401
|
# cache_length: 1,
|
@@ -6233,6 +6477,8 @@ module Aws::MediaLive
|
|
6233
6477
|
# transport_stream_id: 1,
|
6234
6478
|
# video_pid: "__string",
|
6235
6479
|
# },
|
6480
|
+
# raw_settings: {
|
6481
|
+
# },
|
6236
6482
|
# },
|
6237
6483
|
# extension: "__string",
|
6238
6484
|
# name_modifier: "__string",
|
@@ -6495,6 +6741,29 @@ module Aws::MediaLive
|
|
6495
6741
|
# tier: "HIGH", # accepts HIGH, MAIN
|
6496
6742
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
6497
6743
|
# },
|
6744
|
+
# mpeg_2_settings: {
|
6745
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
6746
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
6747
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
6748
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
6749
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
6750
|
+
# filter_settings: {
|
6751
|
+
# temporal_filter_settings: {
|
6752
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
6753
|
+
# 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
|
6754
|
+
# },
|
6755
|
+
# },
|
6756
|
+
# 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
|
6757
|
+
# framerate_denominator: 1, # required
|
6758
|
+
# framerate_numerator: 1, # required
|
6759
|
+
# gop_closed_cadence: 1,
|
6760
|
+
# gop_num_b_frames: 1,
|
6761
|
+
# gop_size: 1.0,
|
6762
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
6763
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
6764
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
6765
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
6766
|
+
# },
|
6498
6767
|
# },
|
6499
6768
|
# height: 1,
|
6500
6769
|
# name: "__string", # required
|
@@ -6566,6 +6835,56 @@ module Aws::MediaLive
|
|
6566
6835
|
include Aws::Structure
|
6567
6836
|
end
|
6568
6837
|
|
6838
|
+
# Failover Condition settings. There can be multiple failover conditions
|
6839
|
+
# inside AutomaticInputFailoverSettings.
|
6840
|
+
#
|
6841
|
+
# @note When making an API call, you may pass FailoverCondition
|
6842
|
+
# data as a hash:
|
6843
|
+
#
|
6844
|
+
# {
|
6845
|
+
# failover_condition_settings: {
|
6846
|
+
# input_loss_settings: {
|
6847
|
+
# input_loss_threshold_msec: 1,
|
6848
|
+
# },
|
6849
|
+
# },
|
6850
|
+
# }
|
6851
|
+
#
|
6852
|
+
# @!attribute [rw] failover_condition_settings
|
6853
|
+
# Failover condition type-specific settings.
|
6854
|
+
# @return [Types::FailoverConditionSettings]
|
6855
|
+
#
|
6856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FailoverCondition AWS API Documentation
|
6857
|
+
#
|
6858
|
+
class FailoverCondition < Struct.new(
|
6859
|
+
:failover_condition_settings)
|
6860
|
+
SENSITIVE = []
|
6861
|
+
include Aws::Structure
|
6862
|
+
end
|
6863
|
+
|
6864
|
+
# Settings for one failover condition.
|
6865
|
+
#
|
6866
|
+
# @note When making an API call, you may pass FailoverConditionSettings
|
6867
|
+
# data as a hash:
|
6868
|
+
#
|
6869
|
+
# {
|
6870
|
+
# input_loss_settings: {
|
6871
|
+
# input_loss_threshold_msec: 1,
|
6872
|
+
# },
|
6873
|
+
# }
|
6874
|
+
#
|
6875
|
+
# @!attribute [rw] input_loss_settings
|
6876
|
+
# MediaLive will perform a failover if content is not detected in this
|
6877
|
+
# input for the specified period.
|
6878
|
+
# @return [Types::InputLossFailoverSettings]
|
6879
|
+
#
|
6880
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FailoverConditionSettings AWS API Documentation
|
6881
|
+
#
|
6882
|
+
class FailoverConditionSettings < Struct.new(
|
6883
|
+
:input_loss_settings)
|
6884
|
+
SENSITIVE = []
|
6885
|
+
include Aws::Structure
|
6886
|
+
end
|
6887
|
+
|
6569
6888
|
# Feature Activations
|
6570
6889
|
#
|
6571
6890
|
# @note When making an API call, you may pass FeatureActivations
|
@@ -7873,6 +8192,7 @@ module Aws::MediaLive
|
|
7873
8192
|
# destination_ref_id: "__string",
|
7874
8193
|
# },
|
7875
8194
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
8195
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
7876
8196
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
7877
8197
|
# hls_cdn_settings: {
|
7878
8198
|
# hls_akamai_settings: {
|
@@ -7907,6 +8227,7 @@ module Aws::MediaLive
|
|
7907
8227
|
# },
|
7908
8228
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
7909
8229
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
8230
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
7910
8231
|
# index_n_segments: 1,
|
7911
8232
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
7912
8233
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -8019,6 +8340,16 @@ module Aws::MediaLive
|
|
8019
8340
|
# Place segments in subdirectories.
|
8020
8341
|
# @return [String]
|
8021
8342
|
#
|
8343
|
+
# @!attribute [rw] discontinuity_tags
|
8344
|
+
# Specifies whether to insert EXT-X-DISCONTINUITY tags in the HLS
|
8345
|
+
# child manifests for this output group. Typically, choose Insert
|
8346
|
+
# because these tags are required in the manifest (according to the
|
8347
|
+
# HLS specification) and serve an important purpose. Choose Never
|
8348
|
+
# Insert only if the downstream system is doing real-time failover
|
8349
|
+
# (without using the MediaLive automatic failover feature) and only if
|
8350
|
+
# that downstream system has advised you to exclude the tags.
|
8351
|
+
# @return [String]
|
8352
|
+
#
|
8022
8353
|
# @!attribute [rw] encryption_type
|
8023
8354
|
# Encrypts the segments with the given encryption scheme. Exclude this
|
8024
8355
|
# parameter if no encryption is desired.
|
@@ -8043,6 +8374,16 @@ module Aws::MediaLive
|
|
8043
8374
|
# example, #EXT-X-BYTERANGE:160364@1461888"
|
8044
8375
|
# @return [String]
|
8045
8376
|
#
|
8377
|
+
# @!attribute [rw] incomplete_segment_behavior
|
8378
|
+
# Specifies whether to include the final (incomplete) segment in the
|
8379
|
+
# media output when the pipeline stops producing output because of a
|
8380
|
+
# channel stop, a channel pause or a loss of input to the pipeline.
|
8381
|
+
# Auto means that MediaLive decides whether to include the final
|
8382
|
+
# segment, depending on the channel class and the types of output
|
8383
|
+
# groups. Suppress means to never include the incomplete segment. We
|
8384
|
+
# recommend you choose Auto and let MediaLive control the behavior.
|
8385
|
+
# @return [String]
|
8386
|
+
#
|
8046
8387
|
# @!attribute [rw] index_n_segments
|
8047
8388
|
# Applies only if Mode field is LIVE. Specifies the maximum number of
|
8048
8389
|
# segments in the media manifest file. After this maximum, older
|
@@ -8218,10 +8559,12 @@ module Aws::MediaLive
|
|
8218
8559
|
:constant_iv,
|
8219
8560
|
:destination,
|
8220
8561
|
:directory_structure,
|
8562
|
+
:discontinuity_tags,
|
8221
8563
|
:encryption_type,
|
8222
8564
|
:hls_cdn_settings,
|
8223
8565
|
:hls_id_3_segment_tagging,
|
8224
8566
|
:i_frame_only_playlists,
|
8567
|
+
:incomplete_segment_behavior,
|
8225
8568
|
:index_n_segments,
|
8226
8569
|
:input_loss_action,
|
8227
8570
|
:iv_in_manifest,
|
@@ -8694,6 +9037,16 @@ module Aws::MediaLive
|
|
8694
9037
|
#
|
8695
9038
|
# {
|
8696
9039
|
# automatic_input_failover_settings: {
|
9040
|
+
# error_clear_time_msec: 1,
|
9041
|
+
# failover_conditions: [
|
9042
|
+
# {
|
9043
|
+
# failover_condition_settings: {
|
9044
|
+
# input_loss_settings: {
|
9045
|
+
# input_loss_threshold_msec: 1,
|
9046
|
+
# },
|
9047
|
+
# },
|
9048
|
+
# },
|
9049
|
+
# ],
|
8697
9050
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
8698
9051
|
# secondary_input_id: "__string", # required
|
8699
9052
|
# },
|
@@ -8726,6 +9079,9 @@ module Aws::MediaLive
|
|
8726
9079
|
# language_code: "__string",
|
8727
9080
|
# name: "__stringMin1", # required
|
8728
9081
|
# selector_settings: {
|
9082
|
+
# ancillary_source_settings: {
|
9083
|
+
# source_ancillary_channel_number: 1,
|
9084
|
+
# },
|
8729
9085
|
# arib_source_settings: {
|
8730
9086
|
# },
|
8731
9087
|
# dvb_sub_source_settings: {
|
@@ -9354,6 +9710,29 @@ module Aws::MediaLive
|
|
9354
9710
|
include Aws::Structure
|
9355
9711
|
end
|
9356
9712
|
|
9713
|
+
# MediaLive will perform a failover if content is not detected in this
|
9714
|
+
# input for the specified period.
|
9715
|
+
#
|
9716
|
+
# @note When making an API call, you may pass InputLossFailoverSettings
|
9717
|
+
# data as a hash:
|
9718
|
+
#
|
9719
|
+
# {
|
9720
|
+
# input_loss_threshold_msec: 1,
|
9721
|
+
# }
|
9722
|
+
#
|
9723
|
+
# @!attribute [rw] input_loss_threshold_msec
|
9724
|
+
# The amount of time (in milliseconds) that no input is detected.
|
9725
|
+
# After that time, an input failover will occur.
|
9726
|
+
# @return [Integer]
|
9727
|
+
#
|
9728
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputLossFailoverSettings AWS API Documentation
|
9729
|
+
#
|
9730
|
+
class InputLossFailoverSettings < Struct.new(
|
9731
|
+
:input_loss_threshold_msec)
|
9732
|
+
SENSITIVE = []
|
9733
|
+
include Aws::Structure
|
9734
|
+
end
|
9735
|
+
|
9357
9736
|
# Action to prepare an input for a future immediate input switch.
|
9358
9737
|
#
|
9359
9738
|
# @note When making an API call, you may pass InputPrepareScheduleActionSettings
|
@@ -9493,6 +9872,9 @@ module Aws::MediaLive
|
|
9493
9872
|
# language_code: "__string",
|
9494
9873
|
# name: "__stringMin1", # required
|
9495
9874
|
# selector_settings: {
|
9875
|
+
# ancillary_source_settings: {
|
9876
|
+
# source_ancillary_channel_number: 1,
|
9877
|
+
# },
|
9496
9878
|
# arib_source_settings: {
|
9497
9879
|
# },
|
9498
9880
|
# dvb_sub_source_settings: {
|
@@ -9949,6 +10331,70 @@ module Aws::MediaLive
|
|
9949
10331
|
include Aws::Structure
|
9950
10332
|
end
|
9951
10333
|
|
10334
|
+
# @note When making an API call, you may pass ListInputDeviceTransfersRequest
|
10335
|
+
# data as a hash:
|
10336
|
+
#
|
10337
|
+
# {
|
10338
|
+
# max_results: 1,
|
10339
|
+
# next_token: "__string",
|
10340
|
+
# transfer_type: "__string", # required
|
10341
|
+
# }
|
10342
|
+
#
|
10343
|
+
# @!attribute [rw] max_results
|
10344
|
+
# @return [Integer]
|
10345
|
+
#
|
10346
|
+
# @!attribute [rw] next_token
|
10347
|
+
# @return [String]
|
10348
|
+
#
|
10349
|
+
# @!attribute [rw] transfer_type
|
10350
|
+
# @return [String]
|
10351
|
+
#
|
10352
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersRequest AWS API Documentation
|
10353
|
+
#
|
10354
|
+
class ListInputDeviceTransfersRequest < Struct.new(
|
10355
|
+
:max_results,
|
10356
|
+
:next_token,
|
10357
|
+
:transfer_type)
|
10358
|
+
SENSITIVE = []
|
10359
|
+
include Aws::Structure
|
10360
|
+
end
|
10361
|
+
|
10362
|
+
# @!attribute [rw] input_device_transfers
|
10363
|
+
# @return [Array<Types::TransferringInputDeviceSummary>]
|
10364
|
+
#
|
10365
|
+
# @!attribute [rw] next_token
|
10366
|
+
# @return [String]
|
10367
|
+
#
|
10368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersResponse AWS API Documentation
|
10369
|
+
#
|
10370
|
+
class ListInputDeviceTransfersResponse < Struct.new(
|
10371
|
+
:input_device_transfers,
|
10372
|
+
:next_token)
|
10373
|
+
SENSITIVE = []
|
10374
|
+
include Aws::Structure
|
10375
|
+
end
|
10376
|
+
|
10377
|
+
# The list of input devices in the transferred state. The recipient
|
10378
|
+
# hasn't yet accepted or rejected the transfer.
|
10379
|
+
#
|
10380
|
+
# @!attribute [rw] input_device_transfers
|
10381
|
+
# The list of devices that you are transferring or are being
|
10382
|
+
# transferred to you.
|
10383
|
+
# @return [Array<Types::TransferringInputDeviceSummary>]
|
10384
|
+
#
|
10385
|
+
# @!attribute [rw] next_token
|
10386
|
+
# A token to get additional list results.
|
10387
|
+
# @return [String]
|
10388
|
+
#
|
10389
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersResultModel AWS API Documentation
|
10390
|
+
#
|
10391
|
+
class ListInputDeviceTransfersResultModel < Struct.new(
|
10392
|
+
:input_device_transfers,
|
10393
|
+
:next_token)
|
10394
|
+
SENSITIVE = []
|
10395
|
+
include Aws::Structure
|
10396
|
+
end
|
10397
|
+
|
9952
10398
|
# @note When making an API call, you may pass ListInputDevicesRequest
|
9953
10399
|
# data as a hash:
|
9954
10400
|
#
|
@@ -11142,27 +11588,218 @@ module Aws::MediaLive
|
|
11142
11588
|
include Aws::Structure
|
11143
11589
|
end
|
11144
11590
|
|
11145
|
-
#
|
11591
|
+
# Mpeg2 Filter Settings
|
11146
11592
|
#
|
11147
|
-
# @note When making an API call, you may pass
|
11593
|
+
# @note When making an API call, you may pass Mpeg2FilterSettings
|
11148
11594
|
# data as a hash:
|
11149
11595
|
#
|
11150
11596
|
# {
|
11151
|
-
#
|
11152
|
-
#
|
11153
|
-
#
|
11154
|
-
# connection_retry_interval: 1,
|
11155
|
-
# destination: { # required
|
11156
|
-
# destination_ref_id: "__string",
|
11597
|
+
# temporal_filter_settings: {
|
11598
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
11599
|
+
# 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
|
11157
11600
|
# },
|
11158
|
-
#
|
11159
|
-
#
|
11160
|
-
#
|
11161
|
-
#
|
11162
|
-
#
|
11163
|
-
#
|
11164
|
-
#
|
11165
|
-
#
|
11601
|
+
# }
|
11602
|
+
#
|
11603
|
+
# @!attribute [rw] temporal_filter_settings
|
11604
|
+
# Temporal Filter Settings
|
11605
|
+
# @return [Types::TemporalFilterSettings]
|
11606
|
+
#
|
11607
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mpeg2FilterSettings AWS API Documentation
|
11608
|
+
#
|
11609
|
+
class Mpeg2FilterSettings < Struct.new(
|
11610
|
+
:temporal_filter_settings)
|
11611
|
+
SENSITIVE = []
|
11612
|
+
include Aws::Structure
|
11613
|
+
end
|
11614
|
+
|
11615
|
+
# Mpeg2 Settings
|
11616
|
+
#
|
11617
|
+
# @note When making an API call, you may pass Mpeg2Settings
|
11618
|
+
# data as a hash:
|
11619
|
+
#
|
11620
|
+
# {
|
11621
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
11622
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
11623
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
11624
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
11625
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
11626
|
+
# filter_settings: {
|
11627
|
+
# temporal_filter_settings: {
|
11628
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
11629
|
+
# 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
|
11630
|
+
# },
|
11631
|
+
# },
|
11632
|
+
# 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
|
11633
|
+
# framerate_denominator: 1, # required
|
11634
|
+
# framerate_numerator: 1, # required
|
11635
|
+
# gop_closed_cadence: 1,
|
11636
|
+
# gop_num_b_frames: 1,
|
11637
|
+
# gop_size: 1.0,
|
11638
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
11639
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
11640
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
11641
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
11642
|
+
# }
|
11643
|
+
#
|
11644
|
+
# @!attribute [rw] adaptive_quantization
|
11645
|
+
# Choose Off to disable adaptive quantization. Or choose another value
|
11646
|
+
# to enable the quantizer and set its strength. The strengths are:
|
11647
|
+
# Auto, Off, Low, Medium, High. When you enable this field, MediaLive
|
11648
|
+
# allows intra-frame quantizers to vary, which might improve visual
|
11649
|
+
# quality.
|
11650
|
+
# @return [String]
|
11651
|
+
#
|
11652
|
+
# @!attribute [rw] afd_signaling
|
11653
|
+
# Indicates the AFD values that MediaLive will write into the video
|
11654
|
+
# encode. If you do not know what AFD signaling is, or if your
|
11655
|
+
# downstream system has not given you guidance, choose AUTO. AUTO:
|
11656
|
+
# MediaLive will try to preserve the input AFD value (in cases where
|
11657
|
+
# multiple AFD values are valid). FIXED: MediaLive will use the value
|
11658
|
+
# you specify in fixedAFD.
|
11659
|
+
# @return [String]
|
11660
|
+
#
|
11661
|
+
# @!attribute [rw] color_metadata
|
11662
|
+
# Specifies whether to include the color space metadata. The metadata
|
11663
|
+
# describes the color space that applies to the video (the colorSpace
|
11664
|
+
# field). We recommend that you insert the metadata.
|
11665
|
+
# @return [String]
|
11666
|
+
#
|
11667
|
+
# @!attribute [rw] color_space
|
11668
|
+
# Choose the type of color space conversion to apply to the output.
|
11669
|
+
# For detailed information on setting up both the input and the output
|
11670
|
+
# to obtain the desired color space in the output, see the section on
|
11671
|
+
# \\"MediaLive Features - Video - color space\\" in the MediaLive
|
11672
|
+
# User Guide. PASSTHROUGH: Keep the color space of the input content -
|
11673
|
+
# do not convert it. AUTO:Convert all content that is SD to rec 601,
|
11674
|
+
# and convert all content that is HD to rec 709.
|
11675
|
+
# @return [String]
|
11676
|
+
#
|
11677
|
+
# @!attribute [rw] display_aspect_ratio
|
11678
|
+
# Sets the pixel aspect ratio for the encode.
|
11679
|
+
# @return [String]
|
11680
|
+
#
|
11681
|
+
# @!attribute [rw] filter_settings
|
11682
|
+
# Optionally specify a noise reduction filter, which can improve
|
11683
|
+
# quality of compressed content. If you do not choose a filter, no
|
11684
|
+
# filter will be applied. TEMPORAL: This filter is useful for both
|
11685
|
+
# source content that is noisy (when it has excessive digital
|
11686
|
+
# artifacts) and source content that is clean. When the content is
|
11687
|
+
# noisy, the filter cleans up the source content before the encoding
|
11688
|
+
# phase, with these two effects: First, it improves the output video
|
11689
|
+
# quality because the content has been cleaned up. Secondly, it
|
11690
|
+
# decreases the bandwidth because MediaLive does not waste bits on
|
11691
|
+
# encoding noise. When the content is reasonably clean, the filter
|
11692
|
+
# tends to decrease the bitrate.
|
11693
|
+
# @return [Types::Mpeg2FilterSettings]
|
11694
|
+
#
|
11695
|
+
# @!attribute [rw] fixed_afd
|
11696
|
+
# Complete this field only when afdSignaling is set to FIXED. Enter
|
11697
|
+
# the AFD value (4 bits) to write on all frames of the video encode.
|
11698
|
+
# @return [String]
|
11699
|
+
#
|
11700
|
+
# @!attribute [rw] framerate_denominator
|
11701
|
+
# description": "The framerate denominator. For example, 1001. The
|
11702
|
+
# framerate is the numerator divided by the denominator. For example,
|
11703
|
+
# 24000 / 1001 = 23.976 FPS.
|
11704
|
+
# @return [Integer]
|
11705
|
+
#
|
11706
|
+
# @!attribute [rw] framerate_numerator
|
11707
|
+
# The framerate numerator. For example, 24000. The framerate is the
|
11708
|
+
# numerator divided by the denominator. For example, 24000 / 1001 =
|
11709
|
+
# 23.976 FPS.
|
11710
|
+
# @return [Integer]
|
11711
|
+
#
|
11712
|
+
# @!attribute [rw] gop_closed_cadence
|
11713
|
+
# MPEG2: default is open GOP.
|
11714
|
+
# @return [Integer]
|
11715
|
+
#
|
11716
|
+
# @!attribute [rw] gop_num_b_frames
|
11717
|
+
# Relates to the GOP structure. The number of B-frames between
|
11718
|
+
# reference frames. If you do not know what a B-frame is, use the
|
11719
|
+
# default.
|
11720
|
+
# @return [Integer]
|
11721
|
+
#
|
11722
|
+
# @!attribute [rw] gop_size
|
11723
|
+
# Relates to the GOP structure. The GOP size (keyframe interval) in
|
11724
|
+
# the units specified in gopSizeUnits. If you do not know what GOP is,
|
11725
|
+
# use the default. If gopSizeUnits is frames, then the gopSize must be
|
11726
|
+
# an integer and must be greater than or equal to 1. If gopSizeUnits
|
11727
|
+
# is seconds, the gopSize must be greater than 0, but does not need to
|
11728
|
+
# be an integer.
|
11729
|
+
# @return [Float]
|
11730
|
+
#
|
11731
|
+
# @!attribute [rw] gop_size_units
|
11732
|
+
# Relates to the GOP structure. Specifies whether the gopSize is
|
11733
|
+
# specified in frames or seconds. If you do not plan to change the
|
11734
|
+
# default gopSize, leave the default. If you specify SECONDS,
|
11735
|
+
# MediaLive will internally convert the gop size to a frame count.
|
11736
|
+
# @return [String]
|
11737
|
+
#
|
11738
|
+
# @!attribute [rw] scan_type
|
11739
|
+
# Set the scan type of the output to PROGRESSIVE or INTERLACED (top
|
11740
|
+
# field first).
|
11741
|
+
# @return [String]
|
11742
|
+
#
|
11743
|
+
# @!attribute [rw] subgop_length
|
11744
|
+
# Relates to the GOP structure. If you do not know what GOP is, use
|
11745
|
+
# the default. FIXED: Set the number of B-frames in each sub-GOP to
|
11746
|
+
# the value in gopNumBFrames. DYNAMIC: Let MediaLive optimize the
|
11747
|
+
# number of B-frames in each sub-GOP, to improve visual quality.
|
11748
|
+
# @return [String]
|
11749
|
+
#
|
11750
|
+
# @!attribute [rw] timecode_insertion
|
11751
|
+
# Determines how MediaLive inserts timecodes in the output video. For
|
11752
|
+
# detailed information about setting up the input and the output for a
|
11753
|
+
# timecode, see the section on \\"MediaLive Features - Timecode
|
11754
|
+
# configuration\\" in the MediaLive User Guide. DISABLED: do not
|
11755
|
+
# include timecodes. GOP\_TIMECODE: Include timecode metadata in the
|
11756
|
+
# GOP header.
|
11757
|
+
# @return [String]
|
11758
|
+
#
|
11759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mpeg2Settings AWS API Documentation
|
11760
|
+
#
|
11761
|
+
class Mpeg2Settings < Struct.new(
|
11762
|
+
:adaptive_quantization,
|
11763
|
+
:afd_signaling,
|
11764
|
+
:color_metadata,
|
11765
|
+
:color_space,
|
11766
|
+
:display_aspect_ratio,
|
11767
|
+
:filter_settings,
|
11768
|
+
:fixed_afd,
|
11769
|
+
:framerate_denominator,
|
11770
|
+
:framerate_numerator,
|
11771
|
+
:gop_closed_cadence,
|
11772
|
+
:gop_num_b_frames,
|
11773
|
+
:gop_size,
|
11774
|
+
:gop_size_units,
|
11775
|
+
:scan_type,
|
11776
|
+
:subgop_length,
|
11777
|
+
:timecode_insertion)
|
11778
|
+
SENSITIVE = []
|
11779
|
+
include Aws::Structure
|
11780
|
+
end
|
11781
|
+
|
11782
|
+
# Ms Smooth Group Settings
|
11783
|
+
#
|
11784
|
+
# @note When making an API call, you may pass MsSmoothGroupSettings
|
11785
|
+
# data as a hash:
|
11786
|
+
#
|
11787
|
+
# {
|
11788
|
+
# acquisition_point_id: "__string",
|
11789
|
+
# audio_only_timecode_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED_CLOCK
|
11790
|
+
# certificate_mode: "SELF_SIGNED", # accepts SELF_SIGNED, VERIFY_AUTHENTICITY
|
11791
|
+
# connection_retry_interval: 1,
|
11792
|
+
# destination: { # required
|
11793
|
+
# destination_ref_id: "__string",
|
11794
|
+
# },
|
11795
|
+
# event_id: "__string",
|
11796
|
+
# event_id_mode: "NO_EVENT_ID", # accepts NO_EVENT_ID, USE_CONFIGURED, USE_TIMESTAMP
|
11797
|
+
# event_stop_behavior: "NONE", # accepts NONE, SEND_EOS
|
11798
|
+
# filecache_duration: 1,
|
11799
|
+
# fragment_length: 1,
|
11800
|
+
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
11801
|
+
# num_retries: 1,
|
11802
|
+
# restart_delay: 1,
|
11166
11803
|
# segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
|
11167
11804
|
# send_delay_ms: 1,
|
11168
11805
|
# sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
|
@@ -11483,6 +12120,14 @@ module Aws::MediaLive
|
|
11483
12120
|
# The packet identifier map for this multiplex program.
|
11484
12121
|
# @return [Types::MultiplexProgramPacketIdentifiersMap]
|
11485
12122
|
#
|
12123
|
+
# @!attribute [rw] pipeline_details
|
12124
|
+
# Contains information about the current sources for the specified
|
12125
|
+
# program in the specified multiplex. Keep in mind that each multiplex
|
12126
|
+
# pipeline connects to both pipelines in a given source channel (the
|
12127
|
+
# channel identified by the program). But only one of those channel
|
12128
|
+
# pipelines is ever active at one time.
|
12129
|
+
# @return [Array<Types::MultiplexProgramPipelineDetail>]
|
12130
|
+
#
|
11486
12131
|
# @!attribute [rw] program_name
|
11487
12132
|
# The name of the multiplex program.
|
11488
12133
|
# @return [String]
|
@@ -11493,6 +12138,7 @@ module Aws::MediaLive
|
|
11493
12138
|
:channel_id,
|
11494
12139
|
:multiplex_program_settings,
|
11495
12140
|
:packet_identifiers_map,
|
12141
|
+
:pipeline_details,
|
11496
12142
|
:program_name)
|
11497
12143
|
SENSITIVE = []
|
11498
12144
|
include Aws::Structure
|
@@ -11592,6 +12238,26 @@ module Aws::MediaLive
|
|
11592
12238
|
include Aws::Structure
|
11593
12239
|
end
|
11594
12240
|
|
12241
|
+
# The current source for one of the pipelines in the multiplex.
|
12242
|
+
#
|
12243
|
+
# @!attribute [rw] active_channel_pipeline
|
12244
|
+
# Identifies the channel pipeline that is currently active for the
|
12245
|
+
# pipeline (identified by PipelineId) in the multiplex.
|
12246
|
+
# @return [String]
|
12247
|
+
#
|
12248
|
+
# @!attribute [rw] pipeline_id
|
12249
|
+
# Identifies a specific pipeline in the multiplex.
|
12250
|
+
# @return [String]
|
12251
|
+
#
|
12252
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexProgramPipelineDetail AWS API Documentation
|
12253
|
+
#
|
12254
|
+
class MultiplexProgramPipelineDetail < Struct.new(
|
12255
|
+
:active_channel_pipeline,
|
12256
|
+
:pipeline_id)
|
12257
|
+
SENSITIVE = []
|
12258
|
+
include Aws::Structure
|
12259
|
+
end
|
12260
|
+
|
11595
12261
|
# Transport stream service descriptor configuration for the Multiplex
|
11596
12262
|
# program.
|
11597
12263
|
#
|
@@ -11637,6 +12303,7 @@ module Aws::MediaLive
|
|
11637
12303
|
# statmux_settings: {
|
11638
12304
|
# maximum_bitrate: 1,
|
11639
12305
|
# minimum_bitrate: 1,
|
12306
|
+
# priority: 1,
|
11640
12307
|
# },
|
11641
12308
|
# },
|
11642
12309
|
# }
|
@@ -11748,6 +12415,7 @@ module Aws::MediaLive
|
|
11748
12415
|
# {
|
11749
12416
|
# maximum_bitrate: 1,
|
11750
12417
|
# minimum_bitrate: 1,
|
12418
|
+
# priority: 1,
|
11751
12419
|
# }
|
11752
12420
|
#
|
11753
12421
|
# @!attribute [rw] maximum_bitrate
|
@@ -11758,11 +12426,21 @@ module Aws::MediaLive
|
|
11758
12426
|
# Minimum statmux bitrate.
|
11759
12427
|
# @return [Integer]
|
11760
12428
|
#
|
12429
|
+
# @!attribute [rw] priority
|
12430
|
+
# The purpose of the priority is to use a combination of
|
12431
|
+
# the\\nmultiplex rate control algorithm and the QVBR capability of
|
12432
|
+
# the\\nencoder to prioritize the video quality of some channels in
|
12433
|
+
# a\\nmultiplex over others. Channels that have a higher priority
|
12434
|
+
# will\\nget higher video quality at the expense of the video quality
|
12435
|
+
# of\\nother channels in the multiplex with lower priority.
|
12436
|
+
# @return [Integer]
|
12437
|
+
#
|
11761
12438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexStatmuxVideoSettings AWS API Documentation
|
11762
12439
|
#
|
11763
12440
|
class MultiplexStatmuxVideoSettings < Struct.new(
|
11764
12441
|
:maximum_bitrate,
|
11765
|
-
:minimum_bitrate
|
12442
|
+
:minimum_bitrate,
|
12443
|
+
:priority)
|
11766
12444
|
SENSITIVE = []
|
11767
12445
|
include Aws::Structure
|
11768
12446
|
end
|
@@ -11829,6 +12507,7 @@ module Aws::MediaLive
|
|
11829
12507
|
# statmux_settings: {
|
11830
12508
|
# maximum_bitrate: 1,
|
11831
12509
|
# minimum_bitrate: 1,
|
12510
|
+
# priority: 1,
|
11832
12511
|
# },
|
11833
12512
|
# }
|
11834
12513
|
#
|
@@ -12068,6 +12747,8 @@ module Aws::MediaLive
|
|
12068
12747
|
# transport_stream_id: 1,
|
12069
12748
|
# video_pid: "__string",
|
12070
12749
|
# },
|
12750
|
+
# raw_settings: {
|
12751
|
+
# },
|
12071
12752
|
# },
|
12072
12753
|
# extension: "__string",
|
12073
12754
|
# name_modifier: "__string",
|
@@ -12381,6 +13062,7 @@ module Aws::MediaLive
|
|
12381
13062
|
# destination_ref_id: "__string",
|
12382
13063
|
# },
|
12383
13064
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
13065
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
12384
13066
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
12385
13067
|
# hls_cdn_settings: {
|
12386
13068
|
# hls_akamai_settings: {
|
@@ -12415,6 +13097,7 @@ module Aws::MediaLive
|
|
12415
13097
|
# },
|
12416
13098
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
12417
13099
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
13100
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
12418
13101
|
# index_n_segments: 1,
|
12419
13102
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
12420
13103
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -12480,6 +13163,7 @@ module Aws::MediaLive
|
|
12480
13163
|
# multiplex_group_settings: {
|
12481
13164
|
# },
|
12482
13165
|
# rtmp_group_settings: {
|
13166
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
12483
13167
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
12484
13168
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
12485
13169
|
# cache_length: 1,
|
@@ -12561,6 +13245,8 @@ module Aws::MediaLive
|
|
12561
13245
|
# transport_stream_id: 1,
|
12562
13246
|
# video_pid: "__string",
|
12563
13247
|
# },
|
13248
|
+
# raw_settings: {
|
13249
|
+
# },
|
12564
13250
|
# },
|
12565
13251
|
# extension: "__string",
|
12566
13252
|
# name_modifier: "__string",
|
@@ -12771,6 +13457,7 @@ module Aws::MediaLive
|
|
12771
13457
|
# destination_ref_id: "__string",
|
12772
13458
|
# },
|
12773
13459
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
13460
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
12774
13461
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
12775
13462
|
# hls_cdn_settings: {
|
12776
13463
|
# hls_akamai_settings: {
|
@@ -12805,6 +13492,7 @@ module Aws::MediaLive
|
|
12805
13492
|
# },
|
12806
13493
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
12807
13494
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
13495
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
12808
13496
|
# index_n_segments: 1,
|
12809
13497
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
12810
13498
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -12870,6 +13558,7 @@ module Aws::MediaLive
|
|
12870
13558
|
# multiplex_group_settings: {
|
12871
13559
|
# },
|
12872
13560
|
# rtmp_group_settings: {
|
13561
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
12873
13562
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
12874
13563
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
12875
13564
|
# cache_length: 1,
|
@@ -13019,6 +13708,8 @@ module Aws::MediaLive
|
|
13019
13708
|
# transport_stream_id: 1,
|
13020
13709
|
# video_pid: "__string",
|
13021
13710
|
# },
|
13711
|
+
# raw_settings: {
|
13712
|
+
# },
|
13022
13713
|
# },
|
13023
13714
|
# extension: "__string",
|
13024
13715
|
# name_modifier: "__string",
|
@@ -13401,6 +14092,14 @@ module Aws::MediaLive
|
|
13401
14092
|
include Aws::Structure
|
13402
14093
|
end
|
13403
14094
|
|
14095
|
+
# Raw Settings
|
14096
|
+
#
|
14097
|
+
# @api private
|
14098
|
+
#
|
14099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RawSettings AWS API Documentation
|
14100
|
+
#
|
14101
|
+
class RawSettings < Aws::EmptyStructure; end
|
14102
|
+
|
13404
14103
|
# Rec601 Settings
|
13405
14104
|
#
|
13406
14105
|
# @api private
|
@@ -13417,6 +14116,28 @@ module Aws::MediaLive
|
|
13417
14116
|
#
|
13418
14117
|
class Rec709Settings < Aws::EmptyStructure; end
|
13419
14118
|
|
14119
|
+
# @note When making an API call, you may pass RejectInputDeviceTransferRequest
|
14120
|
+
# data as a hash:
|
14121
|
+
#
|
14122
|
+
# {
|
14123
|
+
# input_device_id: "__string", # required
|
14124
|
+
# }
|
14125
|
+
#
|
14126
|
+
# @!attribute [rw] input_device_id
|
14127
|
+
# @return [String]
|
14128
|
+
#
|
14129
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransferRequest AWS API Documentation
|
14130
|
+
#
|
14131
|
+
class RejectInputDeviceTransferRequest < Struct.new(
|
14132
|
+
:input_device_id)
|
14133
|
+
SENSITIVE = []
|
14134
|
+
include Aws::Structure
|
14135
|
+
end
|
14136
|
+
|
14137
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransferResponse AWS API Documentation
|
14138
|
+
#
|
14139
|
+
class RejectInputDeviceTransferResponse < Aws::EmptyStructure; end
|
14140
|
+
|
13420
14141
|
# Remix Settings
|
13421
14142
|
#
|
13422
14143
|
# @note When making an API call, you may pass RemixSettings
|
@@ -13652,6 +14373,7 @@ module Aws::MediaLive
|
|
13652
14373
|
# data as a hash:
|
13653
14374
|
#
|
13654
14375
|
# {
|
14376
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
13655
14377
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
13656
14378
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
13657
14379
|
# cache_length: 1,
|
@@ -13660,6 +14382,12 @@ module Aws::MediaLive
|
|
13660
14382
|
# restart_delay: 1,
|
13661
14383
|
# }
|
13662
14384
|
#
|
14385
|
+
# @!attribute [rw] ad_markers
|
14386
|
+
# Choose the ad marker type for this output group. MediaLive will
|
14387
|
+
# create a message based on the content of each SCTE-35 message,
|
14388
|
+
# format it for that marker type, and insert it in the datastream.
|
14389
|
+
# @return [Array<String>]
|
14390
|
+
#
|
13663
14391
|
# @!attribute [rw] authentication_scheme
|
13664
14392
|
# Authentication scheme to use when connecting with CDN
|
13665
14393
|
# @return [String]
|
@@ -13704,6 +14432,7 @@ module Aws::MediaLive
|
|
13704
14432
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RtmpGroupSettings AWS API Documentation
|
13705
14433
|
#
|
13706
14434
|
class RtmpGroupSettings < Struct.new(
|
14435
|
+
:ad_markers,
|
13707
14436
|
:authentication_scheme,
|
13708
14437
|
:cache_full_behavior,
|
13709
14438
|
:cache_length,
|
@@ -14682,6 +15411,9 @@ module Aws::MediaLive
|
|
14682
15411
|
# @!attribute [rw] arn
|
14683
15412
|
# @return [String]
|
14684
15413
|
#
|
15414
|
+
# @!attribute [rw] cdi_input_specification
|
15415
|
+
# @return [Types::CdiInputSpecification]
|
15416
|
+
#
|
14685
15417
|
# @!attribute [rw] channel_class
|
14686
15418
|
# A standard channel has two encoding pipelines and a single pipeline
|
14687
15419
|
# channel only has one.
|
@@ -14732,6 +15464,7 @@ module Aws::MediaLive
|
|
14732
15464
|
#
|
14733
15465
|
class StartChannelResponse < Struct.new(
|
14734
15466
|
:arn,
|
15467
|
+
:cdi_input_specification,
|
14735
15468
|
:channel_class,
|
14736
15469
|
:destinations,
|
14737
15470
|
:egress_endpoints,
|
@@ -15024,6 +15757,9 @@ module Aws::MediaLive
|
|
15024
15757
|
# @!attribute [rw] arn
|
15025
15758
|
# @return [String]
|
15026
15759
|
#
|
15760
|
+
# @!attribute [rw] cdi_input_specification
|
15761
|
+
# @return [Types::CdiInputSpecification]
|
15762
|
+
#
|
15027
15763
|
# @!attribute [rw] channel_class
|
15028
15764
|
# A standard channel has two encoding pipelines and a single pipeline
|
15029
15765
|
# channel only has one.
|
@@ -15074,6 +15810,7 @@ module Aws::MediaLive
|
|
15074
15810
|
#
|
15075
15811
|
class StopChannelResponse < Struct.new(
|
15076
15812
|
:arn,
|
15813
|
+
:cdi_input_specification,
|
15077
15814
|
:channel_class,
|
15078
15815
|
:destinations,
|
15079
15816
|
:egress_endpoints,
|
@@ -15266,6 +16003,22 @@ module Aws::MediaLive
|
|
15266
16003
|
include Aws::Structure
|
15267
16004
|
end
|
15268
16005
|
|
16006
|
+
# The binary data for the thumbnail that the Link device has most
|
16007
|
+
# recently sent to MediaLive.
|
16008
|
+
#
|
16009
|
+
# @!attribute [rw] body
|
16010
|
+
# The binary data for the thumbnail that the Link device has most
|
16011
|
+
# recently sent to MediaLive.
|
16012
|
+
# @return [String]
|
16013
|
+
#
|
16014
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ThumbnailData AWS API Documentation
|
16015
|
+
#
|
16016
|
+
class ThumbnailData < Struct.new(
|
16017
|
+
:body)
|
16018
|
+
SENSITIVE = []
|
16019
|
+
include Aws::Structure
|
16020
|
+
end
|
16021
|
+
|
15269
16022
|
# Timecode Config
|
15270
16023
|
#
|
15271
16024
|
# @note When making an API call, you may pass TimecodeConfig
|
@@ -15313,6 +16066,87 @@ module Aws::MediaLive
|
|
15313
16066
|
include Aws::Structure
|
15314
16067
|
end
|
15315
16068
|
|
16069
|
+
# The transfer details of the input device.
|
16070
|
+
#
|
16071
|
+
# @!attribute [rw] target_customer_id
|
16072
|
+
# The AWS account ID (12 digits) for the recipient of the device
|
16073
|
+
# transfer.
|
16074
|
+
# @return [String]
|
16075
|
+
#
|
16076
|
+
# @!attribute [rw] transfer_message
|
16077
|
+
# An optional message for the recipient. Maximum 280 characters.
|
16078
|
+
# @return [String]
|
16079
|
+
#
|
16080
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDevice AWS API Documentation
|
16081
|
+
#
|
16082
|
+
class TransferInputDevice < Struct.new(
|
16083
|
+
:target_customer_id,
|
16084
|
+
:transfer_message)
|
16085
|
+
SENSITIVE = []
|
16086
|
+
include Aws::Structure
|
16087
|
+
end
|
16088
|
+
|
16089
|
+
# @note When making an API call, you may pass TransferInputDeviceRequest
|
16090
|
+
# data as a hash:
|
16091
|
+
#
|
16092
|
+
# {
|
16093
|
+
# input_device_id: "__string", # required
|
16094
|
+
# target_customer_id: "__string",
|
16095
|
+
# transfer_message: "__string",
|
16096
|
+
# }
|
16097
|
+
#
|
16098
|
+
# @!attribute [rw] input_device_id
|
16099
|
+
# @return [String]
|
16100
|
+
#
|
16101
|
+
# @!attribute [rw] target_customer_id
|
16102
|
+
# @return [String]
|
16103
|
+
#
|
16104
|
+
# @!attribute [rw] transfer_message
|
16105
|
+
# @return [String]
|
16106
|
+
#
|
16107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDeviceRequest AWS API Documentation
|
16108
|
+
#
|
16109
|
+
class TransferInputDeviceRequest < Struct.new(
|
16110
|
+
:input_device_id,
|
16111
|
+
:target_customer_id,
|
16112
|
+
:transfer_message)
|
16113
|
+
SENSITIVE = []
|
16114
|
+
include Aws::Structure
|
16115
|
+
end
|
16116
|
+
|
16117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDeviceResponse AWS API Documentation
|
16118
|
+
#
|
16119
|
+
class TransferInputDeviceResponse < Aws::EmptyStructure; end
|
16120
|
+
|
16121
|
+
# Details about the input device that is being transferred.
|
16122
|
+
#
|
16123
|
+
# @!attribute [rw] id
|
16124
|
+
# The unique ID of the input device.
|
16125
|
+
# @return [String]
|
16126
|
+
#
|
16127
|
+
# @!attribute [rw] message
|
16128
|
+
# The optional message that the sender has attached to the transfer.
|
16129
|
+
# @return [String]
|
16130
|
+
#
|
16131
|
+
# @!attribute [rw] target_customer_id
|
16132
|
+
# The AWS account ID for the recipient of the input device transfer.
|
16133
|
+
# @return [String]
|
16134
|
+
#
|
16135
|
+
# @!attribute [rw] transfer_type
|
16136
|
+
# The type (direction) of the input device transfer.
|
16137
|
+
# @return [String]
|
16138
|
+
#
|
16139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferringInputDeviceSummary AWS API Documentation
|
16140
|
+
#
|
16141
|
+
class TransferringInputDeviceSummary < Struct.new(
|
16142
|
+
:id,
|
16143
|
+
:message,
|
16144
|
+
:target_customer_id,
|
16145
|
+
:transfer_type)
|
16146
|
+
SENSITIVE = []
|
16147
|
+
include Aws::Structure
|
16148
|
+
end
|
16149
|
+
|
15316
16150
|
# Ttml Destination Settings
|
15317
16151
|
#
|
15318
16152
|
# @note When making an API call, you may pass TtmlDestinationSettings
|
@@ -15584,6 +16418,10 @@ module Aws::MediaLive
|
|
15584
16418
|
include Aws::Structure
|
15585
16419
|
end
|
15586
16420
|
|
16421
|
+
# @!attribute [rw] cdi_input_specification
|
16422
|
+
# Specification of CDI inputs for this channel
|
16423
|
+
# @return [Types::CdiInputSpecification]
|
16424
|
+
#
|
15587
16425
|
# @!attribute [rw] destinations
|
15588
16426
|
# A list of output destinations for this channel.
|
15589
16427
|
# @return [Array<Types::OutputDestination>]
|
@@ -15596,8 +16434,7 @@ module Aws::MediaLive
|
|
15596
16434
|
# @return [Array<Types::InputAttachment>]
|
15597
16435
|
#
|
15598
16436
|
# @!attribute [rw] input_specification
|
15599
|
-
# Specification of
|
15600
|
-
# codec, etc.)
|
16437
|
+
# Specification of network and file inputs for this channel
|
15601
16438
|
# @return [Types::InputSpecification]
|
15602
16439
|
#
|
15603
16440
|
# @!attribute [rw] log_level
|
@@ -15617,6 +16454,7 @@ module Aws::MediaLive
|
|
15617
16454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
|
15618
16455
|
#
|
15619
16456
|
class UpdateChannel < Struct.new(
|
16457
|
+
:cdi_input_specification,
|
15620
16458
|
:destinations,
|
15621
16459
|
:encoder_settings,
|
15622
16460
|
:input_attachments,
|
@@ -15711,6 +16549,9 @@ module Aws::MediaLive
|
|
15711
16549
|
# data as a hash:
|
15712
16550
|
#
|
15713
16551
|
# {
|
16552
|
+
# cdi_input_specification: {
|
16553
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
16554
|
+
# },
|
15714
16555
|
# channel_id: "__string", # required
|
15715
16556
|
# destinations: [
|
15716
16557
|
# {
|
@@ -15795,6 +16636,11 @@ module Aws::MediaLive
|
|
15795
16636
|
# },
|
15796
16637
|
# pass_through_settings: {
|
15797
16638
|
# },
|
16639
|
+
# wav_settings: {
|
16640
|
+
# bit_depth: 1.0,
|
16641
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
16642
|
+
# sample_rate: 1.0,
|
16643
|
+
# },
|
15798
16644
|
# },
|
15799
16645
|
# language_code: "__stringMin1Max35",
|
15800
16646
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -15997,6 +16843,7 @@ module Aws::MediaLive
|
|
15997
16843
|
# destination_ref_id: "__string",
|
15998
16844
|
# },
|
15999
16845
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
16846
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
16000
16847
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
16001
16848
|
# hls_cdn_settings: {
|
16002
16849
|
# hls_akamai_settings: {
|
@@ -16031,6 +16878,7 @@ module Aws::MediaLive
|
|
16031
16878
|
# },
|
16032
16879
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
16033
16880
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
16881
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
16034
16882
|
# index_n_segments: 1,
|
16035
16883
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
16036
16884
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -16096,6 +16944,7 @@ module Aws::MediaLive
|
|
16096
16944
|
# multiplex_group_settings: {
|
16097
16945
|
# },
|
16098
16946
|
# rtmp_group_settings: {
|
16947
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
16099
16948
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
16100
16949
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
16101
16950
|
# cache_length: 1,
|
@@ -16177,6 +17026,8 @@ module Aws::MediaLive
|
|
16177
17026
|
# transport_stream_id: 1,
|
16178
17027
|
# video_pid: "__string",
|
16179
17028
|
# },
|
17029
|
+
# raw_settings: {
|
17030
|
+
# },
|
16180
17031
|
# },
|
16181
17032
|
# extension: "__string",
|
16182
17033
|
# name_modifier: "__string",
|
@@ -16439,6 +17290,29 @@ module Aws::MediaLive
|
|
16439
17290
|
# tier: "HIGH", # accepts HIGH, MAIN
|
16440
17291
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
16441
17292
|
# },
|
17293
|
+
# mpeg_2_settings: {
|
17294
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
17295
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
17296
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
17297
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
17298
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
17299
|
+
# filter_settings: {
|
17300
|
+
# temporal_filter_settings: {
|
17301
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
17302
|
+
# 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
|
17303
|
+
# },
|
17304
|
+
# },
|
17305
|
+
# 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
|
17306
|
+
# framerate_denominator: 1, # required
|
17307
|
+
# framerate_numerator: 1, # required
|
17308
|
+
# gop_closed_cadence: 1,
|
17309
|
+
# gop_num_b_frames: 1,
|
17310
|
+
# gop_size: 1.0,
|
17311
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
17312
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
17313
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
17314
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
17315
|
+
# },
|
16442
17316
|
# },
|
16443
17317
|
# height: 1,
|
16444
17318
|
# name: "__string", # required
|
@@ -16452,6 +17326,16 @@ module Aws::MediaLive
|
|
16452
17326
|
# input_attachments: [
|
16453
17327
|
# {
|
16454
17328
|
# automatic_input_failover_settings: {
|
17329
|
+
# error_clear_time_msec: 1,
|
17330
|
+
# failover_conditions: [
|
17331
|
+
# {
|
17332
|
+
# failover_condition_settings: {
|
17333
|
+
# input_loss_settings: {
|
17334
|
+
# input_loss_threshold_msec: 1,
|
17335
|
+
# },
|
17336
|
+
# },
|
17337
|
+
# },
|
17338
|
+
# ],
|
16455
17339
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
16456
17340
|
# secondary_input_id: "__string", # required
|
16457
17341
|
# },
|
@@ -16484,6 +17368,9 @@ module Aws::MediaLive
|
|
16484
17368
|
# language_code: "__string",
|
16485
17369
|
# name: "__stringMin1", # required
|
16486
17370
|
# selector_settings: {
|
17371
|
+
# ancillary_source_settings: {
|
17372
|
+
# source_ancillary_channel_number: 1,
|
17373
|
+
# },
|
16487
17374
|
# arib_source_settings: {
|
16488
17375
|
# },
|
16489
17376
|
# dvb_sub_source_settings: {
|
@@ -16548,6 +17435,9 @@ module Aws::MediaLive
|
|
16548
17435
|
# role_arn: "__string",
|
16549
17436
|
# }
|
16550
17437
|
#
|
17438
|
+
# @!attribute [rw] cdi_input_specification
|
17439
|
+
# @return [Types::CdiInputSpecification]
|
17440
|
+
#
|
16551
17441
|
# @!attribute [rw] channel_id
|
16552
17442
|
# @return [String]
|
16553
17443
|
#
|
@@ -16577,6 +17467,7 @@ module Aws::MediaLive
|
|
16577
17467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelRequest AWS API Documentation
|
16578
17468
|
#
|
16579
17469
|
class UpdateChannelRequest < Struct.new(
|
17470
|
+
:cdi_input_specification,
|
16580
17471
|
:channel_id,
|
16581
17472
|
:destinations,
|
16582
17473
|
:encoder_settings,
|
@@ -16969,6 +17860,7 @@ module Aws::MediaLive
|
|
16969
17860
|
# statmux_settings: {
|
16970
17861
|
# maximum_bitrate: 1,
|
16971
17862
|
# minimum_bitrate: 1,
|
17863
|
+
# priority: 1,
|
16972
17864
|
# },
|
16973
17865
|
# },
|
16974
17866
|
# },
|
@@ -17269,6 +18161,29 @@ module Aws::MediaLive
|
|
17269
18161
|
# tier: "HIGH", # accepts HIGH, MAIN
|
17270
18162
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
17271
18163
|
# },
|
18164
|
+
# mpeg_2_settings: {
|
18165
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
18166
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
18167
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
18168
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
18169
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
18170
|
+
# filter_settings: {
|
18171
|
+
# temporal_filter_settings: {
|
18172
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
18173
|
+
# 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
|
18174
|
+
# },
|
18175
|
+
# },
|
18176
|
+
# 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
|
18177
|
+
# framerate_denominator: 1, # required
|
18178
|
+
# framerate_numerator: 1, # required
|
18179
|
+
# gop_closed_cadence: 1,
|
18180
|
+
# gop_num_b_frames: 1,
|
18181
|
+
# gop_size: 1.0,
|
18182
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
18183
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
18184
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
18185
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
18186
|
+
# },
|
17272
18187
|
# }
|
17273
18188
|
#
|
17274
18189
|
# @!attribute [rw] frame_capture_settings
|
@@ -17283,12 +18198,17 @@ module Aws::MediaLive
|
|
17283
18198
|
# H265 Settings
|
17284
18199
|
# @return [Types::H265Settings]
|
17285
18200
|
#
|
18201
|
+
# @!attribute [rw] mpeg_2_settings
|
18202
|
+
# Mpeg2 Settings
|
18203
|
+
# @return [Types::Mpeg2Settings]
|
18204
|
+
#
|
17286
18205
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoCodecSettings AWS API Documentation
|
17287
18206
|
#
|
17288
18207
|
class VideoCodecSettings < Struct.new(
|
17289
18208
|
:frame_capture_settings,
|
17290
18209
|
:h264_settings,
|
17291
|
-
:h265_settings
|
18210
|
+
:h265_settings,
|
18211
|
+
:mpeg_2_settings)
|
17292
18212
|
SENSITIVE = []
|
17293
18213
|
include Aws::Structure
|
17294
18214
|
end
|
@@ -17406,6 +18326,29 @@ module Aws::MediaLive
|
|
17406
18326
|
# tier: "HIGH", # accepts HIGH, MAIN
|
17407
18327
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
17408
18328
|
# },
|
18329
|
+
# mpeg_2_settings: {
|
18330
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
18331
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
18332
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
18333
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
18334
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
18335
|
+
# filter_settings: {
|
18336
|
+
# temporal_filter_settings: {
|
18337
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
18338
|
+
# 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
|
18339
|
+
# },
|
18340
|
+
# },
|
18341
|
+
# 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
|
18342
|
+
# framerate_denominator: 1, # required
|
18343
|
+
# framerate_numerator: 1, # required
|
18344
|
+
# gop_closed_cadence: 1,
|
18345
|
+
# gop_num_b_frames: 1,
|
18346
|
+
# gop_size: 1.0,
|
18347
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
18348
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
18349
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
18350
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
18351
|
+
# },
|
17409
18352
|
# },
|
17410
18353
|
# height: 1,
|
17411
18354
|
# name: "__string", # required
|
@@ -17610,6 +18553,40 @@ module Aws::MediaLive
|
|
17610
18553
|
include Aws::Structure
|
17611
18554
|
end
|
17612
18555
|
|
18556
|
+
# Wav Settings
|
18557
|
+
#
|
18558
|
+
# @note When making an API call, you may pass WavSettings
|
18559
|
+
# data as a hash:
|
18560
|
+
#
|
18561
|
+
# {
|
18562
|
+
# bit_depth: 1.0,
|
18563
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
18564
|
+
# sample_rate: 1.0,
|
18565
|
+
# }
|
18566
|
+
#
|
18567
|
+
# @!attribute [rw] bit_depth
|
18568
|
+
# Bits per sample.
|
18569
|
+
# @return [Float]
|
18570
|
+
#
|
18571
|
+
# @!attribute [rw] coding_mode
|
18572
|
+
# The audio coding mode for the WAV audio. The mode determines the
|
18573
|
+
# number of channels in the audio.
|
18574
|
+
# @return [String]
|
18575
|
+
#
|
18576
|
+
# @!attribute [rw] sample_rate
|
18577
|
+
# Sample rate in Hz.
|
18578
|
+
# @return [Float]
|
18579
|
+
#
|
18580
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/WavSettings AWS API Documentation
|
18581
|
+
#
|
18582
|
+
class WavSettings < Struct.new(
|
18583
|
+
:bit_depth,
|
18584
|
+
:coding_mode,
|
18585
|
+
:sample_rate)
|
18586
|
+
SENSITIVE = []
|
18587
|
+
include Aws::Structure
|
18588
|
+
end
|
18589
|
+
|
17613
18590
|
# Webvtt Destination Settings
|
17614
18591
|
#
|
17615
18592
|
# @api private
|