aws-sdk-medialive 1.55.0 → 1.60.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 +2 -2
- data/lib/aws-sdk-medialive/client.rb +475 -1
- data/lib/aws-sdk-medialive/client_api.rb +265 -2
- data/lib/aws-sdk-medialive/types.rb +1015 -18
- metadata +2 -2
@@ -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,
|
@@ -4637,6 +4869,10 @@ module Aws::MediaLive
|
|
4637
4869
|
# its configuration.
|
4638
4870
|
# @return [String]
|
4639
4871
|
#
|
4872
|
+
# @!attribute [rw] device_update_status
|
4873
|
+
# The status of software on the input device.
|
4874
|
+
# @return [String]
|
4875
|
+
#
|
4640
4876
|
# @!attribute [rw] hd_device_settings
|
4641
4877
|
# Settings that describe the active source from the input device, and
|
4642
4878
|
# the video characteristics of that source.
|
@@ -4669,6 +4905,7 @@ module Aws::MediaLive
|
|
4669
4905
|
:arn,
|
4670
4906
|
:connection_state,
|
4671
4907
|
:device_settings_sync_state,
|
4908
|
+
:device_update_status,
|
4672
4909
|
:hd_device_settings,
|
4673
4910
|
:id,
|
4674
4911
|
:mac_address,
|
@@ -4905,6 +5142,9 @@ module Aws::MediaLive
|
|
4905
5142
|
# Packet identifiers map for a given Multiplex program.
|
4906
5143
|
# @return [Types::MultiplexProgramPacketIdentifiersMap]
|
4907
5144
|
#
|
5145
|
+
# @!attribute [rw] pipeline_details
|
5146
|
+
# @return [Array<Types::MultiplexProgramPipelineDetail>]
|
5147
|
+
#
|
4908
5148
|
# @!attribute [rw] program_name
|
4909
5149
|
# @return [String]
|
4910
5150
|
#
|
@@ -4914,6 +5154,7 @@ module Aws::MediaLive
|
|
4914
5154
|
:channel_id,
|
4915
5155
|
:multiplex_program_settings,
|
4916
5156
|
:packet_identifiers_map,
|
5157
|
+
:pipeline_details,
|
4917
5158
|
:program_name)
|
4918
5159
|
SENSITIVE = []
|
4919
5160
|
include Aws::Structure
|
@@ -5851,6 +6092,11 @@ module Aws::MediaLive
|
|
5851
6092
|
# },
|
5852
6093
|
# pass_through_settings: {
|
5853
6094
|
# },
|
6095
|
+
# wav_settings: {
|
6096
|
+
# bit_depth: 1.0,
|
6097
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
6098
|
+
# sample_rate: 1.0,
|
6099
|
+
# },
|
5854
6100
|
# },
|
5855
6101
|
# language_code: "__stringMin1Max35",
|
5856
6102
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -6053,6 +6299,7 @@ module Aws::MediaLive
|
|
6053
6299
|
# destination_ref_id: "__string",
|
6054
6300
|
# },
|
6055
6301
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
6302
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
6056
6303
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
6057
6304
|
# hls_cdn_settings: {
|
6058
6305
|
# hls_akamai_settings: {
|
@@ -6087,6 +6334,7 @@ module Aws::MediaLive
|
|
6087
6334
|
# },
|
6088
6335
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
6089
6336
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
6337
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
6090
6338
|
# index_n_segments: 1,
|
6091
6339
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
6092
6340
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -6152,6 +6400,7 @@ module Aws::MediaLive
|
|
6152
6400
|
# multiplex_group_settings: {
|
6153
6401
|
# },
|
6154
6402
|
# rtmp_group_settings: {
|
6403
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
6155
6404
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
6156
6405
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
6157
6406
|
# cache_length: 1,
|
@@ -6233,6 +6482,8 @@ module Aws::MediaLive
|
|
6233
6482
|
# transport_stream_id: 1,
|
6234
6483
|
# video_pid: "__string",
|
6235
6484
|
# },
|
6485
|
+
# raw_settings: {
|
6486
|
+
# },
|
6236
6487
|
# },
|
6237
6488
|
# extension: "__string",
|
6238
6489
|
# name_modifier: "__string",
|
@@ -6495,6 +6746,29 @@ module Aws::MediaLive
|
|
6495
6746
|
# tier: "HIGH", # accepts HIGH, MAIN
|
6496
6747
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
6497
6748
|
# },
|
6749
|
+
# mpeg_2_settings: {
|
6750
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
6751
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
6752
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
6753
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
6754
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
6755
|
+
# filter_settings: {
|
6756
|
+
# temporal_filter_settings: {
|
6757
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
6758
|
+
# 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
|
6759
|
+
# },
|
6760
|
+
# },
|
6761
|
+
# 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
|
6762
|
+
# framerate_denominator: 1, # required
|
6763
|
+
# framerate_numerator: 1, # required
|
6764
|
+
# gop_closed_cadence: 1,
|
6765
|
+
# gop_num_b_frames: 1,
|
6766
|
+
# gop_size: 1.0,
|
6767
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
6768
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
6769
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
6770
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
6771
|
+
# },
|
6498
6772
|
# },
|
6499
6773
|
# height: 1,
|
6500
6774
|
# name: "__string", # required
|
@@ -6566,6 +6840,56 @@ module Aws::MediaLive
|
|
6566
6840
|
include Aws::Structure
|
6567
6841
|
end
|
6568
6842
|
|
6843
|
+
# Failover Condition settings. There can be multiple failover conditions
|
6844
|
+
# inside AutomaticInputFailoverSettings.
|
6845
|
+
#
|
6846
|
+
# @note When making an API call, you may pass FailoverCondition
|
6847
|
+
# data as a hash:
|
6848
|
+
#
|
6849
|
+
# {
|
6850
|
+
# failover_condition_settings: {
|
6851
|
+
# input_loss_settings: {
|
6852
|
+
# input_loss_threshold_msec: 1,
|
6853
|
+
# },
|
6854
|
+
# },
|
6855
|
+
# }
|
6856
|
+
#
|
6857
|
+
# @!attribute [rw] failover_condition_settings
|
6858
|
+
# Failover condition type-specific settings.
|
6859
|
+
# @return [Types::FailoverConditionSettings]
|
6860
|
+
#
|
6861
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FailoverCondition AWS API Documentation
|
6862
|
+
#
|
6863
|
+
class FailoverCondition < Struct.new(
|
6864
|
+
:failover_condition_settings)
|
6865
|
+
SENSITIVE = []
|
6866
|
+
include Aws::Structure
|
6867
|
+
end
|
6868
|
+
|
6869
|
+
# Settings for one failover condition.
|
6870
|
+
#
|
6871
|
+
# @note When making an API call, you may pass FailoverConditionSettings
|
6872
|
+
# data as a hash:
|
6873
|
+
#
|
6874
|
+
# {
|
6875
|
+
# input_loss_settings: {
|
6876
|
+
# input_loss_threshold_msec: 1,
|
6877
|
+
# },
|
6878
|
+
# }
|
6879
|
+
#
|
6880
|
+
# @!attribute [rw] input_loss_settings
|
6881
|
+
# MediaLive will perform a failover if content is not detected in this
|
6882
|
+
# input for the specified period.
|
6883
|
+
# @return [Types::InputLossFailoverSettings]
|
6884
|
+
#
|
6885
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FailoverConditionSettings AWS API Documentation
|
6886
|
+
#
|
6887
|
+
class FailoverConditionSettings < Struct.new(
|
6888
|
+
:input_loss_settings)
|
6889
|
+
SENSITIVE = []
|
6890
|
+
include Aws::Structure
|
6891
|
+
end
|
6892
|
+
|
6569
6893
|
# Feature Activations
|
6570
6894
|
#
|
6571
6895
|
# @note When making an API call, you may pass FeatureActivations
|
@@ -7873,6 +8197,7 @@ module Aws::MediaLive
|
|
7873
8197
|
# destination_ref_id: "__string",
|
7874
8198
|
# },
|
7875
8199
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
8200
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
7876
8201
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
7877
8202
|
# hls_cdn_settings: {
|
7878
8203
|
# hls_akamai_settings: {
|
@@ -7907,6 +8232,7 @@ module Aws::MediaLive
|
|
7907
8232
|
# },
|
7908
8233
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
7909
8234
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
8235
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
7910
8236
|
# index_n_segments: 1,
|
7911
8237
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
7912
8238
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -8019,6 +8345,16 @@ module Aws::MediaLive
|
|
8019
8345
|
# Place segments in subdirectories.
|
8020
8346
|
# @return [String]
|
8021
8347
|
#
|
8348
|
+
# @!attribute [rw] discontinuity_tags
|
8349
|
+
# Specifies whether to insert EXT-X-DISCONTINUITY tags in the HLS
|
8350
|
+
# child manifests for this output group. Typically, choose Insert
|
8351
|
+
# because these tags are required in the manifest (according to the
|
8352
|
+
# HLS specification) and serve an important purpose. Choose Never
|
8353
|
+
# Insert only if the downstream system is doing real-time failover
|
8354
|
+
# (without using the MediaLive automatic failover feature) and only if
|
8355
|
+
# that downstream system has advised you to exclude the tags.
|
8356
|
+
# @return [String]
|
8357
|
+
#
|
8022
8358
|
# @!attribute [rw] encryption_type
|
8023
8359
|
# Encrypts the segments with the given encryption scheme. Exclude this
|
8024
8360
|
# parameter if no encryption is desired.
|
@@ -8043,6 +8379,16 @@ module Aws::MediaLive
|
|
8043
8379
|
# example, #EXT-X-BYTERANGE:160364@1461888"
|
8044
8380
|
# @return [String]
|
8045
8381
|
#
|
8382
|
+
# @!attribute [rw] incomplete_segment_behavior
|
8383
|
+
# Specifies whether to include the final (incomplete) segment in the
|
8384
|
+
# media output when the pipeline stops producing output because of a
|
8385
|
+
# channel stop, a channel pause or a loss of input to the pipeline.
|
8386
|
+
# Auto means that MediaLive decides whether to include the final
|
8387
|
+
# segment, depending on the channel class and the types of output
|
8388
|
+
# groups. Suppress means to never include the incomplete segment. We
|
8389
|
+
# recommend you choose Auto and let MediaLive control the behavior.
|
8390
|
+
# @return [String]
|
8391
|
+
#
|
8046
8392
|
# @!attribute [rw] index_n_segments
|
8047
8393
|
# Applies only if Mode field is LIVE. Specifies the maximum number of
|
8048
8394
|
# segments in the media manifest file. After this maximum, older
|
@@ -8218,10 +8564,12 @@ module Aws::MediaLive
|
|
8218
8564
|
:constant_iv,
|
8219
8565
|
:destination,
|
8220
8566
|
:directory_structure,
|
8567
|
+
:discontinuity_tags,
|
8221
8568
|
:encryption_type,
|
8222
8569
|
:hls_cdn_settings,
|
8223
8570
|
:hls_id_3_segment_tagging,
|
8224
8571
|
:i_frame_only_playlists,
|
8572
|
+
:incomplete_segment_behavior,
|
8225
8573
|
:index_n_segments,
|
8226
8574
|
:input_loss_action,
|
8227
8575
|
:iv_in_manifest,
|
@@ -8694,6 +9042,16 @@ module Aws::MediaLive
|
|
8694
9042
|
#
|
8695
9043
|
# {
|
8696
9044
|
# automatic_input_failover_settings: {
|
9045
|
+
# error_clear_time_msec: 1,
|
9046
|
+
# failover_conditions: [
|
9047
|
+
# {
|
9048
|
+
# failover_condition_settings: {
|
9049
|
+
# input_loss_settings: {
|
9050
|
+
# input_loss_threshold_msec: 1,
|
9051
|
+
# },
|
9052
|
+
# },
|
9053
|
+
# },
|
9054
|
+
# ],
|
8697
9055
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
8698
9056
|
# secondary_input_id: "__string", # required
|
8699
9057
|
# },
|
@@ -8726,6 +9084,9 @@ module Aws::MediaLive
|
|
8726
9084
|
# language_code: "__string",
|
8727
9085
|
# name: "__stringMin1", # required
|
8728
9086
|
# selector_settings: {
|
9087
|
+
# ancillary_source_settings: {
|
9088
|
+
# source_ancillary_channel_number: 1,
|
9089
|
+
# },
|
8729
9090
|
# arib_source_settings: {
|
8730
9091
|
# },
|
8731
9092
|
# dvb_sub_source_settings: {
|
@@ -8966,6 +9327,10 @@ module Aws::MediaLive
|
|
8966
9327
|
# its configuration.
|
8967
9328
|
# @return [String]
|
8968
9329
|
#
|
9330
|
+
# @!attribute [rw] device_update_status
|
9331
|
+
# The status of software on the input device.
|
9332
|
+
# @return [String]
|
9333
|
+
#
|
8969
9334
|
# @!attribute [rw] hd_device_settings
|
8970
9335
|
# Settings that describe an input device that is type HD.
|
8971
9336
|
# @return [Types::InputDeviceHdSettings]
|
@@ -9000,6 +9365,7 @@ module Aws::MediaLive
|
|
9000
9365
|
:arn,
|
9001
9366
|
:connection_state,
|
9002
9367
|
:device_settings_sync_state,
|
9368
|
+
:device_update_status,
|
9003
9369
|
:hd_device_settings,
|
9004
9370
|
:id,
|
9005
9371
|
:mac_address,
|
@@ -9210,6 +9576,10 @@ module Aws::MediaLive
|
|
9210
9576
|
# its configuration.
|
9211
9577
|
# @return [String]
|
9212
9578
|
#
|
9579
|
+
# @!attribute [rw] device_update_status
|
9580
|
+
# The status of software on the input device.
|
9581
|
+
# @return [String]
|
9582
|
+
#
|
9213
9583
|
# @!attribute [rw] hd_device_settings
|
9214
9584
|
# Settings that describe an input device that is type HD.
|
9215
9585
|
# @return [Types::InputDeviceHdSettings]
|
@@ -9244,6 +9614,7 @@ module Aws::MediaLive
|
|
9244
9614
|
:arn,
|
9245
9615
|
:connection_state,
|
9246
9616
|
:device_settings_sync_state,
|
9617
|
+
:device_update_status,
|
9247
9618
|
:hd_device_settings,
|
9248
9619
|
:id,
|
9249
9620
|
:mac_address,
|
@@ -9354,6 +9725,29 @@ module Aws::MediaLive
|
|
9354
9725
|
include Aws::Structure
|
9355
9726
|
end
|
9356
9727
|
|
9728
|
+
# MediaLive will perform a failover if content is not detected in this
|
9729
|
+
# input for the specified period.
|
9730
|
+
#
|
9731
|
+
# @note When making an API call, you may pass InputLossFailoverSettings
|
9732
|
+
# data as a hash:
|
9733
|
+
#
|
9734
|
+
# {
|
9735
|
+
# input_loss_threshold_msec: 1,
|
9736
|
+
# }
|
9737
|
+
#
|
9738
|
+
# @!attribute [rw] input_loss_threshold_msec
|
9739
|
+
# The amount of time (in milliseconds) that no input is detected.
|
9740
|
+
# After that time, an input failover will occur.
|
9741
|
+
# @return [Integer]
|
9742
|
+
#
|
9743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputLossFailoverSettings AWS API Documentation
|
9744
|
+
#
|
9745
|
+
class InputLossFailoverSettings < Struct.new(
|
9746
|
+
:input_loss_threshold_msec)
|
9747
|
+
SENSITIVE = []
|
9748
|
+
include Aws::Structure
|
9749
|
+
end
|
9750
|
+
|
9357
9751
|
# Action to prepare an input for a future immediate input switch.
|
9358
9752
|
#
|
9359
9753
|
# @note When making an API call, you may pass InputPrepareScheduleActionSettings
|
@@ -9493,6 +9887,9 @@ module Aws::MediaLive
|
|
9493
9887
|
# language_code: "__string",
|
9494
9888
|
# name: "__stringMin1", # required
|
9495
9889
|
# selector_settings: {
|
9890
|
+
# ancillary_source_settings: {
|
9891
|
+
# source_ancillary_channel_number: 1,
|
9892
|
+
# },
|
9496
9893
|
# arib_source_settings: {
|
9497
9894
|
# },
|
9498
9895
|
# dvb_sub_source_settings: {
|
@@ -9949,6 +10346,70 @@ module Aws::MediaLive
|
|
9949
10346
|
include Aws::Structure
|
9950
10347
|
end
|
9951
10348
|
|
10349
|
+
# @note When making an API call, you may pass ListInputDeviceTransfersRequest
|
10350
|
+
# data as a hash:
|
10351
|
+
#
|
10352
|
+
# {
|
10353
|
+
# max_results: 1,
|
10354
|
+
# next_token: "__string",
|
10355
|
+
# transfer_type: "__string", # required
|
10356
|
+
# }
|
10357
|
+
#
|
10358
|
+
# @!attribute [rw] max_results
|
10359
|
+
# @return [Integer]
|
10360
|
+
#
|
10361
|
+
# @!attribute [rw] next_token
|
10362
|
+
# @return [String]
|
10363
|
+
#
|
10364
|
+
# @!attribute [rw] transfer_type
|
10365
|
+
# @return [String]
|
10366
|
+
#
|
10367
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersRequest AWS API Documentation
|
10368
|
+
#
|
10369
|
+
class ListInputDeviceTransfersRequest < Struct.new(
|
10370
|
+
:max_results,
|
10371
|
+
:next_token,
|
10372
|
+
:transfer_type)
|
10373
|
+
SENSITIVE = []
|
10374
|
+
include Aws::Structure
|
10375
|
+
end
|
10376
|
+
|
10377
|
+
# @!attribute [rw] input_device_transfers
|
10378
|
+
# @return [Array<Types::TransferringInputDeviceSummary>]
|
10379
|
+
#
|
10380
|
+
# @!attribute [rw] next_token
|
10381
|
+
# @return [String]
|
10382
|
+
#
|
10383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersResponse AWS API Documentation
|
10384
|
+
#
|
10385
|
+
class ListInputDeviceTransfersResponse < Struct.new(
|
10386
|
+
:input_device_transfers,
|
10387
|
+
:next_token)
|
10388
|
+
SENSITIVE = []
|
10389
|
+
include Aws::Structure
|
10390
|
+
end
|
10391
|
+
|
10392
|
+
# The list of input devices in the transferred state. The recipient
|
10393
|
+
# hasn't yet accepted or rejected the transfer.
|
10394
|
+
#
|
10395
|
+
# @!attribute [rw] input_device_transfers
|
10396
|
+
# The list of devices that you are transferring or are being
|
10397
|
+
# transferred to you.
|
10398
|
+
# @return [Array<Types::TransferringInputDeviceSummary>]
|
10399
|
+
#
|
10400
|
+
# @!attribute [rw] next_token
|
10401
|
+
# A token to get additional list results.
|
10402
|
+
# @return [String]
|
10403
|
+
#
|
10404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersResultModel AWS API Documentation
|
10405
|
+
#
|
10406
|
+
class ListInputDeviceTransfersResultModel < Struct.new(
|
10407
|
+
:input_device_transfers,
|
10408
|
+
:next_token)
|
10409
|
+
SENSITIVE = []
|
10410
|
+
include Aws::Structure
|
10411
|
+
end
|
10412
|
+
|
9952
10413
|
# @note When making an API call, you may pass ListInputDevicesRequest
|
9953
10414
|
# data as a hash:
|
9954
10415
|
#
|
@@ -11142,21 +11603,212 @@ module Aws::MediaLive
|
|
11142
11603
|
include Aws::Structure
|
11143
11604
|
end
|
11144
11605
|
|
11145
|
-
#
|
11606
|
+
# Mpeg2 Filter Settings
|
11146
11607
|
#
|
11147
|
-
# @note When making an API call, you may pass
|
11608
|
+
# @note When making an API call, you may pass Mpeg2FilterSettings
|
11148
11609
|
# data as a hash:
|
11149
11610
|
#
|
11150
11611
|
# {
|
11151
|
-
#
|
11152
|
-
#
|
11153
|
-
#
|
11154
|
-
# connection_retry_interval: 1,
|
11155
|
-
# destination: { # required
|
11156
|
-
# destination_ref_id: "__string",
|
11612
|
+
# temporal_filter_settings: {
|
11613
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
11614
|
+
# 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
11615
|
# },
|
11158
|
-
#
|
11159
|
-
#
|
11616
|
+
# }
|
11617
|
+
#
|
11618
|
+
# @!attribute [rw] temporal_filter_settings
|
11619
|
+
# Temporal Filter Settings
|
11620
|
+
# @return [Types::TemporalFilterSettings]
|
11621
|
+
#
|
11622
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mpeg2FilterSettings AWS API Documentation
|
11623
|
+
#
|
11624
|
+
class Mpeg2FilterSettings < Struct.new(
|
11625
|
+
:temporal_filter_settings)
|
11626
|
+
SENSITIVE = []
|
11627
|
+
include Aws::Structure
|
11628
|
+
end
|
11629
|
+
|
11630
|
+
# Mpeg2 Settings
|
11631
|
+
#
|
11632
|
+
# @note When making an API call, you may pass Mpeg2Settings
|
11633
|
+
# data as a hash:
|
11634
|
+
#
|
11635
|
+
# {
|
11636
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
11637
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
11638
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
11639
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
11640
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
11641
|
+
# filter_settings: {
|
11642
|
+
# temporal_filter_settings: {
|
11643
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
11644
|
+
# 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
|
11645
|
+
# },
|
11646
|
+
# },
|
11647
|
+
# 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
|
11648
|
+
# framerate_denominator: 1, # required
|
11649
|
+
# framerate_numerator: 1, # required
|
11650
|
+
# gop_closed_cadence: 1,
|
11651
|
+
# gop_num_b_frames: 1,
|
11652
|
+
# gop_size: 1.0,
|
11653
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
11654
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
11655
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
11656
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
11657
|
+
# }
|
11658
|
+
#
|
11659
|
+
# @!attribute [rw] adaptive_quantization
|
11660
|
+
# Choose Off to disable adaptive quantization. Or choose another value
|
11661
|
+
# to enable the quantizer and set its strength. The strengths are:
|
11662
|
+
# Auto, Off, Low, Medium, High. When you enable this field, MediaLive
|
11663
|
+
# allows intra-frame quantizers to vary, which might improve visual
|
11664
|
+
# quality.
|
11665
|
+
# @return [String]
|
11666
|
+
#
|
11667
|
+
# @!attribute [rw] afd_signaling
|
11668
|
+
# Indicates the AFD values that MediaLive will write into the video
|
11669
|
+
# encode. If you do not know what AFD signaling is, or if your
|
11670
|
+
# downstream system has not given you guidance, choose AUTO. AUTO:
|
11671
|
+
# MediaLive will try to preserve the input AFD value (in cases where
|
11672
|
+
# multiple AFD values are valid). FIXED: MediaLive will use the value
|
11673
|
+
# you specify in fixedAFD.
|
11674
|
+
# @return [String]
|
11675
|
+
#
|
11676
|
+
# @!attribute [rw] color_metadata
|
11677
|
+
# Specifies whether to include the color space metadata. The metadata
|
11678
|
+
# describes the color space that applies to the video (the colorSpace
|
11679
|
+
# field). We recommend that you insert the metadata.
|
11680
|
+
# @return [String]
|
11681
|
+
#
|
11682
|
+
# @!attribute [rw] color_space
|
11683
|
+
# Choose the type of color space conversion to apply to the output.
|
11684
|
+
# For detailed information on setting up both the input and the output
|
11685
|
+
# to obtain the desired color space in the output, see the section on
|
11686
|
+
# \\"MediaLive Features - Video - color space\\" in the MediaLive
|
11687
|
+
# User Guide. PASSTHROUGH: Keep the color space of the input content -
|
11688
|
+
# do not convert it. AUTO:Convert all content that is SD to rec 601,
|
11689
|
+
# and convert all content that is HD to rec 709.
|
11690
|
+
# @return [String]
|
11691
|
+
#
|
11692
|
+
# @!attribute [rw] display_aspect_ratio
|
11693
|
+
# Sets the pixel aspect ratio for the encode.
|
11694
|
+
# @return [String]
|
11695
|
+
#
|
11696
|
+
# @!attribute [rw] filter_settings
|
11697
|
+
# Optionally specify a noise reduction filter, which can improve
|
11698
|
+
# quality of compressed content. If you do not choose a filter, no
|
11699
|
+
# filter will be applied. TEMPORAL: This filter is useful for both
|
11700
|
+
# source content that is noisy (when it has excessive digital
|
11701
|
+
# artifacts) and source content that is clean. When the content is
|
11702
|
+
# noisy, the filter cleans up the source content before the encoding
|
11703
|
+
# phase, with these two effects: First, it improves the output video
|
11704
|
+
# quality because the content has been cleaned up. Secondly, it
|
11705
|
+
# decreases the bandwidth because MediaLive does not waste bits on
|
11706
|
+
# encoding noise. When the content is reasonably clean, the filter
|
11707
|
+
# tends to decrease the bitrate.
|
11708
|
+
# @return [Types::Mpeg2FilterSettings]
|
11709
|
+
#
|
11710
|
+
# @!attribute [rw] fixed_afd
|
11711
|
+
# Complete this field only when afdSignaling is set to FIXED. Enter
|
11712
|
+
# the AFD value (4 bits) to write on all frames of the video encode.
|
11713
|
+
# @return [String]
|
11714
|
+
#
|
11715
|
+
# @!attribute [rw] framerate_denominator
|
11716
|
+
# description": "The framerate denominator. For example, 1001. The
|
11717
|
+
# framerate is the numerator divided by the denominator. For example,
|
11718
|
+
# 24000 / 1001 = 23.976 FPS.
|
11719
|
+
# @return [Integer]
|
11720
|
+
#
|
11721
|
+
# @!attribute [rw] framerate_numerator
|
11722
|
+
# The framerate numerator. For example, 24000. The framerate is the
|
11723
|
+
# numerator divided by the denominator. For example, 24000 / 1001 =
|
11724
|
+
# 23.976 FPS.
|
11725
|
+
# @return [Integer]
|
11726
|
+
#
|
11727
|
+
# @!attribute [rw] gop_closed_cadence
|
11728
|
+
# MPEG2: default is open GOP.
|
11729
|
+
# @return [Integer]
|
11730
|
+
#
|
11731
|
+
# @!attribute [rw] gop_num_b_frames
|
11732
|
+
# Relates to the GOP structure. The number of B-frames between
|
11733
|
+
# reference frames. If you do not know what a B-frame is, use the
|
11734
|
+
# default.
|
11735
|
+
# @return [Integer]
|
11736
|
+
#
|
11737
|
+
# @!attribute [rw] gop_size
|
11738
|
+
# Relates to the GOP structure. The GOP size (keyframe interval) in
|
11739
|
+
# the units specified in gopSizeUnits. If you do not know what GOP is,
|
11740
|
+
# use the default. If gopSizeUnits is frames, then the gopSize must be
|
11741
|
+
# an integer and must be greater than or equal to 1. If gopSizeUnits
|
11742
|
+
# is seconds, the gopSize must be greater than 0, but does not need to
|
11743
|
+
# be an integer.
|
11744
|
+
# @return [Float]
|
11745
|
+
#
|
11746
|
+
# @!attribute [rw] gop_size_units
|
11747
|
+
# Relates to the GOP structure. Specifies whether the gopSize is
|
11748
|
+
# specified in frames or seconds. If you do not plan to change the
|
11749
|
+
# default gopSize, leave the default. If you specify SECONDS,
|
11750
|
+
# MediaLive will internally convert the gop size to a frame count.
|
11751
|
+
# @return [String]
|
11752
|
+
#
|
11753
|
+
# @!attribute [rw] scan_type
|
11754
|
+
# Set the scan type of the output to PROGRESSIVE or INTERLACED (top
|
11755
|
+
# field first).
|
11756
|
+
# @return [String]
|
11757
|
+
#
|
11758
|
+
# @!attribute [rw] subgop_length
|
11759
|
+
# Relates to the GOP structure. If you do not know what GOP is, use
|
11760
|
+
# the default. FIXED: Set the number of B-frames in each sub-GOP to
|
11761
|
+
# the value in gopNumBFrames. DYNAMIC: Let MediaLive optimize the
|
11762
|
+
# number of B-frames in each sub-GOP, to improve visual quality.
|
11763
|
+
# @return [String]
|
11764
|
+
#
|
11765
|
+
# @!attribute [rw] timecode_insertion
|
11766
|
+
# Determines how MediaLive inserts timecodes in the output video. For
|
11767
|
+
# detailed information about setting up the input and the output for a
|
11768
|
+
# timecode, see the section on \\"MediaLive Features - Timecode
|
11769
|
+
# configuration\\" in the MediaLive User Guide. DISABLED: do not
|
11770
|
+
# include timecodes. GOP\_TIMECODE: Include timecode metadata in the
|
11771
|
+
# GOP header.
|
11772
|
+
# @return [String]
|
11773
|
+
#
|
11774
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mpeg2Settings AWS API Documentation
|
11775
|
+
#
|
11776
|
+
class Mpeg2Settings < Struct.new(
|
11777
|
+
:adaptive_quantization,
|
11778
|
+
:afd_signaling,
|
11779
|
+
:color_metadata,
|
11780
|
+
:color_space,
|
11781
|
+
:display_aspect_ratio,
|
11782
|
+
:filter_settings,
|
11783
|
+
:fixed_afd,
|
11784
|
+
:framerate_denominator,
|
11785
|
+
:framerate_numerator,
|
11786
|
+
:gop_closed_cadence,
|
11787
|
+
:gop_num_b_frames,
|
11788
|
+
:gop_size,
|
11789
|
+
:gop_size_units,
|
11790
|
+
:scan_type,
|
11791
|
+
:subgop_length,
|
11792
|
+
:timecode_insertion)
|
11793
|
+
SENSITIVE = []
|
11794
|
+
include Aws::Structure
|
11795
|
+
end
|
11796
|
+
|
11797
|
+
# Ms Smooth Group Settings
|
11798
|
+
#
|
11799
|
+
# @note When making an API call, you may pass MsSmoothGroupSettings
|
11800
|
+
# data as a hash:
|
11801
|
+
#
|
11802
|
+
# {
|
11803
|
+
# acquisition_point_id: "__string",
|
11804
|
+
# audio_only_timecode_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED_CLOCK
|
11805
|
+
# certificate_mode: "SELF_SIGNED", # accepts SELF_SIGNED, VERIFY_AUTHENTICITY
|
11806
|
+
# connection_retry_interval: 1,
|
11807
|
+
# destination: { # required
|
11808
|
+
# destination_ref_id: "__string",
|
11809
|
+
# },
|
11810
|
+
# event_id: "__string",
|
11811
|
+
# event_id_mode: "NO_EVENT_ID", # accepts NO_EVENT_ID, USE_CONFIGURED, USE_TIMESTAMP
|
11160
11812
|
# event_stop_behavior: "NONE", # accepts NONE, SEND_EOS
|
11161
11813
|
# filecache_duration: 1,
|
11162
11814
|
# fragment_length: 1,
|
@@ -11483,6 +12135,14 @@ module Aws::MediaLive
|
|
11483
12135
|
# The packet identifier map for this multiplex program.
|
11484
12136
|
# @return [Types::MultiplexProgramPacketIdentifiersMap]
|
11485
12137
|
#
|
12138
|
+
# @!attribute [rw] pipeline_details
|
12139
|
+
# Contains information about the current sources for the specified
|
12140
|
+
# program in the specified multiplex. Keep in mind that each multiplex
|
12141
|
+
# pipeline connects to both pipelines in a given source channel (the
|
12142
|
+
# channel identified by the program). But only one of those channel
|
12143
|
+
# pipelines is ever active at one time.
|
12144
|
+
# @return [Array<Types::MultiplexProgramPipelineDetail>]
|
12145
|
+
#
|
11486
12146
|
# @!attribute [rw] program_name
|
11487
12147
|
# The name of the multiplex program.
|
11488
12148
|
# @return [String]
|
@@ -11493,6 +12153,7 @@ module Aws::MediaLive
|
|
11493
12153
|
:channel_id,
|
11494
12154
|
:multiplex_program_settings,
|
11495
12155
|
:packet_identifiers_map,
|
12156
|
+
:pipeline_details,
|
11496
12157
|
:program_name)
|
11497
12158
|
SENSITIVE = []
|
11498
12159
|
include Aws::Structure
|
@@ -11592,6 +12253,26 @@ module Aws::MediaLive
|
|
11592
12253
|
include Aws::Structure
|
11593
12254
|
end
|
11594
12255
|
|
12256
|
+
# The current source for one of the pipelines in the multiplex.
|
12257
|
+
#
|
12258
|
+
# @!attribute [rw] active_channel_pipeline
|
12259
|
+
# Identifies the channel pipeline that is currently active for the
|
12260
|
+
# pipeline (identified by PipelineId) in the multiplex.
|
12261
|
+
# @return [String]
|
12262
|
+
#
|
12263
|
+
# @!attribute [rw] pipeline_id
|
12264
|
+
# Identifies a specific pipeline in the multiplex.
|
12265
|
+
# @return [String]
|
12266
|
+
#
|
12267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexProgramPipelineDetail AWS API Documentation
|
12268
|
+
#
|
12269
|
+
class MultiplexProgramPipelineDetail < Struct.new(
|
12270
|
+
:active_channel_pipeline,
|
12271
|
+
:pipeline_id)
|
12272
|
+
SENSITIVE = []
|
12273
|
+
include Aws::Structure
|
12274
|
+
end
|
12275
|
+
|
11595
12276
|
# Transport stream service descriptor configuration for the Multiplex
|
11596
12277
|
# program.
|
11597
12278
|
#
|
@@ -11637,6 +12318,7 @@ module Aws::MediaLive
|
|
11637
12318
|
# statmux_settings: {
|
11638
12319
|
# maximum_bitrate: 1,
|
11639
12320
|
# minimum_bitrate: 1,
|
12321
|
+
# priority: 1,
|
11640
12322
|
# },
|
11641
12323
|
# },
|
11642
12324
|
# }
|
@@ -11748,6 +12430,7 @@ module Aws::MediaLive
|
|
11748
12430
|
# {
|
11749
12431
|
# maximum_bitrate: 1,
|
11750
12432
|
# minimum_bitrate: 1,
|
12433
|
+
# priority: 1,
|
11751
12434
|
# }
|
11752
12435
|
#
|
11753
12436
|
# @!attribute [rw] maximum_bitrate
|
@@ -11758,11 +12441,21 @@ module Aws::MediaLive
|
|
11758
12441
|
# Minimum statmux bitrate.
|
11759
12442
|
# @return [Integer]
|
11760
12443
|
#
|
12444
|
+
# @!attribute [rw] priority
|
12445
|
+
# The purpose of the priority is to use a combination of
|
12446
|
+
# the\\nmultiplex rate control algorithm and the QVBR capability of
|
12447
|
+
# the\\nencoder to prioritize the video quality of some channels in
|
12448
|
+
# a\\nmultiplex over others. Channels that have a higher priority
|
12449
|
+
# will\\nget higher video quality at the expense of the video quality
|
12450
|
+
# of\\nother channels in the multiplex with lower priority.
|
12451
|
+
# @return [Integer]
|
12452
|
+
#
|
11761
12453
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexStatmuxVideoSettings AWS API Documentation
|
11762
12454
|
#
|
11763
12455
|
class MultiplexStatmuxVideoSettings < Struct.new(
|
11764
12456
|
:maximum_bitrate,
|
11765
|
-
:minimum_bitrate
|
12457
|
+
:minimum_bitrate,
|
12458
|
+
:priority)
|
11766
12459
|
SENSITIVE = []
|
11767
12460
|
include Aws::Structure
|
11768
12461
|
end
|
@@ -11829,6 +12522,7 @@ module Aws::MediaLive
|
|
11829
12522
|
# statmux_settings: {
|
11830
12523
|
# maximum_bitrate: 1,
|
11831
12524
|
# minimum_bitrate: 1,
|
12525
|
+
# priority: 1,
|
11832
12526
|
# },
|
11833
12527
|
# }
|
11834
12528
|
#
|
@@ -12068,6 +12762,8 @@ module Aws::MediaLive
|
|
12068
12762
|
# transport_stream_id: 1,
|
12069
12763
|
# video_pid: "__string",
|
12070
12764
|
# },
|
12765
|
+
# raw_settings: {
|
12766
|
+
# },
|
12071
12767
|
# },
|
12072
12768
|
# extension: "__string",
|
12073
12769
|
# name_modifier: "__string",
|
@@ -12381,6 +13077,7 @@ module Aws::MediaLive
|
|
12381
13077
|
# destination_ref_id: "__string",
|
12382
13078
|
# },
|
12383
13079
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
13080
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
12384
13081
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
12385
13082
|
# hls_cdn_settings: {
|
12386
13083
|
# hls_akamai_settings: {
|
@@ -12415,6 +13112,7 @@ module Aws::MediaLive
|
|
12415
13112
|
# },
|
12416
13113
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
12417
13114
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
13115
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
12418
13116
|
# index_n_segments: 1,
|
12419
13117
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
12420
13118
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -12480,6 +13178,7 @@ module Aws::MediaLive
|
|
12480
13178
|
# multiplex_group_settings: {
|
12481
13179
|
# },
|
12482
13180
|
# rtmp_group_settings: {
|
13181
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
12483
13182
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
12484
13183
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
12485
13184
|
# cache_length: 1,
|
@@ -12561,6 +13260,8 @@ module Aws::MediaLive
|
|
12561
13260
|
# transport_stream_id: 1,
|
12562
13261
|
# video_pid: "__string",
|
12563
13262
|
# },
|
13263
|
+
# raw_settings: {
|
13264
|
+
# },
|
12564
13265
|
# },
|
12565
13266
|
# extension: "__string",
|
12566
13267
|
# name_modifier: "__string",
|
@@ -12771,6 +13472,7 @@ module Aws::MediaLive
|
|
12771
13472
|
# destination_ref_id: "__string",
|
12772
13473
|
# },
|
12773
13474
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
13475
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
12774
13476
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
12775
13477
|
# hls_cdn_settings: {
|
12776
13478
|
# hls_akamai_settings: {
|
@@ -12805,6 +13507,7 @@ module Aws::MediaLive
|
|
12805
13507
|
# },
|
12806
13508
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
12807
13509
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
13510
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
12808
13511
|
# index_n_segments: 1,
|
12809
13512
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
12810
13513
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -12870,6 +13573,7 @@ module Aws::MediaLive
|
|
12870
13573
|
# multiplex_group_settings: {
|
12871
13574
|
# },
|
12872
13575
|
# rtmp_group_settings: {
|
13576
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
12873
13577
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
12874
13578
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
12875
13579
|
# cache_length: 1,
|
@@ -13019,6 +13723,8 @@ module Aws::MediaLive
|
|
13019
13723
|
# transport_stream_id: 1,
|
13020
13724
|
# video_pid: "__string",
|
13021
13725
|
# },
|
13726
|
+
# raw_settings: {
|
13727
|
+
# },
|
13022
13728
|
# },
|
13023
13729
|
# extension: "__string",
|
13024
13730
|
# name_modifier: "__string",
|
@@ -13401,6 +14107,14 @@ module Aws::MediaLive
|
|
13401
14107
|
include Aws::Structure
|
13402
14108
|
end
|
13403
14109
|
|
14110
|
+
# Raw Settings
|
14111
|
+
#
|
14112
|
+
# @api private
|
14113
|
+
#
|
14114
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RawSettings AWS API Documentation
|
14115
|
+
#
|
14116
|
+
class RawSettings < Aws::EmptyStructure; end
|
14117
|
+
|
13404
14118
|
# Rec601 Settings
|
13405
14119
|
#
|
13406
14120
|
# @api private
|
@@ -13417,6 +14131,28 @@ module Aws::MediaLive
|
|
13417
14131
|
#
|
13418
14132
|
class Rec709Settings < Aws::EmptyStructure; end
|
13419
14133
|
|
14134
|
+
# @note When making an API call, you may pass RejectInputDeviceTransferRequest
|
14135
|
+
# data as a hash:
|
14136
|
+
#
|
14137
|
+
# {
|
14138
|
+
# input_device_id: "__string", # required
|
14139
|
+
# }
|
14140
|
+
#
|
14141
|
+
# @!attribute [rw] input_device_id
|
14142
|
+
# @return [String]
|
14143
|
+
#
|
14144
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransferRequest AWS API Documentation
|
14145
|
+
#
|
14146
|
+
class RejectInputDeviceTransferRequest < Struct.new(
|
14147
|
+
:input_device_id)
|
14148
|
+
SENSITIVE = []
|
14149
|
+
include Aws::Structure
|
14150
|
+
end
|
14151
|
+
|
14152
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransferResponse AWS API Documentation
|
14153
|
+
#
|
14154
|
+
class RejectInputDeviceTransferResponse < Aws::EmptyStructure; end
|
14155
|
+
|
13420
14156
|
# Remix Settings
|
13421
14157
|
#
|
13422
14158
|
# @note When making an API call, you may pass RemixSettings
|
@@ -13652,6 +14388,7 @@ module Aws::MediaLive
|
|
13652
14388
|
# data as a hash:
|
13653
14389
|
#
|
13654
14390
|
# {
|
14391
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
13655
14392
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
13656
14393
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
13657
14394
|
# cache_length: 1,
|
@@ -13660,6 +14397,12 @@ module Aws::MediaLive
|
|
13660
14397
|
# restart_delay: 1,
|
13661
14398
|
# }
|
13662
14399
|
#
|
14400
|
+
# @!attribute [rw] ad_markers
|
14401
|
+
# Choose the ad marker type for this output group. MediaLive will
|
14402
|
+
# create a message based on the content of each SCTE-35 message,
|
14403
|
+
# format it for that marker type, and insert it in the datastream.
|
14404
|
+
# @return [Array<String>]
|
14405
|
+
#
|
13663
14406
|
# @!attribute [rw] authentication_scheme
|
13664
14407
|
# Authentication scheme to use when connecting with CDN
|
13665
14408
|
# @return [String]
|
@@ -13704,6 +14447,7 @@ module Aws::MediaLive
|
|
13704
14447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RtmpGroupSettings AWS API Documentation
|
13705
14448
|
#
|
13706
14449
|
class RtmpGroupSettings < Struct.new(
|
14450
|
+
:ad_markers,
|
13707
14451
|
:authentication_scheme,
|
13708
14452
|
:cache_full_behavior,
|
13709
14453
|
:cache_length,
|
@@ -14682,6 +15426,9 @@ module Aws::MediaLive
|
|
14682
15426
|
# @!attribute [rw] arn
|
14683
15427
|
# @return [String]
|
14684
15428
|
#
|
15429
|
+
# @!attribute [rw] cdi_input_specification
|
15430
|
+
# @return [Types::CdiInputSpecification]
|
15431
|
+
#
|
14685
15432
|
# @!attribute [rw] channel_class
|
14686
15433
|
# A standard channel has two encoding pipelines and a single pipeline
|
14687
15434
|
# channel only has one.
|
@@ -14732,6 +15479,7 @@ module Aws::MediaLive
|
|
14732
15479
|
#
|
14733
15480
|
class StartChannelResponse < Struct.new(
|
14734
15481
|
:arn,
|
15482
|
+
:cdi_input_specification,
|
14735
15483
|
:channel_class,
|
14736
15484
|
:destinations,
|
14737
15485
|
:egress_endpoints,
|
@@ -15024,6 +15772,9 @@ module Aws::MediaLive
|
|
15024
15772
|
# @!attribute [rw] arn
|
15025
15773
|
# @return [String]
|
15026
15774
|
#
|
15775
|
+
# @!attribute [rw] cdi_input_specification
|
15776
|
+
# @return [Types::CdiInputSpecification]
|
15777
|
+
#
|
15027
15778
|
# @!attribute [rw] channel_class
|
15028
15779
|
# A standard channel has two encoding pipelines and a single pipeline
|
15029
15780
|
# channel only has one.
|
@@ -15074,6 +15825,7 @@ module Aws::MediaLive
|
|
15074
15825
|
#
|
15075
15826
|
class StopChannelResponse < Struct.new(
|
15076
15827
|
:arn,
|
15828
|
+
:cdi_input_specification,
|
15077
15829
|
:channel_class,
|
15078
15830
|
:destinations,
|
15079
15831
|
:egress_endpoints,
|
@@ -15266,6 +16018,22 @@ module Aws::MediaLive
|
|
15266
16018
|
include Aws::Structure
|
15267
16019
|
end
|
15268
16020
|
|
16021
|
+
# The binary data for the thumbnail that the Link device has most
|
16022
|
+
# recently sent to MediaLive.
|
16023
|
+
#
|
16024
|
+
# @!attribute [rw] body
|
16025
|
+
# The binary data for the thumbnail that the Link device has most
|
16026
|
+
# recently sent to MediaLive.
|
16027
|
+
# @return [String]
|
16028
|
+
#
|
16029
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ThumbnailData AWS API Documentation
|
16030
|
+
#
|
16031
|
+
class ThumbnailData < Struct.new(
|
16032
|
+
:body)
|
16033
|
+
SENSITIVE = []
|
16034
|
+
include Aws::Structure
|
16035
|
+
end
|
16036
|
+
|
15269
16037
|
# Timecode Config
|
15270
16038
|
#
|
15271
16039
|
# @note When making an API call, you may pass TimecodeConfig
|
@@ -15313,6 +16081,87 @@ module Aws::MediaLive
|
|
15313
16081
|
include Aws::Structure
|
15314
16082
|
end
|
15315
16083
|
|
16084
|
+
# The transfer details of the input device.
|
16085
|
+
#
|
16086
|
+
# @!attribute [rw] target_customer_id
|
16087
|
+
# The AWS account ID (12 digits) for the recipient of the device
|
16088
|
+
# transfer.
|
16089
|
+
# @return [String]
|
16090
|
+
#
|
16091
|
+
# @!attribute [rw] transfer_message
|
16092
|
+
# An optional message for the recipient. Maximum 280 characters.
|
16093
|
+
# @return [String]
|
16094
|
+
#
|
16095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDevice AWS API Documentation
|
16096
|
+
#
|
16097
|
+
class TransferInputDevice < Struct.new(
|
16098
|
+
:target_customer_id,
|
16099
|
+
:transfer_message)
|
16100
|
+
SENSITIVE = []
|
16101
|
+
include Aws::Structure
|
16102
|
+
end
|
16103
|
+
|
16104
|
+
# @note When making an API call, you may pass TransferInputDeviceRequest
|
16105
|
+
# data as a hash:
|
16106
|
+
#
|
16107
|
+
# {
|
16108
|
+
# input_device_id: "__string", # required
|
16109
|
+
# target_customer_id: "__string",
|
16110
|
+
# transfer_message: "__string",
|
16111
|
+
# }
|
16112
|
+
#
|
16113
|
+
# @!attribute [rw] input_device_id
|
16114
|
+
# @return [String]
|
16115
|
+
#
|
16116
|
+
# @!attribute [rw] target_customer_id
|
16117
|
+
# @return [String]
|
16118
|
+
#
|
16119
|
+
# @!attribute [rw] transfer_message
|
16120
|
+
# @return [String]
|
16121
|
+
#
|
16122
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDeviceRequest AWS API Documentation
|
16123
|
+
#
|
16124
|
+
class TransferInputDeviceRequest < Struct.new(
|
16125
|
+
:input_device_id,
|
16126
|
+
:target_customer_id,
|
16127
|
+
:transfer_message)
|
16128
|
+
SENSITIVE = []
|
16129
|
+
include Aws::Structure
|
16130
|
+
end
|
16131
|
+
|
16132
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDeviceResponse AWS API Documentation
|
16133
|
+
#
|
16134
|
+
class TransferInputDeviceResponse < Aws::EmptyStructure; end
|
16135
|
+
|
16136
|
+
# Details about the input device that is being transferred.
|
16137
|
+
#
|
16138
|
+
# @!attribute [rw] id
|
16139
|
+
# The unique ID of the input device.
|
16140
|
+
# @return [String]
|
16141
|
+
#
|
16142
|
+
# @!attribute [rw] message
|
16143
|
+
# The optional message that the sender has attached to the transfer.
|
16144
|
+
# @return [String]
|
16145
|
+
#
|
16146
|
+
# @!attribute [rw] target_customer_id
|
16147
|
+
# The AWS account ID for the recipient of the input device transfer.
|
16148
|
+
# @return [String]
|
16149
|
+
#
|
16150
|
+
# @!attribute [rw] transfer_type
|
16151
|
+
# The type (direction) of the input device transfer.
|
16152
|
+
# @return [String]
|
16153
|
+
#
|
16154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferringInputDeviceSummary AWS API Documentation
|
16155
|
+
#
|
16156
|
+
class TransferringInputDeviceSummary < Struct.new(
|
16157
|
+
:id,
|
16158
|
+
:message,
|
16159
|
+
:target_customer_id,
|
16160
|
+
:transfer_type)
|
16161
|
+
SENSITIVE = []
|
16162
|
+
include Aws::Structure
|
16163
|
+
end
|
16164
|
+
|
15316
16165
|
# Ttml Destination Settings
|
15317
16166
|
#
|
15318
16167
|
# @note When making an API call, you may pass TtmlDestinationSettings
|
@@ -15584,6 +16433,10 @@ module Aws::MediaLive
|
|
15584
16433
|
include Aws::Structure
|
15585
16434
|
end
|
15586
16435
|
|
16436
|
+
# @!attribute [rw] cdi_input_specification
|
16437
|
+
# Specification of CDI inputs for this channel
|
16438
|
+
# @return [Types::CdiInputSpecification]
|
16439
|
+
#
|
15587
16440
|
# @!attribute [rw] destinations
|
15588
16441
|
# A list of output destinations for this channel.
|
15589
16442
|
# @return [Array<Types::OutputDestination>]
|
@@ -15596,8 +16449,7 @@ module Aws::MediaLive
|
|
15596
16449
|
# @return [Array<Types::InputAttachment>]
|
15597
16450
|
#
|
15598
16451
|
# @!attribute [rw] input_specification
|
15599
|
-
# Specification of
|
15600
|
-
# codec, etc.)
|
16452
|
+
# Specification of network and file inputs for this channel
|
15601
16453
|
# @return [Types::InputSpecification]
|
15602
16454
|
#
|
15603
16455
|
# @!attribute [rw] log_level
|
@@ -15617,6 +16469,7 @@ module Aws::MediaLive
|
|
15617
16469
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
|
15618
16470
|
#
|
15619
16471
|
class UpdateChannel < Struct.new(
|
16472
|
+
:cdi_input_specification,
|
15620
16473
|
:destinations,
|
15621
16474
|
:encoder_settings,
|
15622
16475
|
:input_attachments,
|
@@ -15711,6 +16564,9 @@ module Aws::MediaLive
|
|
15711
16564
|
# data as a hash:
|
15712
16565
|
#
|
15713
16566
|
# {
|
16567
|
+
# cdi_input_specification: {
|
16568
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
16569
|
+
# },
|
15714
16570
|
# channel_id: "__string", # required
|
15715
16571
|
# destinations: [
|
15716
16572
|
# {
|
@@ -15795,6 +16651,11 @@ module Aws::MediaLive
|
|
15795
16651
|
# },
|
15796
16652
|
# pass_through_settings: {
|
15797
16653
|
# },
|
16654
|
+
# wav_settings: {
|
16655
|
+
# bit_depth: 1.0,
|
16656
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
16657
|
+
# sample_rate: 1.0,
|
16658
|
+
# },
|
15798
16659
|
# },
|
15799
16660
|
# language_code: "__stringMin1Max35",
|
15800
16661
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -15997,6 +16858,7 @@ module Aws::MediaLive
|
|
15997
16858
|
# destination_ref_id: "__string",
|
15998
16859
|
# },
|
15999
16860
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
16861
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
16000
16862
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
16001
16863
|
# hls_cdn_settings: {
|
16002
16864
|
# hls_akamai_settings: {
|
@@ -16031,6 +16893,7 @@ module Aws::MediaLive
|
|
16031
16893
|
# },
|
16032
16894
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
16033
16895
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
16896
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
16034
16897
|
# index_n_segments: 1,
|
16035
16898
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
16036
16899
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -16096,6 +16959,7 @@ module Aws::MediaLive
|
|
16096
16959
|
# multiplex_group_settings: {
|
16097
16960
|
# },
|
16098
16961
|
# rtmp_group_settings: {
|
16962
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
16099
16963
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
16100
16964
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
16101
16965
|
# cache_length: 1,
|
@@ -16177,6 +17041,8 @@ module Aws::MediaLive
|
|
16177
17041
|
# transport_stream_id: 1,
|
16178
17042
|
# video_pid: "__string",
|
16179
17043
|
# },
|
17044
|
+
# raw_settings: {
|
17045
|
+
# },
|
16180
17046
|
# },
|
16181
17047
|
# extension: "__string",
|
16182
17048
|
# name_modifier: "__string",
|
@@ -16439,6 +17305,29 @@ module Aws::MediaLive
|
|
16439
17305
|
# tier: "HIGH", # accepts HIGH, MAIN
|
16440
17306
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
16441
17307
|
# },
|
17308
|
+
# mpeg_2_settings: {
|
17309
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
17310
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
17311
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
17312
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
17313
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
17314
|
+
# filter_settings: {
|
17315
|
+
# temporal_filter_settings: {
|
17316
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
17317
|
+
# 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
|
17318
|
+
# },
|
17319
|
+
# },
|
17320
|
+
# 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
|
17321
|
+
# framerate_denominator: 1, # required
|
17322
|
+
# framerate_numerator: 1, # required
|
17323
|
+
# gop_closed_cadence: 1,
|
17324
|
+
# gop_num_b_frames: 1,
|
17325
|
+
# gop_size: 1.0,
|
17326
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
17327
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
17328
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
17329
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
17330
|
+
# },
|
16442
17331
|
# },
|
16443
17332
|
# height: 1,
|
16444
17333
|
# name: "__string", # required
|
@@ -16452,6 +17341,16 @@ module Aws::MediaLive
|
|
16452
17341
|
# input_attachments: [
|
16453
17342
|
# {
|
16454
17343
|
# automatic_input_failover_settings: {
|
17344
|
+
# error_clear_time_msec: 1,
|
17345
|
+
# failover_conditions: [
|
17346
|
+
# {
|
17347
|
+
# failover_condition_settings: {
|
17348
|
+
# input_loss_settings: {
|
17349
|
+
# input_loss_threshold_msec: 1,
|
17350
|
+
# },
|
17351
|
+
# },
|
17352
|
+
# },
|
17353
|
+
# ],
|
16455
17354
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
16456
17355
|
# secondary_input_id: "__string", # required
|
16457
17356
|
# },
|
@@ -16484,6 +17383,9 @@ module Aws::MediaLive
|
|
16484
17383
|
# language_code: "__string",
|
16485
17384
|
# name: "__stringMin1", # required
|
16486
17385
|
# selector_settings: {
|
17386
|
+
# ancillary_source_settings: {
|
17387
|
+
# source_ancillary_channel_number: 1,
|
17388
|
+
# },
|
16487
17389
|
# arib_source_settings: {
|
16488
17390
|
# },
|
16489
17391
|
# dvb_sub_source_settings: {
|
@@ -16548,6 +17450,9 @@ module Aws::MediaLive
|
|
16548
17450
|
# role_arn: "__string",
|
16549
17451
|
# }
|
16550
17452
|
#
|
17453
|
+
# @!attribute [rw] cdi_input_specification
|
17454
|
+
# @return [Types::CdiInputSpecification]
|
17455
|
+
#
|
16551
17456
|
# @!attribute [rw] channel_id
|
16552
17457
|
# @return [String]
|
16553
17458
|
#
|
@@ -16577,6 +17482,7 @@ module Aws::MediaLive
|
|
16577
17482
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelRequest AWS API Documentation
|
16578
17483
|
#
|
16579
17484
|
class UpdateChannelRequest < Struct.new(
|
17485
|
+
:cdi_input_specification,
|
16580
17486
|
:channel_id,
|
16581
17487
|
:destinations,
|
16582
17488
|
:encoder_settings,
|
@@ -16729,6 +17635,10 @@ module Aws::MediaLive
|
|
16729
17635
|
# its configuration.
|
16730
17636
|
# @return [String]
|
16731
17637
|
#
|
17638
|
+
# @!attribute [rw] device_update_status
|
17639
|
+
# The status of software on the input device.
|
17640
|
+
# @return [String]
|
17641
|
+
#
|
16732
17642
|
# @!attribute [rw] hd_device_settings
|
16733
17643
|
# Settings that describe the active source from the input device, and
|
16734
17644
|
# the video characteristics of that source.
|
@@ -16761,6 +17671,7 @@ module Aws::MediaLive
|
|
16761
17671
|
:arn,
|
16762
17672
|
:connection_state,
|
16763
17673
|
:device_settings_sync_state,
|
17674
|
+
:device_update_status,
|
16764
17675
|
:hd_device_settings,
|
16765
17676
|
:id,
|
16766
17677
|
:mac_address,
|
@@ -16969,6 +17880,7 @@ module Aws::MediaLive
|
|
16969
17880
|
# statmux_settings: {
|
16970
17881
|
# maximum_bitrate: 1,
|
16971
17882
|
# minimum_bitrate: 1,
|
17883
|
+
# priority: 1,
|
16972
17884
|
# },
|
16973
17885
|
# },
|
16974
17886
|
# },
|
@@ -17269,6 +18181,29 @@ module Aws::MediaLive
|
|
17269
18181
|
# tier: "HIGH", # accepts HIGH, MAIN
|
17270
18182
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
17271
18183
|
# },
|
18184
|
+
# mpeg_2_settings: {
|
18185
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
18186
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
18187
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
18188
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
18189
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
18190
|
+
# filter_settings: {
|
18191
|
+
# temporal_filter_settings: {
|
18192
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
18193
|
+
# 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
|
18194
|
+
# },
|
18195
|
+
# },
|
18196
|
+
# 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
|
18197
|
+
# framerate_denominator: 1, # required
|
18198
|
+
# framerate_numerator: 1, # required
|
18199
|
+
# gop_closed_cadence: 1,
|
18200
|
+
# gop_num_b_frames: 1,
|
18201
|
+
# gop_size: 1.0,
|
18202
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
18203
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
18204
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
18205
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
18206
|
+
# },
|
17272
18207
|
# }
|
17273
18208
|
#
|
17274
18209
|
# @!attribute [rw] frame_capture_settings
|
@@ -17283,12 +18218,17 @@ module Aws::MediaLive
|
|
17283
18218
|
# H265 Settings
|
17284
18219
|
# @return [Types::H265Settings]
|
17285
18220
|
#
|
18221
|
+
# @!attribute [rw] mpeg_2_settings
|
18222
|
+
# Mpeg2 Settings
|
18223
|
+
# @return [Types::Mpeg2Settings]
|
18224
|
+
#
|
17286
18225
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoCodecSettings AWS API Documentation
|
17287
18226
|
#
|
17288
18227
|
class VideoCodecSettings < Struct.new(
|
17289
18228
|
:frame_capture_settings,
|
17290
18229
|
:h264_settings,
|
17291
|
-
:h265_settings
|
18230
|
+
:h265_settings,
|
18231
|
+
:mpeg_2_settings)
|
17292
18232
|
SENSITIVE = []
|
17293
18233
|
include Aws::Structure
|
17294
18234
|
end
|
@@ -17406,6 +18346,29 @@ module Aws::MediaLive
|
|
17406
18346
|
# tier: "HIGH", # accepts HIGH, MAIN
|
17407
18347
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
17408
18348
|
# },
|
18349
|
+
# mpeg_2_settings: {
|
18350
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
18351
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
18352
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
18353
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
18354
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
18355
|
+
# filter_settings: {
|
18356
|
+
# temporal_filter_settings: {
|
18357
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
18358
|
+
# 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
|
18359
|
+
# },
|
18360
|
+
# },
|
18361
|
+
# 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
|
18362
|
+
# framerate_denominator: 1, # required
|
18363
|
+
# framerate_numerator: 1, # required
|
18364
|
+
# gop_closed_cadence: 1,
|
18365
|
+
# gop_num_b_frames: 1,
|
18366
|
+
# gop_size: 1.0,
|
18367
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
18368
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
18369
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
18370
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
18371
|
+
# },
|
17409
18372
|
# },
|
17410
18373
|
# height: 1,
|
17411
18374
|
# name: "__string", # required
|
@@ -17610,6 +18573,40 @@ module Aws::MediaLive
|
|
17610
18573
|
include Aws::Structure
|
17611
18574
|
end
|
17612
18575
|
|
18576
|
+
# Wav Settings
|
18577
|
+
#
|
18578
|
+
# @note When making an API call, you may pass WavSettings
|
18579
|
+
# data as a hash:
|
18580
|
+
#
|
18581
|
+
# {
|
18582
|
+
# bit_depth: 1.0,
|
18583
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
18584
|
+
# sample_rate: 1.0,
|
18585
|
+
# }
|
18586
|
+
#
|
18587
|
+
# @!attribute [rw] bit_depth
|
18588
|
+
# Bits per sample.
|
18589
|
+
# @return [Float]
|
18590
|
+
#
|
18591
|
+
# @!attribute [rw] coding_mode
|
18592
|
+
# The audio coding mode for the WAV audio. The mode determines the
|
18593
|
+
# number of channels in the audio.
|
18594
|
+
# @return [String]
|
18595
|
+
#
|
18596
|
+
# @!attribute [rw] sample_rate
|
18597
|
+
# Sample rate in Hz.
|
18598
|
+
# @return [Float]
|
18599
|
+
#
|
18600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/WavSettings AWS API Documentation
|
18601
|
+
#
|
18602
|
+
class WavSettings < Struct.new(
|
18603
|
+
:bit_depth,
|
18604
|
+
:coding_mode,
|
18605
|
+
:sample_rate)
|
18606
|
+
SENSITIVE = []
|
18607
|
+
include Aws::Structure
|
18608
|
+
end
|
18609
|
+
|
17613
18610
|
# Webvtt Destination Settings
|
17614
18611
|
#
|
17615
18612
|
# @api private
|