aws-sdk-medialive 1.114.0 → 1.116.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +713 -1
- data/lib/aws-sdk-medialive/client_api.rb +47 -0
- data/lib/aws-sdk-medialive/endpoints.rb +14 -0
- data/lib/aws-sdk-medialive/plugins/endpoints.rb +3 -0
- data/lib/aws-sdk-medialive/types.rb +118 -6
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +3452 -0
- data/sig/errors.rbs +44 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +3495 -0
- data/sig/waiters.rbs +123 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,3452 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module MediaLive
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _AcceptInputDeviceTransferResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AcceptInputDeviceTransferResponse]
|
77
|
+
end
|
78
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#accept_input_device_transfer-instance_method
|
79
|
+
def accept_input_device_transfer: (
|
80
|
+
input_device_id: ::String
|
81
|
+
) -> _AcceptInputDeviceTransferResponseSuccess
|
82
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptInputDeviceTransferResponseSuccess
|
83
|
+
|
84
|
+
interface _BatchDeleteResponseSuccess
|
85
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteResponse]
|
86
|
+
def failed: () -> ::Array[Types::BatchFailedResultModel]
|
87
|
+
def successful: () -> ::Array[Types::BatchSuccessfulResultModel]
|
88
|
+
end
|
89
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#batch_delete-instance_method
|
90
|
+
def batch_delete: (
|
91
|
+
?channel_ids: Array[::String],
|
92
|
+
?input_ids: Array[::String],
|
93
|
+
?input_security_group_ids: Array[::String],
|
94
|
+
?multiplex_ids: Array[::String]
|
95
|
+
) -> _BatchDeleteResponseSuccess
|
96
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteResponseSuccess
|
97
|
+
|
98
|
+
interface _BatchStartResponseSuccess
|
99
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchStartResponse]
|
100
|
+
def failed: () -> ::Array[Types::BatchFailedResultModel]
|
101
|
+
def successful: () -> ::Array[Types::BatchSuccessfulResultModel]
|
102
|
+
end
|
103
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#batch_start-instance_method
|
104
|
+
def batch_start: (
|
105
|
+
?channel_ids: Array[::String],
|
106
|
+
?multiplex_ids: Array[::String]
|
107
|
+
) -> _BatchStartResponseSuccess
|
108
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchStartResponseSuccess
|
109
|
+
|
110
|
+
interface _BatchStopResponseSuccess
|
111
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchStopResponse]
|
112
|
+
def failed: () -> ::Array[Types::BatchFailedResultModel]
|
113
|
+
def successful: () -> ::Array[Types::BatchSuccessfulResultModel]
|
114
|
+
end
|
115
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#batch_stop-instance_method
|
116
|
+
def batch_stop: (
|
117
|
+
?channel_ids: Array[::String],
|
118
|
+
?multiplex_ids: Array[::String]
|
119
|
+
) -> _BatchStopResponseSuccess
|
120
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchStopResponseSuccess
|
121
|
+
|
122
|
+
interface _BatchUpdateScheduleResponseSuccess
|
123
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchUpdateScheduleResponse]
|
124
|
+
def creates: () -> Types::BatchScheduleActionCreateResult
|
125
|
+
def deletes: () -> Types::BatchScheduleActionDeleteResult
|
126
|
+
end
|
127
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#batch_update_schedule-instance_method
|
128
|
+
def batch_update_schedule: (
|
129
|
+
channel_id: ::String,
|
130
|
+
?creates: {
|
131
|
+
schedule_actions: Array[
|
132
|
+
{
|
133
|
+
action_name: ::String,
|
134
|
+
schedule_action_settings: {
|
135
|
+
hls_id_3_segment_tagging_settings: {
|
136
|
+
tag: ::String?,
|
137
|
+
id_3: ::String?
|
138
|
+
}?,
|
139
|
+
hls_timed_metadata_settings: {
|
140
|
+
id_3: ::String
|
141
|
+
}?,
|
142
|
+
input_prepare_settings: {
|
143
|
+
input_attachment_name_reference: ::String?,
|
144
|
+
input_clipping_settings: {
|
145
|
+
input_timecode_source: ("ZEROBASED" | "EMBEDDED"),
|
146
|
+
start_timecode: {
|
147
|
+
timecode: ::String?
|
148
|
+
}?,
|
149
|
+
stop_timecode: {
|
150
|
+
last_frame_clipping_behavior: ("EXCLUDE_LAST_FRAME" | "INCLUDE_LAST_FRAME")?,
|
151
|
+
timecode: ::String?
|
152
|
+
}?
|
153
|
+
}?,
|
154
|
+
url_path: Array[::String]?
|
155
|
+
}?,
|
156
|
+
input_switch_settings: {
|
157
|
+
input_attachment_name_reference: ::String,
|
158
|
+
input_clipping_settings: {
|
159
|
+
input_timecode_source: ("ZEROBASED" | "EMBEDDED"),
|
160
|
+
start_timecode: {
|
161
|
+
timecode: ::String?
|
162
|
+
}?,
|
163
|
+
stop_timecode: {
|
164
|
+
last_frame_clipping_behavior: ("EXCLUDE_LAST_FRAME" | "INCLUDE_LAST_FRAME")?,
|
165
|
+
timecode: ::String?
|
166
|
+
}?
|
167
|
+
}?,
|
168
|
+
url_path: Array[::String]?
|
169
|
+
}?,
|
170
|
+
motion_graphics_image_activate_settings: {
|
171
|
+
duration: ::Integer?,
|
172
|
+
password_param: ::String?,
|
173
|
+
url: ::String?,
|
174
|
+
username: ::String?
|
175
|
+
}?,
|
176
|
+
motion_graphics_image_deactivate_settings: {
|
177
|
+
}?,
|
178
|
+
pause_state_settings: {
|
179
|
+
pipelines: Array[
|
180
|
+
{
|
181
|
+
pipeline_id: ("PIPELINE_0" | "PIPELINE_1")
|
182
|
+
},
|
183
|
+
]?
|
184
|
+
}?,
|
185
|
+
scte_35_input_settings: {
|
186
|
+
input_attachment_name_reference: ::String?,
|
187
|
+
mode: ("FIXED" | "FOLLOW_ACTIVE")
|
188
|
+
}?,
|
189
|
+
scte_35_return_to_network_settings: {
|
190
|
+
splice_event_id: ::Integer
|
191
|
+
}?,
|
192
|
+
scte_35_splice_insert_settings: {
|
193
|
+
duration: ::Integer?,
|
194
|
+
splice_event_id: ::Integer
|
195
|
+
}?,
|
196
|
+
scte_35_time_signal_settings: {
|
197
|
+
scte_35_descriptors: Array[
|
198
|
+
{
|
199
|
+
scte_35_descriptor_settings: {
|
200
|
+
segmentation_descriptor_scte_35_descriptor_settings: {
|
201
|
+
delivery_restrictions: {
|
202
|
+
archive_allowed_flag: ("ARCHIVE_NOT_ALLOWED" | "ARCHIVE_ALLOWED"),
|
203
|
+
device_restrictions: ("NONE" | "RESTRICT_GROUP0" | "RESTRICT_GROUP1" | "RESTRICT_GROUP2"),
|
204
|
+
no_regional_blackout_flag: ("REGIONAL_BLACKOUT" | "NO_REGIONAL_BLACKOUT"),
|
205
|
+
web_delivery_allowed_flag: ("WEB_DELIVERY_NOT_ALLOWED" | "WEB_DELIVERY_ALLOWED")
|
206
|
+
}?,
|
207
|
+
segment_num: ::Integer?,
|
208
|
+
segmentation_cancel_indicator: ("SEGMENTATION_EVENT_NOT_CANCELED" | "SEGMENTATION_EVENT_CANCELED"),
|
209
|
+
segmentation_duration: ::Integer?,
|
210
|
+
segmentation_event_id: ::Integer,
|
211
|
+
segmentation_type_id: ::Integer?,
|
212
|
+
segmentation_upid: ::String?,
|
213
|
+
segmentation_upid_type: ::Integer?,
|
214
|
+
segments_expected: ::Integer?,
|
215
|
+
sub_segment_num: ::Integer?,
|
216
|
+
sub_segments_expected: ::Integer?
|
217
|
+
}
|
218
|
+
}
|
219
|
+
},
|
220
|
+
]
|
221
|
+
}?,
|
222
|
+
static_image_activate_settings: {
|
223
|
+
duration: ::Integer?,
|
224
|
+
fade_in: ::Integer?,
|
225
|
+
fade_out: ::Integer?,
|
226
|
+
height: ::Integer?,
|
227
|
+
image: {
|
228
|
+
password_param: ::String?,
|
229
|
+
uri: ::String,
|
230
|
+
username: ::String?
|
231
|
+
},
|
232
|
+
image_x: ::Integer?,
|
233
|
+
image_y: ::Integer?,
|
234
|
+
layer: ::Integer?,
|
235
|
+
opacity: ::Integer?,
|
236
|
+
width: ::Integer?
|
237
|
+
}?,
|
238
|
+
static_image_deactivate_settings: {
|
239
|
+
fade_out: ::Integer?,
|
240
|
+
layer: ::Integer?
|
241
|
+
}?,
|
242
|
+
static_image_output_activate_settings: {
|
243
|
+
duration: ::Integer?,
|
244
|
+
fade_in: ::Integer?,
|
245
|
+
fade_out: ::Integer?,
|
246
|
+
height: ::Integer?,
|
247
|
+
image: {
|
248
|
+
password_param: ::String?,
|
249
|
+
uri: ::String,
|
250
|
+
username: ::String?
|
251
|
+
},
|
252
|
+
image_x: ::Integer?,
|
253
|
+
image_y: ::Integer?,
|
254
|
+
layer: ::Integer?,
|
255
|
+
opacity: ::Integer?,
|
256
|
+
output_names: Array[::String],
|
257
|
+
width: ::Integer?
|
258
|
+
}?,
|
259
|
+
static_image_output_deactivate_settings: {
|
260
|
+
fade_out: ::Integer?,
|
261
|
+
layer: ::Integer?,
|
262
|
+
output_names: Array[::String]
|
263
|
+
}?
|
264
|
+
},
|
265
|
+
schedule_action_start_settings: {
|
266
|
+
fixed_mode_schedule_action_start_settings: {
|
267
|
+
time: ::String
|
268
|
+
}?,
|
269
|
+
follow_mode_schedule_action_start_settings: {
|
270
|
+
follow_point: ("END" | "START"),
|
271
|
+
reference_action_name: ::String
|
272
|
+
}?,
|
273
|
+
immediate_mode_schedule_action_start_settings: {
|
274
|
+
}?
|
275
|
+
}
|
276
|
+
},
|
277
|
+
]
|
278
|
+
},
|
279
|
+
?deletes: {
|
280
|
+
action_names: Array[::String]
|
281
|
+
}
|
282
|
+
) -> _BatchUpdateScheduleResponseSuccess
|
283
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchUpdateScheduleResponseSuccess
|
284
|
+
|
285
|
+
interface _CancelInputDeviceTransferResponseSuccess
|
286
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelInputDeviceTransferResponse]
|
287
|
+
end
|
288
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#cancel_input_device_transfer-instance_method
|
289
|
+
def cancel_input_device_transfer: (
|
290
|
+
input_device_id: ::String
|
291
|
+
) -> _CancelInputDeviceTransferResponseSuccess
|
292
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelInputDeviceTransferResponseSuccess
|
293
|
+
|
294
|
+
interface _ClaimDeviceResponseSuccess
|
295
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ClaimDeviceResponse]
|
296
|
+
end
|
297
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#claim_device-instance_method
|
298
|
+
def claim_device: (
|
299
|
+
?id: ::String
|
300
|
+
) -> _ClaimDeviceResponseSuccess
|
301
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ClaimDeviceResponseSuccess
|
302
|
+
|
303
|
+
interface _CreateChannelResponseSuccess
|
304
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateChannelResponse]
|
305
|
+
def channel: () -> Types::Channel
|
306
|
+
end
|
307
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#create_channel-instance_method
|
308
|
+
def create_channel: (
|
309
|
+
?cdi_input_specification: {
|
310
|
+
resolution: ("SD" | "HD" | "FHD" | "UHD")?
|
311
|
+
},
|
312
|
+
?channel_class: ("STANDARD" | "SINGLE_PIPELINE"),
|
313
|
+
?destinations: Array[
|
314
|
+
{
|
315
|
+
id: ::String?,
|
316
|
+
media_package_settings: Array[
|
317
|
+
{
|
318
|
+
channel_id: ::String?
|
319
|
+
},
|
320
|
+
]?,
|
321
|
+
multiplex_settings: {
|
322
|
+
multiplex_id: ::String?,
|
323
|
+
program_name: ::String?
|
324
|
+
}?,
|
325
|
+
settings: Array[
|
326
|
+
{
|
327
|
+
password_param: ::String?,
|
328
|
+
stream_name: ::String?,
|
329
|
+
url: ::String?,
|
330
|
+
username: ::String?
|
331
|
+
},
|
332
|
+
]?
|
333
|
+
},
|
334
|
+
],
|
335
|
+
?encoder_settings: {
|
336
|
+
audio_descriptions: Array[
|
337
|
+
{
|
338
|
+
audio_normalization_settings: {
|
339
|
+
algorithm: ("ITU_1770_1" | "ITU_1770_2")?,
|
340
|
+
algorithm_control: ("CORRECT_AUDIO")?,
|
341
|
+
target_lkfs: ::Float?
|
342
|
+
}?,
|
343
|
+
audio_selector_name: ::String,
|
344
|
+
audio_type: ("CLEAN_EFFECTS" | "HEARING_IMPAIRED" | "UNDEFINED" | "VISUAL_IMPAIRED_COMMENTARY")?,
|
345
|
+
audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
346
|
+
audio_watermarking_settings: {
|
347
|
+
nielsen_watermarks_settings: {
|
348
|
+
nielsen_cbet_settings: {
|
349
|
+
cbet_check_digit_string: ::String,
|
350
|
+
cbet_stepaside: ("DISABLED" | "ENABLED"),
|
351
|
+
csid: ::String
|
352
|
+
}?,
|
353
|
+
nielsen_distribution_type: ("FINAL_DISTRIBUTOR" | "PROGRAM_CONTENT")?,
|
354
|
+
nielsen_naes_ii_nw_settings: {
|
355
|
+
check_digit_string: ::String,
|
356
|
+
sid: ::Float,
|
357
|
+
timezone: ("AMERICA_PUERTO_RICO" | "US_ALASKA" | "US_ARIZONA" | "US_CENTRAL" | "US_EASTERN" | "US_HAWAII" | "US_MOUNTAIN" | "US_PACIFIC" | "US_SAMOA" | "UTC")?
|
358
|
+
}?
|
359
|
+
}?
|
360
|
+
}?,
|
361
|
+
codec_settings: {
|
362
|
+
aac_settings: {
|
363
|
+
bitrate: ::Float?,
|
364
|
+
coding_mode: ("AD_RECEIVER_MIX" | "CODING_MODE_1_0" | "CODING_MODE_1_1" | "CODING_MODE_2_0" | "CODING_MODE_5_1")?,
|
365
|
+
input_type: ("BROADCASTER_MIXED_AD" | "NORMAL")?,
|
366
|
+
profile: ("HEV1" | "HEV2" | "LC")?,
|
367
|
+
rate_control_mode: ("CBR" | "VBR")?,
|
368
|
+
raw_format: ("LATM_LOAS" | "NONE")?,
|
369
|
+
sample_rate: ::Float?,
|
370
|
+
spec: ("MPEG2" | "MPEG4")?,
|
371
|
+
vbr_quality: ("HIGH" | "LOW" | "MEDIUM_HIGH" | "MEDIUM_LOW")?
|
372
|
+
}?,
|
373
|
+
ac_3_settings: {
|
374
|
+
bitrate: ::Float?,
|
375
|
+
bitstream_mode: ("COMMENTARY" | "COMPLETE_MAIN" | "DIALOGUE" | "EMERGENCY" | "HEARING_IMPAIRED" | "MUSIC_AND_EFFECTS" | "VISUALLY_IMPAIRED" | "VOICE_OVER")?,
|
376
|
+
coding_mode: ("CODING_MODE_1_0" | "CODING_MODE_1_1" | "CODING_MODE_2_0" | "CODING_MODE_3_2_LFE")?,
|
377
|
+
dialnorm: ::Integer?,
|
378
|
+
drc_profile: ("FILM_STANDARD" | "NONE")?,
|
379
|
+
lfe_filter: ("DISABLED" | "ENABLED")?,
|
380
|
+
metadata_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
381
|
+
attenuation_control: ("ATTENUATE_3_DB" | "NONE")?
|
382
|
+
}?,
|
383
|
+
eac_3_atmos_settings: {
|
384
|
+
bitrate: ::Float?,
|
385
|
+
coding_mode: ("CODING_MODE_5_1_4" | "CODING_MODE_7_1_4" | "CODING_MODE_9_1_6")?,
|
386
|
+
dialnorm: ::Integer?,
|
387
|
+
drc_line: ("FILM_LIGHT" | "FILM_STANDARD" | "MUSIC_LIGHT" | "MUSIC_STANDARD" | "NONE" | "SPEECH")?,
|
388
|
+
drc_rf: ("FILM_LIGHT" | "FILM_STANDARD" | "MUSIC_LIGHT" | "MUSIC_STANDARD" | "NONE" | "SPEECH")?,
|
389
|
+
height_trim: ::Float?,
|
390
|
+
surround_trim: ::Float?
|
391
|
+
}?,
|
392
|
+
eac_3_settings: {
|
393
|
+
attenuation_control: ("ATTENUATE_3_DB" | "NONE")?,
|
394
|
+
bitrate: ::Float?,
|
395
|
+
bitstream_mode: ("COMMENTARY" | "COMPLETE_MAIN" | "EMERGENCY" | "HEARING_IMPAIRED" | "VISUALLY_IMPAIRED")?,
|
396
|
+
coding_mode: ("CODING_MODE_1_0" | "CODING_MODE_2_0" | "CODING_MODE_3_2")?,
|
397
|
+
dc_filter: ("DISABLED" | "ENABLED")?,
|
398
|
+
dialnorm: ::Integer?,
|
399
|
+
drc_line: ("FILM_LIGHT" | "FILM_STANDARD" | "MUSIC_LIGHT" | "MUSIC_STANDARD" | "NONE" | "SPEECH")?,
|
400
|
+
drc_rf: ("FILM_LIGHT" | "FILM_STANDARD" | "MUSIC_LIGHT" | "MUSIC_STANDARD" | "NONE" | "SPEECH")?,
|
401
|
+
lfe_control: ("LFE" | "NO_LFE")?,
|
402
|
+
lfe_filter: ("DISABLED" | "ENABLED")?,
|
403
|
+
lo_ro_center_mix_level: ::Float?,
|
404
|
+
lo_ro_surround_mix_level: ::Float?,
|
405
|
+
lt_rt_center_mix_level: ::Float?,
|
406
|
+
lt_rt_surround_mix_level: ::Float?,
|
407
|
+
metadata_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
408
|
+
passthrough_control: ("NO_PASSTHROUGH" | "WHEN_POSSIBLE")?,
|
409
|
+
phase_control: ("NO_SHIFT" | "SHIFT_90_DEGREES")?,
|
410
|
+
stereo_downmix: ("DPL2" | "LO_RO" | "LT_RT" | "NOT_INDICATED")?,
|
411
|
+
surround_ex_mode: ("DISABLED" | "ENABLED" | "NOT_INDICATED")?,
|
412
|
+
surround_mode: ("DISABLED" | "ENABLED" | "NOT_INDICATED")?
|
413
|
+
}?,
|
414
|
+
mp_2_settings: {
|
415
|
+
bitrate: ::Float?,
|
416
|
+
coding_mode: ("CODING_MODE_1_0" | "CODING_MODE_2_0")?,
|
417
|
+
sample_rate: ::Float?
|
418
|
+
}?,
|
419
|
+
pass_through_settings: {
|
420
|
+
}?,
|
421
|
+
wav_settings: {
|
422
|
+
bit_depth: ::Float?,
|
423
|
+
coding_mode: ("CODING_MODE_1_0" | "CODING_MODE_2_0" | "CODING_MODE_4_0" | "CODING_MODE_8_0")?,
|
424
|
+
sample_rate: ::Float?
|
425
|
+
}?
|
426
|
+
}?,
|
427
|
+
language_code: ::String?,
|
428
|
+
language_code_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
429
|
+
name: ::String,
|
430
|
+
remix_settings: {
|
431
|
+
channel_mappings: Array[
|
432
|
+
{
|
433
|
+
input_channel_levels: Array[
|
434
|
+
{
|
435
|
+
gain: ::Integer,
|
436
|
+
input_channel: ::Integer
|
437
|
+
},
|
438
|
+
],
|
439
|
+
output_channel: ::Integer
|
440
|
+
},
|
441
|
+
],
|
442
|
+
channels_in: ::Integer?,
|
443
|
+
channels_out: ::Integer?
|
444
|
+
}?,
|
445
|
+
stream_name: ::String?
|
446
|
+
},
|
447
|
+
],
|
448
|
+
avail_blanking: {
|
449
|
+
avail_blanking_image: {
|
450
|
+
password_param: ::String?,
|
451
|
+
uri: ::String,
|
452
|
+
username: ::String?
|
453
|
+
}?,
|
454
|
+
state: ("DISABLED" | "ENABLED")?
|
455
|
+
}?,
|
456
|
+
avail_configuration: {
|
457
|
+
avail_settings: {
|
458
|
+
esam: {
|
459
|
+
acquisition_point_id: ::String,
|
460
|
+
ad_avail_offset: ::Integer?,
|
461
|
+
password_param: ::String?,
|
462
|
+
pois_endpoint: ::String,
|
463
|
+
username: ::String?,
|
464
|
+
zone_identity: ::String?
|
465
|
+
}?,
|
466
|
+
scte_35_splice_insert: {
|
467
|
+
ad_avail_offset: ::Integer?,
|
468
|
+
no_regional_blackout_flag: ("FOLLOW" | "IGNORE")?,
|
469
|
+
web_delivery_allowed_flag: ("FOLLOW" | "IGNORE")?
|
470
|
+
}?,
|
471
|
+
scte_35_time_signal_apos: {
|
472
|
+
ad_avail_offset: ::Integer?,
|
473
|
+
no_regional_blackout_flag: ("FOLLOW" | "IGNORE")?,
|
474
|
+
web_delivery_allowed_flag: ("FOLLOW" | "IGNORE")?
|
475
|
+
}?
|
476
|
+
}?
|
477
|
+
}?,
|
478
|
+
blackout_slate: {
|
479
|
+
blackout_slate_image: {
|
480
|
+
password_param: ::String?,
|
481
|
+
uri: ::String,
|
482
|
+
username: ::String?
|
483
|
+
}?,
|
484
|
+
network_end_blackout: ("DISABLED" | "ENABLED")?,
|
485
|
+
network_end_blackout_image: {
|
486
|
+
password_param: ::String?,
|
487
|
+
uri: ::String,
|
488
|
+
username: ::String?
|
489
|
+
}?,
|
490
|
+
network_id: ::String?,
|
491
|
+
state: ("DISABLED" | "ENABLED")?
|
492
|
+
}?,
|
493
|
+
caption_descriptions: Array[
|
494
|
+
{
|
495
|
+
accessibility: ("DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES" | "IMPLEMENTS_ACCESSIBILITY_FEATURES")?,
|
496
|
+
caption_selector_name: ::String,
|
497
|
+
destination_settings: {
|
498
|
+
arib_destination_settings: {
|
499
|
+
}?,
|
500
|
+
burn_in_destination_settings: {
|
501
|
+
alignment: ("CENTERED" | "LEFT" | "SMART")?,
|
502
|
+
background_color: ("BLACK" | "NONE" | "WHITE")?,
|
503
|
+
background_opacity: ::Integer?,
|
504
|
+
font: {
|
505
|
+
password_param: ::String?,
|
506
|
+
uri: ::String,
|
507
|
+
username: ::String?
|
508
|
+
}?,
|
509
|
+
font_color: ("BLACK" | "BLUE" | "GREEN" | "RED" | "WHITE" | "YELLOW")?,
|
510
|
+
font_opacity: ::Integer?,
|
511
|
+
font_resolution: ::Integer?,
|
512
|
+
font_size: ::String?,
|
513
|
+
outline_color: ("BLACK" | "BLUE" | "GREEN" | "RED" | "WHITE" | "YELLOW")?,
|
514
|
+
outline_size: ::Integer?,
|
515
|
+
shadow_color: ("BLACK" | "NONE" | "WHITE")?,
|
516
|
+
shadow_opacity: ::Integer?,
|
517
|
+
shadow_x_offset: ::Integer?,
|
518
|
+
shadow_y_offset: ::Integer?,
|
519
|
+
teletext_grid_control: ("FIXED" | "SCALED")?,
|
520
|
+
x_position: ::Integer?,
|
521
|
+
y_position: ::Integer?
|
522
|
+
}?,
|
523
|
+
dvb_sub_destination_settings: {
|
524
|
+
alignment: ("CENTERED" | "LEFT" | "SMART")?,
|
525
|
+
background_color: ("BLACK" | "NONE" | "WHITE")?,
|
526
|
+
background_opacity: ::Integer?,
|
527
|
+
font: {
|
528
|
+
password_param: ::String?,
|
529
|
+
uri: ::String,
|
530
|
+
username: ::String?
|
531
|
+
}?,
|
532
|
+
font_color: ("BLACK" | "BLUE" | "GREEN" | "RED" | "WHITE" | "YELLOW")?,
|
533
|
+
font_opacity: ::Integer?,
|
534
|
+
font_resolution: ::Integer?,
|
535
|
+
font_size: ::String?,
|
536
|
+
outline_color: ("BLACK" | "BLUE" | "GREEN" | "RED" | "WHITE" | "YELLOW")?,
|
537
|
+
outline_size: ::Integer?,
|
538
|
+
shadow_color: ("BLACK" | "NONE" | "WHITE")?,
|
539
|
+
shadow_opacity: ::Integer?,
|
540
|
+
shadow_x_offset: ::Integer?,
|
541
|
+
shadow_y_offset: ::Integer?,
|
542
|
+
teletext_grid_control: ("FIXED" | "SCALED")?,
|
543
|
+
x_position: ::Integer?,
|
544
|
+
y_position: ::Integer?
|
545
|
+
}?,
|
546
|
+
ebu_tt_d_destination_settings: {
|
547
|
+
copyright_holder: ::String?,
|
548
|
+
fill_line_gap: ("DISABLED" | "ENABLED")?,
|
549
|
+
font_family: ::String?,
|
550
|
+
style_control: ("EXCLUDE" | "INCLUDE")?
|
551
|
+
}?,
|
552
|
+
embedded_destination_settings: {
|
553
|
+
}?,
|
554
|
+
embedded_plus_scte_20_destination_settings: {
|
555
|
+
}?,
|
556
|
+
rtmp_caption_info_destination_settings: {
|
557
|
+
}?,
|
558
|
+
scte_20_plus_embedded_destination_settings: {
|
559
|
+
}?,
|
560
|
+
scte_27_destination_settings: {
|
561
|
+
}?,
|
562
|
+
smpte_tt_destination_settings: {
|
563
|
+
}?,
|
564
|
+
teletext_destination_settings: {
|
565
|
+
}?,
|
566
|
+
ttml_destination_settings: {
|
567
|
+
style_control: ("PASSTHROUGH" | "USE_CONFIGURED")?
|
568
|
+
}?,
|
569
|
+
webvtt_destination_settings: {
|
570
|
+
style_control: ("NO_STYLE_DATA" | "PASSTHROUGH")?
|
571
|
+
}?
|
572
|
+
}?,
|
573
|
+
language_code: ::String?,
|
574
|
+
language_description: ::String?,
|
575
|
+
name: ::String
|
576
|
+
},
|
577
|
+
]?,
|
578
|
+
feature_activations: {
|
579
|
+
input_prepare_schedule_actions: ("DISABLED" | "ENABLED")?,
|
580
|
+
output_static_image_overlay_schedule_actions: ("DISABLED" | "ENABLED")?
|
581
|
+
}?,
|
582
|
+
global_configuration: {
|
583
|
+
initial_audio_gain: ::Integer?,
|
584
|
+
input_end_action: ("NONE" | "SWITCH_AND_LOOP_INPUTS")?,
|
585
|
+
input_loss_behavior: {
|
586
|
+
black_frame_msec: ::Integer?,
|
587
|
+
input_loss_image_color: ::String?,
|
588
|
+
input_loss_image_slate: {
|
589
|
+
password_param: ::String?,
|
590
|
+
uri: ::String,
|
591
|
+
username: ::String?
|
592
|
+
}?,
|
593
|
+
input_loss_image_type: ("COLOR" | "SLATE")?,
|
594
|
+
repeat_frame_msec: ::Integer?
|
595
|
+
}?,
|
596
|
+
output_locking_mode: ("EPOCH_LOCKING" | "PIPELINE_LOCKING")?,
|
597
|
+
output_timing_source: ("INPUT_CLOCK" | "SYSTEM_CLOCK")?,
|
598
|
+
support_low_framerate_inputs: ("DISABLED" | "ENABLED")?,
|
599
|
+
output_locking_settings: {
|
600
|
+
epoch_locking_settings: {
|
601
|
+
custom_epoch: ::String?,
|
602
|
+
jam_sync_time: ::String?
|
603
|
+
}?,
|
604
|
+
pipeline_locking_settings: {
|
605
|
+
}?
|
606
|
+
}?
|
607
|
+
}?,
|
608
|
+
motion_graphics_configuration: {
|
609
|
+
motion_graphics_insertion: ("DISABLED" | "ENABLED")?,
|
610
|
+
motion_graphics_settings: {
|
611
|
+
html_motion_graphics_settings: {
|
612
|
+
}?
|
613
|
+
}
|
614
|
+
}?,
|
615
|
+
nielsen_configuration: {
|
616
|
+
distributor_id: ::String?,
|
617
|
+
nielsen_pcm_to_id_3_tagging: ("DISABLED" | "ENABLED")?
|
618
|
+
}?,
|
619
|
+
output_groups: Array[
|
620
|
+
{
|
621
|
+
name: ::String?,
|
622
|
+
output_group_settings: {
|
623
|
+
archive_group_settings: {
|
624
|
+
archive_cdn_settings: {
|
625
|
+
archive_s3_settings: {
|
626
|
+
canned_acl: ("AUTHENTICATED_READ" | "BUCKET_OWNER_FULL_CONTROL" | "BUCKET_OWNER_READ" | "PUBLIC_READ")?
|
627
|
+
}?
|
628
|
+
}?,
|
629
|
+
destination: {
|
630
|
+
destination_ref_id: ::String?
|
631
|
+
},
|
632
|
+
rollover_interval: ::Integer?
|
633
|
+
}?,
|
634
|
+
frame_capture_group_settings: {
|
635
|
+
destination: {
|
636
|
+
destination_ref_id: ::String?
|
637
|
+
},
|
638
|
+
frame_capture_cdn_settings: {
|
639
|
+
frame_capture_s3_settings: {
|
640
|
+
canned_acl: ("AUTHENTICATED_READ" | "BUCKET_OWNER_FULL_CONTROL" | "BUCKET_OWNER_READ" | "PUBLIC_READ")?
|
641
|
+
}?
|
642
|
+
}?
|
643
|
+
}?,
|
644
|
+
hls_group_settings: {
|
645
|
+
ad_markers: Array[("ADOBE" | "ELEMENTAL" | "ELEMENTAL_SCTE35")]?,
|
646
|
+
base_url_content: ::String?,
|
647
|
+
base_url_content_1: ::String?,
|
648
|
+
base_url_manifest: ::String?,
|
649
|
+
base_url_manifest_1: ::String?,
|
650
|
+
caption_language_mappings: Array[
|
651
|
+
{
|
652
|
+
caption_channel: ::Integer,
|
653
|
+
language_code: ::String,
|
654
|
+
language_description: ::String
|
655
|
+
},
|
656
|
+
]?,
|
657
|
+
caption_language_setting: ("INSERT" | "NONE" | "OMIT")?,
|
658
|
+
client_cache: ("DISABLED" | "ENABLED")?,
|
659
|
+
codec_specification: ("RFC_4281" | "RFC_6381")?,
|
660
|
+
constant_iv: ::String?,
|
661
|
+
destination: {
|
662
|
+
destination_ref_id: ::String?
|
663
|
+
},
|
664
|
+
directory_structure: ("SINGLE_DIRECTORY" | "SUBDIRECTORY_PER_STREAM")?,
|
665
|
+
discontinuity_tags: ("INSERT" | "NEVER_INSERT")?,
|
666
|
+
encryption_type: ("AES128" | "SAMPLE_AES")?,
|
667
|
+
hls_cdn_settings: {
|
668
|
+
hls_akamai_settings: {
|
669
|
+
connection_retry_interval: ::Integer?,
|
670
|
+
filecache_duration: ::Integer?,
|
671
|
+
http_transfer_mode: ("CHUNKED" | "NON_CHUNKED")?,
|
672
|
+
num_retries: ::Integer?,
|
673
|
+
restart_delay: ::Integer?,
|
674
|
+
salt: ::String?,
|
675
|
+
token: ::String?
|
676
|
+
}?,
|
677
|
+
hls_basic_put_settings: {
|
678
|
+
connection_retry_interval: ::Integer?,
|
679
|
+
filecache_duration: ::Integer?,
|
680
|
+
num_retries: ::Integer?,
|
681
|
+
restart_delay: ::Integer?
|
682
|
+
}?,
|
683
|
+
hls_media_store_settings: {
|
684
|
+
connection_retry_interval: ::Integer?,
|
685
|
+
filecache_duration: ::Integer?,
|
686
|
+
media_store_storage_class: ("TEMPORAL")?,
|
687
|
+
num_retries: ::Integer?,
|
688
|
+
restart_delay: ::Integer?
|
689
|
+
}?,
|
690
|
+
hls_s3_settings: {
|
691
|
+
canned_acl: ("AUTHENTICATED_READ" | "BUCKET_OWNER_FULL_CONTROL" | "BUCKET_OWNER_READ" | "PUBLIC_READ")?
|
692
|
+
}?,
|
693
|
+
hls_webdav_settings: {
|
694
|
+
connection_retry_interval: ::Integer?,
|
695
|
+
filecache_duration: ::Integer?,
|
696
|
+
http_transfer_mode: ("CHUNKED" | "NON_CHUNKED")?,
|
697
|
+
num_retries: ::Integer?,
|
698
|
+
restart_delay: ::Integer?
|
699
|
+
}?
|
700
|
+
}?,
|
701
|
+
hls_id_3_segment_tagging: ("DISABLED" | "ENABLED")?,
|
702
|
+
i_frame_only_playlists: ("DISABLED" | "STANDARD")?,
|
703
|
+
incomplete_segment_behavior: ("AUTO" | "SUPPRESS")?,
|
704
|
+
index_n_segments: ::Integer?,
|
705
|
+
input_loss_action: ("EMIT_OUTPUT" | "PAUSE_OUTPUT")?,
|
706
|
+
iv_in_manifest: ("EXCLUDE" | "INCLUDE")?,
|
707
|
+
iv_source: ("EXPLICIT" | "FOLLOWS_SEGMENT_NUMBER")?,
|
708
|
+
keep_segments: ::Integer?,
|
709
|
+
key_format: ::String?,
|
710
|
+
key_format_versions: ::String?,
|
711
|
+
key_provider_settings: {
|
712
|
+
static_key_settings: {
|
713
|
+
key_provider_server: {
|
714
|
+
password_param: ::String?,
|
715
|
+
uri: ::String,
|
716
|
+
username: ::String?
|
717
|
+
}?,
|
718
|
+
static_key_value: ::String
|
719
|
+
}?
|
720
|
+
}?,
|
721
|
+
manifest_compression: ("GZIP" | "NONE")?,
|
722
|
+
manifest_duration_format: ("FLOATING_POINT" | "INTEGER")?,
|
723
|
+
min_segment_length: ::Integer?,
|
724
|
+
mode: ("LIVE" | "VOD")?,
|
725
|
+
output_selection: ("MANIFESTS_AND_SEGMENTS" | "SEGMENTS_ONLY" | "VARIANT_MANIFESTS_AND_SEGMENTS")?,
|
726
|
+
program_date_time: ("EXCLUDE" | "INCLUDE")?,
|
727
|
+
program_date_time_clock: ("INITIALIZE_FROM_OUTPUT_TIMECODE" | "SYSTEM_CLOCK")?,
|
728
|
+
program_date_time_period: ::Integer?,
|
729
|
+
redundant_manifest: ("DISABLED" | "ENABLED")?,
|
730
|
+
segment_length: ::Integer?,
|
731
|
+
segmentation_mode: ("USE_INPUT_SEGMENTATION" | "USE_SEGMENT_DURATION")?,
|
732
|
+
segments_per_subdirectory: ::Integer?,
|
733
|
+
stream_inf_resolution: ("EXCLUDE" | "INCLUDE")?,
|
734
|
+
timed_metadata_id_3_frame: ("NONE" | "PRIV" | "TDRL")?,
|
735
|
+
timed_metadata_id_3_period: ::Integer?,
|
736
|
+
timestamp_delta_milliseconds: ::Integer?,
|
737
|
+
ts_file_mode: ("SEGMENTED_FILES" | "SINGLE_FILE")?
|
738
|
+
}?,
|
739
|
+
media_package_group_settings: {
|
740
|
+
destination: {
|
741
|
+
destination_ref_id: ::String?
|
742
|
+
}
|
743
|
+
}?,
|
744
|
+
ms_smooth_group_settings: {
|
745
|
+
acquisition_point_id: ::String?,
|
746
|
+
audio_only_timecode_control: ("PASSTHROUGH" | "USE_CONFIGURED_CLOCK")?,
|
747
|
+
certificate_mode: ("SELF_SIGNED" | "VERIFY_AUTHENTICITY")?,
|
748
|
+
connection_retry_interval: ::Integer?,
|
749
|
+
destination: {
|
750
|
+
destination_ref_id: ::String?
|
751
|
+
},
|
752
|
+
event_id: ::String?,
|
753
|
+
event_id_mode: ("NO_EVENT_ID" | "USE_CONFIGURED" | "USE_TIMESTAMP")?,
|
754
|
+
event_stop_behavior: ("NONE" | "SEND_EOS")?,
|
755
|
+
filecache_duration: ::Integer?,
|
756
|
+
fragment_length: ::Integer?,
|
757
|
+
input_loss_action: ("EMIT_OUTPUT" | "PAUSE_OUTPUT")?,
|
758
|
+
num_retries: ::Integer?,
|
759
|
+
restart_delay: ::Integer?,
|
760
|
+
segmentation_mode: ("USE_INPUT_SEGMENTATION" | "USE_SEGMENT_DURATION")?,
|
761
|
+
send_delay_ms: ::Integer?,
|
762
|
+
sparse_track_type: ("NONE" | "SCTE_35" | "SCTE_35_WITHOUT_SEGMENTATION")?,
|
763
|
+
stream_manifest_behavior: ("DO_NOT_SEND" | "SEND")?,
|
764
|
+
timestamp_offset: ::String?,
|
765
|
+
timestamp_offset_mode: ("USE_CONFIGURED_OFFSET" | "USE_EVENT_START_DATE")?
|
766
|
+
}?,
|
767
|
+
multiplex_group_settings: {
|
768
|
+
}?,
|
769
|
+
rtmp_group_settings: {
|
770
|
+
ad_markers: Array[("ON_CUE_POINT_SCTE35")]?,
|
771
|
+
authentication_scheme: ("AKAMAI" | "COMMON")?,
|
772
|
+
cache_full_behavior: ("DISCONNECT_IMMEDIATELY" | "WAIT_FOR_SERVER")?,
|
773
|
+
cache_length: ::Integer?,
|
774
|
+
caption_data: ("ALL" | "FIELD1_608" | "FIELD1_AND_FIELD2_608")?,
|
775
|
+
input_loss_action: ("EMIT_OUTPUT" | "PAUSE_OUTPUT")?,
|
776
|
+
restart_delay: ::Integer?,
|
777
|
+
include_filler_nal_units: ("AUTO" | "DROP" | "INCLUDE")?
|
778
|
+
}?,
|
779
|
+
udp_group_settings: {
|
780
|
+
input_loss_action: ("DROP_PROGRAM" | "DROP_TS" | "EMIT_PROGRAM")?,
|
781
|
+
timed_metadata_id_3_frame: ("NONE" | "PRIV" | "TDRL")?,
|
782
|
+
timed_metadata_id_3_period: ::Integer?
|
783
|
+
}?
|
784
|
+
},
|
785
|
+
outputs: Array[
|
786
|
+
{
|
787
|
+
audio_description_names: Array[::String]?,
|
788
|
+
caption_description_names: Array[::String]?,
|
789
|
+
output_name: ::String?,
|
790
|
+
output_settings: {
|
791
|
+
archive_output_settings: {
|
792
|
+
container_settings: {
|
793
|
+
m2ts_settings: {
|
794
|
+
absent_input_audio_behavior: ("DROP" | "ENCODE_SILENCE")?,
|
795
|
+
arib: ("DISABLED" | "ENABLED")?,
|
796
|
+
arib_captions_pid: ::String?,
|
797
|
+
arib_captions_pid_control: ("AUTO" | "USE_CONFIGURED")?,
|
798
|
+
audio_buffer_model: ("ATSC" | "DVB")?,
|
799
|
+
audio_frames_per_pes: ::Integer?,
|
800
|
+
audio_pids: ::String?,
|
801
|
+
audio_stream_type: ("ATSC" | "DVB")?,
|
802
|
+
bitrate: ::Integer?,
|
803
|
+
buffer_model: ("MULTIPLEX" | "NONE")?,
|
804
|
+
cc_descriptor: ("DISABLED" | "ENABLED")?,
|
805
|
+
dvb_nit_settings: {
|
806
|
+
network_id: ::Integer,
|
807
|
+
network_name: ::String,
|
808
|
+
rep_interval: ::Integer?
|
809
|
+
}?,
|
810
|
+
dvb_sdt_settings: {
|
811
|
+
output_sdt: ("SDT_FOLLOW" | "SDT_FOLLOW_IF_PRESENT" | "SDT_MANUAL" | "SDT_NONE")?,
|
812
|
+
rep_interval: ::Integer?,
|
813
|
+
service_name: ::String?,
|
814
|
+
service_provider_name: ::String?
|
815
|
+
}?,
|
816
|
+
dvb_sub_pids: ::String?,
|
817
|
+
dvb_tdt_settings: {
|
818
|
+
rep_interval: ::Integer?
|
819
|
+
}?,
|
820
|
+
dvb_teletext_pid: ::String?,
|
821
|
+
ebif: ("NONE" | "PASSTHROUGH")?,
|
822
|
+
ebp_audio_interval: ("VIDEO_AND_FIXED_INTERVALS" | "VIDEO_INTERVAL")?,
|
823
|
+
ebp_lookahead_ms: ::Integer?,
|
824
|
+
ebp_placement: ("VIDEO_AND_AUDIO_PIDS" | "VIDEO_PID")?,
|
825
|
+
ecm_pid: ::String?,
|
826
|
+
es_rate_in_pes: ("EXCLUDE" | "INCLUDE")?,
|
827
|
+
etv_platform_pid: ::String?,
|
828
|
+
etv_signal_pid: ::String?,
|
829
|
+
fragment_time: ::Float?,
|
830
|
+
klv: ("NONE" | "PASSTHROUGH")?,
|
831
|
+
klv_data_pids: ::String?,
|
832
|
+
nielsen_id_3_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
833
|
+
null_packet_bitrate: ::Float?,
|
834
|
+
pat_interval: ::Integer?,
|
835
|
+
pcr_control: ("CONFIGURED_PCR_PERIOD" | "PCR_EVERY_PES_PACKET")?,
|
836
|
+
pcr_period: ::Integer?,
|
837
|
+
pcr_pid: ::String?,
|
838
|
+
pmt_interval: ::Integer?,
|
839
|
+
pmt_pid: ::String?,
|
840
|
+
program_num: ::Integer?,
|
841
|
+
rate_mode: ("CBR" | "VBR")?,
|
842
|
+
scte_27_pids: ::String?,
|
843
|
+
scte_35_control: ("NONE" | "PASSTHROUGH")?,
|
844
|
+
scte_35_pid: ::String?,
|
845
|
+
scte_35_preroll_pullup_milliseconds: ::Float?,
|
846
|
+
segmentation_markers: ("EBP" | "EBP_LEGACY" | "NONE" | "PSI_SEGSTART" | "RAI_ADAPT" | "RAI_SEGSTART")?,
|
847
|
+
segmentation_style: ("MAINTAIN_CADENCE" | "RESET_CADENCE")?,
|
848
|
+
segmentation_time: ::Float?,
|
849
|
+
timed_metadata_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
850
|
+
timed_metadata_pid: ::String?,
|
851
|
+
transport_stream_id: ::Integer?,
|
852
|
+
video_pid: ::String?
|
853
|
+
}?,
|
854
|
+
raw_settings: {
|
855
|
+
}?
|
856
|
+
},
|
857
|
+
extension: ::String?,
|
858
|
+
name_modifier: ::String?
|
859
|
+
}?,
|
860
|
+
frame_capture_output_settings: {
|
861
|
+
name_modifier: ::String?
|
862
|
+
}?,
|
863
|
+
hls_output_settings: {
|
864
|
+
h265_packaging_type: ("HEV1" | "HVC1")?,
|
865
|
+
hls_settings: {
|
866
|
+
audio_only_hls_settings: {
|
867
|
+
audio_group_id: ::String?,
|
868
|
+
audio_only_image: {
|
869
|
+
password_param: ::String?,
|
870
|
+
uri: ::String,
|
871
|
+
username: ::String?
|
872
|
+
}?,
|
873
|
+
audio_track_type: ("ALTERNATE_AUDIO_AUTO_SELECT" | "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" | "ALTERNATE_AUDIO_NOT_AUTO_SELECT" | "AUDIO_ONLY_VARIANT_STREAM")?,
|
874
|
+
segment_type: ("AAC" | "FMP4")?
|
875
|
+
}?,
|
876
|
+
fmp_4_hls_settings: {
|
877
|
+
audio_rendition_sets: ::String?,
|
878
|
+
nielsen_id_3_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
879
|
+
timed_metadata_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?
|
880
|
+
}?,
|
881
|
+
frame_capture_hls_settings: {
|
882
|
+
}?,
|
883
|
+
standard_hls_settings: {
|
884
|
+
audio_rendition_sets: ::String?,
|
885
|
+
m3u_8_settings: {
|
886
|
+
audio_frames_per_pes: ::Integer?,
|
887
|
+
audio_pids: ::String?,
|
888
|
+
ecm_pid: ::String?,
|
889
|
+
nielsen_id_3_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
890
|
+
pat_interval: ::Integer?,
|
891
|
+
pcr_control: ("CONFIGURED_PCR_PERIOD" | "PCR_EVERY_PES_PACKET")?,
|
892
|
+
pcr_period: ::Integer?,
|
893
|
+
pcr_pid: ::String?,
|
894
|
+
pmt_interval: ::Integer?,
|
895
|
+
pmt_pid: ::String?,
|
896
|
+
program_num: ::Integer?,
|
897
|
+
scte_35_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
898
|
+
scte_35_pid: ::String?,
|
899
|
+
timed_metadata_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
900
|
+
timed_metadata_pid: ::String?,
|
901
|
+
transport_stream_id: ::Integer?,
|
902
|
+
video_pid: ::String?,
|
903
|
+
klv_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
904
|
+
klv_data_pids: ::String?
|
905
|
+
}
|
906
|
+
}?
|
907
|
+
},
|
908
|
+
name_modifier: ::String?,
|
909
|
+
segment_modifier: ::String?
|
910
|
+
}?,
|
911
|
+
media_package_output_settings: {
|
912
|
+
}?,
|
913
|
+
ms_smooth_output_settings: {
|
914
|
+
h265_packaging_type: ("HEV1" | "HVC1")?,
|
915
|
+
name_modifier: ::String?
|
916
|
+
}?,
|
917
|
+
multiplex_output_settings: {
|
918
|
+
destination: {
|
919
|
+
destination_ref_id: ::String?
|
920
|
+
}
|
921
|
+
}?,
|
922
|
+
rtmp_output_settings: {
|
923
|
+
certificate_mode: ("SELF_SIGNED" | "VERIFY_AUTHENTICITY")?,
|
924
|
+
connection_retry_interval: ::Integer?,
|
925
|
+
destination: {
|
926
|
+
destination_ref_id: ::String?
|
927
|
+
},
|
928
|
+
num_retries: ::Integer?
|
929
|
+
}?,
|
930
|
+
udp_output_settings: {
|
931
|
+
buffer_msec: ::Integer?,
|
932
|
+
container_settings: {
|
933
|
+
m2ts_settings: {
|
934
|
+
absent_input_audio_behavior: ("DROP" | "ENCODE_SILENCE")?,
|
935
|
+
arib: ("DISABLED" | "ENABLED")?,
|
936
|
+
arib_captions_pid: ::String?,
|
937
|
+
arib_captions_pid_control: ("AUTO" | "USE_CONFIGURED")?,
|
938
|
+
audio_buffer_model: ("ATSC" | "DVB")?,
|
939
|
+
audio_frames_per_pes: ::Integer?,
|
940
|
+
audio_pids: ::String?,
|
941
|
+
audio_stream_type: ("ATSC" | "DVB")?,
|
942
|
+
bitrate: ::Integer?,
|
943
|
+
buffer_model: ("MULTIPLEX" | "NONE")?,
|
944
|
+
cc_descriptor: ("DISABLED" | "ENABLED")?,
|
945
|
+
dvb_nit_settings: {
|
946
|
+
network_id: ::Integer,
|
947
|
+
network_name: ::String,
|
948
|
+
rep_interval: ::Integer?
|
949
|
+
}?,
|
950
|
+
dvb_sdt_settings: {
|
951
|
+
output_sdt: ("SDT_FOLLOW" | "SDT_FOLLOW_IF_PRESENT" | "SDT_MANUAL" | "SDT_NONE")?,
|
952
|
+
rep_interval: ::Integer?,
|
953
|
+
service_name: ::String?,
|
954
|
+
service_provider_name: ::String?
|
955
|
+
}?,
|
956
|
+
dvb_sub_pids: ::String?,
|
957
|
+
dvb_tdt_settings: {
|
958
|
+
rep_interval: ::Integer?
|
959
|
+
}?,
|
960
|
+
dvb_teletext_pid: ::String?,
|
961
|
+
ebif: ("NONE" | "PASSTHROUGH")?,
|
962
|
+
ebp_audio_interval: ("VIDEO_AND_FIXED_INTERVALS" | "VIDEO_INTERVAL")?,
|
963
|
+
ebp_lookahead_ms: ::Integer?,
|
964
|
+
ebp_placement: ("VIDEO_AND_AUDIO_PIDS" | "VIDEO_PID")?,
|
965
|
+
ecm_pid: ::String?,
|
966
|
+
es_rate_in_pes: ("EXCLUDE" | "INCLUDE")?,
|
967
|
+
etv_platform_pid: ::String?,
|
968
|
+
etv_signal_pid: ::String?,
|
969
|
+
fragment_time: ::Float?,
|
970
|
+
klv: ("NONE" | "PASSTHROUGH")?,
|
971
|
+
klv_data_pids: ::String?,
|
972
|
+
nielsen_id_3_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
973
|
+
null_packet_bitrate: ::Float?,
|
974
|
+
pat_interval: ::Integer?,
|
975
|
+
pcr_control: ("CONFIGURED_PCR_PERIOD" | "PCR_EVERY_PES_PACKET")?,
|
976
|
+
pcr_period: ::Integer?,
|
977
|
+
pcr_pid: ::String?,
|
978
|
+
pmt_interval: ::Integer?,
|
979
|
+
pmt_pid: ::String?,
|
980
|
+
program_num: ::Integer?,
|
981
|
+
rate_mode: ("CBR" | "VBR")?,
|
982
|
+
scte_27_pids: ::String?,
|
983
|
+
scte_35_control: ("NONE" | "PASSTHROUGH")?,
|
984
|
+
scte_35_pid: ::String?,
|
985
|
+
scte_35_preroll_pullup_milliseconds: ::Float?,
|
986
|
+
segmentation_markers: ("EBP" | "EBP_LEGACY" | "NONE" | "PSI_SEGSTART" | "RAI_ADAPT" | "RAI_SEGSTART")?,
|
987
|
+
segmentation_style: ("MAINTAIN_CADENCE" | "RESET_CADENCE")?,
|
988
|
+
segmentation_time: ::Float?,
|
989
|
+
timed_metadata_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
990
|
+
timed_metadata_pid: ::String?,
|
991
|
+
transport_stream_id: ::Integer?,
|
992
|
+
video_pid: ::String?
|
993
|
+
}?
|
994
|
+
},
|
995
|
+
destination: {
|
996
|
+
destination_ref_id: ::String?
|
997
|
+
},
|
998
|
+
fec_output_settings: {
|
999
|
+
column_depth: ::Integer?,
|
1000
|
+
include_fec: ("COLUMN" | "COLUMN_AND_ROW")?,
|
1001
|
+
row_length: ::Integer?
|
1002
|
+
}?
|
1003
|
+
}?
|
1004
|
+
},
|
1005
|
+
video_description_name: ::String?
|
1006
|
+
},
|
1007
|
+
]
|
1008
|
+
},
|
1009
|
+
],
|
1010
|
+
timecode_config: {
|
1011
|
+
source: ("EMBEDDED" | "SYSTEMCLOCK" | "ZEROBASED"),
|
1012
|
+
sync_threshold: ::Integer?
|
1013
|
+
},
|
1014
|
+
video_descriptions: Array[
|
1015
|
+
{
|
1016
|
+
codec_settings: {
|
1017
|
+
frame_capture_settings: {
|
1018
|
+
capture_interval: ::Integer?,
|
1019
|
+
capture_interval_units: ("MILLISECONDS" | "SECONDS")?,
|
1020
|
+
timecode_burnin_settings: {
|
1021
|
+
font_size: ("EXTRA_SMALL_10" | "LARGE_48" | "MEDIUM_32" | "SMALL_16"),
|
1022
|
+
position: ("BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "MIDDLE_CENTER" | "MIDDLE_LEFT" | "MIDDLE_RIGHT" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT"),
|
1023
|
+
prefix: ::String?
|
1024
|
+
}?
|
1025
|
+
}?,
|
1026
|
+
h264_settings: {
|
1027
|
+
adaptive_quantization: ("AUTO" | "HIGH" | "HIGHER" | "LOW" | "MAX" | "MEDIUM" | "OFF")?,
|
1028
|
+
afd_signaling: ("AUTO" | "FIXED" | "NONE")?,
|
1029
|
+
bitrate: ::Integer?,
|
1030
|
+
buf_fill_pct: ::Integer?,
|
1031
|
+
buf_size: ::Integer?,
|
1032
|
+
color_metadata: ("IGNORE" | "INSERT")?,
|
1033
|
+
color_space_settings: {
|
1034
|
+
color_space_passthrough_settings: {
|
1035
|
+
}?,
|
1036
|
+
rec_601_settings: {
|
1037
|
+
}?,
|
1038
|
+
rec_709_settings: {
|
1039
|
+
}?
|
1040
|
+
}?,
|
1041
|
+
entropy_encoding: ("CABAC" | "CAVLC")?,
|
1042
|
+
filter_settings: {
|
1043
|
+
temporal_filter_settings: {
|
1044
|
+
post_filter_sharpening: ("AUTO" | "DISABLED" | "ENABLED")?,
|
1045
|
+
strength: ("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")?
|
1046
|
+
}?
|
1047
|
+
}?,
|
1048
|
+
fixed_afd: ("AFD_0000" | "AFD_0010" | "AFD_0011" | "AFD_0100" | "AFD_1000" | "AFD_1001" | "AFD_1010" | "AFD_1011" | "AFD_1101" | "AFD_1110" | "AFD_1111")?,
|
1049
|
+
flicker_aq: ("DISABLED" | "ENABLED")?,
|
1050
|
+
force_field_pictures: ("DISABLED" | "ENABLED")?,
|
1051
|
+
framerate_control: ("INITIALIZE_FROM_SOURCE" | "SPECIFIED")?,
|
1052
|
+
framerate_denominator: ::Integer?,
|
1053
|
+
framerate_numerator: ::Integer?,
|
1054
|
+
gop_b_reference: ("DISABLED" | "ENABLED")?,
|
1055
|
+
gop_closed_cadence: ::Integer?,
|
1056
|
+
gop_num_b_frames: ::Integer?,
|
1057
|
+
gop_size: ::Float?,
|
1058
|
+
gop_size_units: ("FRAMES" | "SECONDS")?,
|
1059
|
+
level: ("H264_LEVEL_1" | "H264_LEVEL_1_1" | "H264_LEVEL_1_2" | "H264_LEVEL_1_3" | "H264_LEVEL_2" | "H264_LEVEL_2_1" | "H264_LEVEL_2_2" | "H264_LEVEL_3" | "H264_LEVEL_3_1" | "H264_LEVEL_3_2" | "H264_LEVEL_4" | "H264_LEVEL_4_1" | "H264_LEVEL_4_2" | "H264_LEVEL_5" | "H264_LEVEL_5_1" | "H264_LEVEL_5_2" | "H264_LEVEL_AUTO")?,
|
1060
|
+
look_ahead_rate_control: ("HIGH" | "LOW" | "MEDIUM")?,
|
1061
|
+
max_bitrate: ::Integer?,
|
1062
|
+
min_i_interval: ::Integer?,
|
1063
|
+
num_ref_frames: ::Integer?,
|
1064
|
+
par_control: ("INITIALIZE_FROM_SOURCE" | "SPECIFIED")?,
|
1065
|
+
par_denominator: ::Integer?,
|
1066
|
+
par_numerator: ::Integer?,
|
1067
|
+
profile: ("BASELINE" | "HIGH" | "HIGH_10BIT" | "HIGH_422" | "HIGH_422_10BIT" | "MAIN")?,
|
1068
|
+
quality_level: ("ENHANCED_QUALITY" | "STANDARD_QUALITY")?,
|
1069
|
+
qvbr_quality_level: ::Integer?,
|
1070
|
+
rate_control_mode: ("CBR" | "MULTIPLEX" | "QVBR" | "VBR")?,
|
1071
|
+
scan_type: ("INTERLACED" | "PROGRESSIVE")?,
|
1072
|
+
scene_change_detect: ("DISABLED" | "ENABLED")?,
|
1073
|
+
slices: ::Integer?,
|
1074
|
+
softness: ::Integer?,
|
1075
|
+
spatial_aq: ("DISABLED" | "ENABLED")?,
|
1076
|
+
subgop_length: ("DYNAMIC" | "FIXED")?,
|
1077
|
+
syntax: ("DEFAULT" | "RP2027")?,
|
1078
|
+
temporal_aq: ("DISABLED" | "ENABLED")?,
|
1079
|
+
timecode_insertion: ("DISABLED" | "PIC_TIMING_SEI")?,
|
1080
|
+
timecode_burnin_settings: {
|
1081
|
+
font_size: ("EXTRA_SMALL_10" | "LARGE_48" | "MEDIUM_32" | "SMALL_16"),
|
1082
|
+
position: ("BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "MIDDLE_CENTER" | "MIDDLE_LEFT" | "MIDDLE_RIGHT" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT"),
|
1083
|
+
prefix: ::String?
|
1084
|
+
}?
|
1085
|
+
}?,
|
1086
|
+
h265_settings: {
|
1087
|
+
adaptive_quantization: ("AUTO" | "HIGH" | "HIGHER" | "LOW" | "MAX" | "MEDIUM" | "OFF")?,
|
1088
|
+
afd_signaling: ("AUTO" | "FIXED" | "NONE")?,
|
1089
|
+
alternative_transfer_function: ("INSERT" | "OMIT")?,
|
1090
|
+
bitrate: ::Integer?,
|
1091
|
+
buf_size: ::Integer?,
|
1092
|
+
color_metadata: ("IGNORE" | "INSERT")?,
|
1093
|
+
color_space_settings: {
|
1094
|
+
color_space_passthrough_settings: {
|
1095
|
+
}?,
|
1096
|
+
dolby_vision_81_settings: {
|
1097
|
+
}?,
|
1098
|
+
hdr_10_settings: {
|
1099
|
+
max_cll: ::Integer?,
|
1100
|
+
max_fall: ::Integer?
|
1101
|
+
}?,
|
1102
|
+
rec_601_settings: {
|
1103
|
+
}?,
|
1104
|
+
rec_709_settings: {
|
1105
|
+
}?
|
1106
|
+
}?,
|
1107
|
+
filter_settings: {
|
1108
|
+
temporal_filter_settings: {
|
1109
|
+
post_filter_sharpening: ("AUTO" | "DISABLED" | "ENABLED")?,
|
1110
|
+
strength: ("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")?
|
1111
|
+
}?
|
1112
|
+
}?,
|
1113
|
+
fixed_afd: ("AFD_0000" | "AFD_0010" | "AFD_0011" | "AFD_0100" | "AFD_1000" | "AFD_1001" | "AFD_1010" | "AFD_1011" | "AFD_1101" | "AFD_1110" | "AFD_1111")?,
|
1114
|
+
flicker_aq: ("DISABLED" | "ENABLED")?,
|
1115
|
+
framerate_denominator: ::Integer,
|
1116
|
+
framerate_numerator: ::Integer,
|
1117
|
+
gop_closed_cadence: ::Integer?,
|
1118
|
+
gop_size: ::Float?,
|
1119
|
+
gop_size_units: ("FRAMES" | "SECONDS")?,
|
1120
|
+
level: ("H265_LEVEL_1" | "H265_LEVEL_2" | "H265_LEVEL_2_1" | "H265_LEVEL_3" | "H265_LEVEL_3_1" | "H265_LEVEL_4" | "H265_LEVEL_4_1" | "H265_LEVEL_5" | "H265_LEVEL_5_1" | "H265_LEVEL_5_2" | "H265_LEVEL_6" | "H265_LEVEL_6_1" | "H265_LEVEL_6_2" | "H265_LEVEL_AUTO")?,
|
1121
|
+
look_ahead_rate_control: ("HIGH" | "LOW" | "MEDIUM")?,
|
1122
|
+
max_bitrate: ::Integer?,
|
1123
|
+
min_i_interval: ::Integer?,
|
1124
|
+
par_denominator: ::Integer?,
|
1125
|
+
par_numerator: ::Integer?,
|
1126
|
+
profile: ("MAIN" | "MAIN_10BIT")?,
|
1127
|
+
qvbr_quality_level: ::Integer?,
|
1128
|
+
rate_control_mode: ("CBR" | "MULTIPLEX" | "QVBR")?,
|
1129
|
+
scan_type: ("INTERLACED" | "PROGRESSIVE")?,
|
1130
|
+
scene_change_detect: ("DISABLED" | "ENABLED")?,
|
1131
|
+
slices: ::Integer?,
|
1132
|
+
tier: ("HIGH" | "MAIN")?,
|
1133
|
+
timecode_insertion: ("DISABLED" | "PIC_TIMING_SEI")?,
|
1134
|
+
timecode_burnin_settings: {
|
1135
|
+
font_size: ("EXTRA_SMALL_10" | "LARGE_48" | "MEDIUM_32" | "SMALL_16"),
|
1136
|
+
position: ("BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "MIDDLE_CENTER" | "MIDDLE_LEFT" | "MIDDLE_RIGHT" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT"),
|
1137
|
+
prefix: ::String?
|
1138
|
+
}?
|
1139
|
+
}?,
|
1140
|
+
mpeg_2_settings: {
|
1141
|
+
adaptive_quantization: ("AUTO" | "HIGH" | "LOW" | "MEDIUM" | "OFF")?,
|
1142
|
+
afd_signaling: ("AUTO" | "FIXED" | "NONE")?,
|
1143
|
+
color_metadata: ("IGNORE" | "INSERT")?,
|
1144
|
+
color_space: ("AUTO" | "PASSTHROUGH")?,
|
1145
|
+
display_aspect_ratio: ("DISPLAYRATIO16X9" | "DISPLAYRATIO4X3")?,
|
1146
|
+
filter_settings: {
|
1147
|
+
temporal_filter_settings: {
|
1148
|
+
post_filter_sharpening: ("AUTO" | "DISABLED" | "ENABLED")?,
|
1149
|
+
strength: ("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")?
|
1150
|
+
}?
|
1151
|
+
}?,
|
1152
|
+
fixed_afd: ("AFD_0000" | "AFD_0010" | "AFD_0011" | "AFD_0100" | "AFD_1000" | "AFD_1001" | "AFD_1010" | "AFD_1011" | "AFD_1101" | "AFD_1110" | "AFD_1111")?,
|
1153
|
+
framerate_denominator: ::Integer,
|
1154
|
+
framerate_numerator: ::Integer,
|
1155
|
+
gop_closed_cadence: ::Integer?,
|
1156
|
+
gop_num_b_frames: ::Integer?,
|
1157
|
+
gop_size: ::Float?,
|
1158
|
+
gop_size_units: ("FRAMES" | "SECONDS")?,
|
1159
|
+
scan_type: ("INTERLACED" | "PROGRESSIVE")?,
|
1160
|
+
subgop_length: ("DYNAMIC" | "FIXED")?,
|
1161
|
+
timecode_insertion: ("DISABLED" | "GOP_TIMECODE")?,
|
1162
|
+
timecode_burnin_settings: {
|
1163
|
+
font_size: ("EXTRA_SMALL_10" | "LARGE_48" | "MEDIUM_32" | "SMALL_16"),
|
1164
|
+
position: ("BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "MIDDLE_CENTER" | "MIDDLE_LEFT" | "MIDDLE_RIGHT" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT"),
|
1165
|
+
prefix: ::String?
|
1166
|
+
}?
|
1167
|
+
}?
|
1168
|
+
}?,
|
1169
|
+
height: ::Integer?,
|
1170
|
+
name: ::String,
|
1171
|
+
respond_to_afd: ("NONE" | "PASSTHROUGH" | "RESPOND")?,
|
1172
|
+
scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT")?,
|
1173
|
+
sharpness: ::Integer?,
|
1174
|
+
width: ::Integer?
|
1175
|
+
},
|
1176
|
+
],
|
1177
|
+
thumbnail_configuration: {
|
1178
|
+
state: ("AUTO" | "DISABLED")
|
1179
|
+
}?,
|
1180
|
+
color_correction_settings: {
|
1181
|
+
global_color_corrections: Array[
|
1182
|
+
{
|
1183
|
+
input_color_space: ("HDR10" | "HLG_2020" | "REC_601" | "REC_709"),
|
1184
|
+
output_color_space: ("HDR10" | "HLG_2020" | "REC_601" | "REC_709"),
|
1185
|
+
uri: ::String
|
1186
|
+
},
|
1187
|
+
]
|
1188
|
+
}?
|
1189
|
+
},
|
1190
|
+
?input_attachments: Array[
|
1191
|
+
{
|
1192
|
+
automatic_input_failover_settings: {
|
1193
|
+
error_clear_time_msec: ::Integer?,
|
1194
|
+
failover_conditions: Array[
|
1195
|
+
{
|
1196
|
+
failover_condition_settings: {
|
1197
|
+
audio_silence_settings: {
|
1198
|
+
audio_selector_name: ::String,
|
1199
|
+
audio_silence_threshold_msec: ::Integer?
|
1200
|
+
}?,
|
1201
|
+
input_loss_settings: {
|
1202
|
+
input_loss_threshold_msec: ::Integer?
|
1203
|
+
}?,
|
1204
|
+
video_black_settings: {
|
1205
|
+
black_detect_threshold: ::Float?,
|
1206
|
+
video_black_threshold_msec: ::Integer?
|
1207
|
+
}?
|
1208
|
+
}?
|
1209
|
+
},
|
1210
|
+
]?,
|
1211
|
+
input_preference: ("EQUAL_INPUT_PREFERENCE" | "PRIMARY_INPUT_PREFERRED")?,
|
1212
|
+
secondary_input_id: ::String
|
1213
|
+
}?,
|
1214
|
+
input_attachment_name: ::String?,
|
1215
|
+
input_id: ::String?,
|
1216
|
+
input_settings: {
|
1217
|
+
audio_selectors: Array[
|
1218
|
+
{
|
1219
|
+
name: ::String,
|
1220
|
+
selector_settings: {
|
1221
|
+
audio_hls_rendition_selection: {
|
1222
|
+
group_id: ::String,
|
1223
|
+
name: ::String
|
1224
|
+
}?,
|
1225
|
+
audio_language_selection: {
|
1226
|
+
language_code: ::String,
|
1227
|
+
language_selection_policy: ("LOOSE" | "STRICT")?
|
1228
|
+
}?,
|
1229
|
+
audio_pid_selection: {
|
1230
|
+
pid: ::Integer
|
1231
|
+
}?,
|
1232
|
+
audio_track_selection: {
|
1233
|
+
tracks: Array[
|
1234
|
+
{
|
1235
|
+
track: ::Integer
|
1236
|
+
},
|
1237
|
+
],
|
1238
|
+
dolby_e_decode: {
|
1239
|
+
program_selection: ("ALL_CHANNELS" | "PROGRAM_1" | "PROGRAM_2" | "PROGRAM_3" | "PROGRAM_4" | "PROGRAM_5" | "PROGRAM_6" | "PROGRAM_7" | "PROGRAM_8")
|
1240
|
+
}?
|
1241
|
+
}?
|
1242
|
+
}?
|
1243
|
+
},
|
1244
|
+
]?,
|
1245
|
+
caption_selectors: Array[
|
1246
|
+
{
|
1247
|
+
language_code: ::String?,
|
1248
|
+
name: ::String,
|
1249
|
+
selector_settings: {
|
1250
|
+
ancillary_source_settings: {
|
1251
|
+
source_ancillary_channel_number: ::Integer?
|
1252
|
+
}?,
|
1253
|
+
arib_source_settings: {
|
1254
|
+
}?,
|
1255
|
+
dvb_sub_source_settings: {
|
1256
|
+
ocr_language: ("DEU" | "ENG" | "FRA" | "NLD" | "POR" | "SPA")?,
|
1257
|
+
pid: ::Integer?
|
1258
|
+
}?,
|
1259
|
+
embedded_source_settings: {
|
1260
|
+
convert_608_to_708: ("DISABLED" | "UPCONVERT")?,
|
1261
|
+
scte_20_detection: ("AUTO" | "OFF")?,
|
1262
|
+
source_608_channel_number: ::Integer?,
|
1263
|
+
source_608_track_number: ::Integer?
|
1264
|
+
}?,
|
1265
|
+
scte_20_source_settings: {
|
1266
|
+
convert_608_to_708: ("DISABLED" | "UPCONVERT")?,
|
1267
|
+
source_608_channel_number: ::Integer?
|
1268
|
+
}?,
|
1269
|
+
scte_27_source_settings: {
|
1270
|
+
ocr_language: ("DEU" | "ENG" | "FRA" | "NLD" | "POR" | "SPA")?,
|
1271
|
+
pid: ::Integer?
|
1272
|
+
}?,
|
1273
|
+
teletext_source_settings: {
|
1274
|
+
output_rectangle: {
|
1275
|
+
height: ::Float,
|
1276
|
+
left_offset: ::Float,
|
1277
|
+
top_offset: ::Float,
|
1278
|
+
width: ::Float
|
1279
|
+
}?,
|
1280
|
+
page_number: ::String?
|
1281
|
+
}?
|
1282
|
+
}?
|
1283
|
+
},
|
1284
|
+
]?,
|
1285
|
+
deblock_filter: ("DISABLED" | "ENABLED")?,
|
1286
|
+
denoise_filter: ("DISABLED" | "ENABLED")?,
|
1287
|
+
filter_strength: ::Integer?,
|
1288
|
+
input_filter: ("AUTO" | "DISABLED" | "FORCED")?,
|
1289
|
+
network_input_settings: {
|
1290
|
+
hls_input_settings: {
|
1291
|
+
bandwidth: ::Integer?,
|
1292
|
+
buffer_segments: ::Integer?,
|
1293
|
+
retries: ::Integer?,
|
1294
|
+
retry_interval: ::Integer?,
|
1295
|
+
scte_35_source: ("MANIFEST" | "SEGMENTS")?
|
1296
|
+
}?,
|
1297
|
+
server_validation: ("CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME" | "CHECK_CRYPTOGRAPHY_ONLY")?
|
1298
|
+
}?,
|
1299
|
+
scte_35_pid: ::Integer?,
|
1300
|
+
smpte_2038_data_preference: ("IGNORE" | "PREFER")?,
|
1301
|
+
source_end_behavior: ("CONTINUE" | "LOOP")?,
|
1302
|
+
video_selector: {
|
1303
|
+
color_space: ("FOLLOW" | "HDR10" | "HLG_2020" | "REC_601" | "REC_709")?,
|
1304
|
+
color_space_settings: {
|
1305
|
+
hdr_10_settings: {
|
1306
|
+
max_cll: ::Integer?,
|
1307
|
+
max_fall: ::Integer?
|
1308
|
+
}?
|
1309
|
+
}?,
|
1310
|
+
color_space_usage: ("FALLBACK" | "FORCE")?,
|
1311
|
+
selector_settings: {
|
1312
|
+
video_selector_pid: {
|
1313
|
+
pid: ::Integer?
|
1314
|
+
}?,
|
1315
|
+
video_selector_program_id: {
|
1316
|
+
program_id: ::Integer?
|
1317
|
+
}?
|
1318
|
+
}?
|
1319
|
+
}?
|
1320
|
+
}?
|
1321
|
+
},
|
1322
|
+
],
|
1323
|
+
?input_specification: {
|
1324
|
+
codec: ("MPEG2" | "AVC" | "HEVC")?,
|
1325
|
+
maximum_bitrate: ("MAX_10_MBPS" | "MAX_20_MBPS" | "MAX_50_MBPS")?,
|
1326
|
+
resolution: ("SD" | "HD" | "UHD")?
|
1327
|
+
},
|
1328
|
+
?log_level: ("ERROR" | "WARNING" | "INFO" | "DEBUG" | "DISABLED"),
|
1329
|
+
?maintenance: {
|
1330
|
+
maintenance_day: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY")?,
|
1331
|
+
maintenance_start_time: ::String?
|
1332
|
+
},
|
1333
|
+
?name: ::String,
|
1334
|
+
?request_id: ::String,
|
1335
|
+
?reserved: ::String,
|
1336
|
+
?role_arn: ::String,
|
1337
|
+
?tags: Hash[::String, ::String],
|
1338
|
+
?vpc: {
|
1339
|
+
public_address_allocation_ids: Array[::String]?,
|
1340
|
+
security_group_ids: Array[::String]?,
|
1341
|
+
subnet_ids: Array[::String]
|
1342
|
+
}
|
1343
|
+
) -> _CreateChannelResponseSuccess
|
1344
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChannelResponseSuccess
|
1345
|
+
|
1346
|
+
interface _CreateInputResponseSuccess
|
1347
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateInputResponse]
|
1348
|
+
def input: () -> Types::Input
|
1349
|
+
end
|
1350
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#create_input-instance_method
|
1351
|
+
def create_input: (
|
1352
|
+
?destinations: Array[
|
1353
|
+
{
|
1354
|
+
stream_name: ::String?
|
1355
|
+
},
|
1356
|
+
],
|
1357
|
+
?input_devices: Array[
|
1358
|
+
{
|
1359
|
+
id: ::String?
|
1360
|
+
},
|
1361
|
+
],
|
1362
|
+
?input_security_groups: Array[::String],
|
1363
|
+
?media_connect_flows: Array[
|
1364
|
+
{
|
1365
|
+
flow_arn: ::String?
|
1366
|
+
},
|
1367
|
+
],
|
1368
|
+
?name: ::String,
|
1369
|
+
?request_id: ::String,
|
1370
|
+
?role_arn: ::String,
|
1371
|
+
?sources: Array[
|
1372
|
+
{
|
1373
|
+
password_param: ::String?,
|
1374
|
+
url: ::String?,
|
1375
|
+
username: ::String?
|
1376
|
+
},
|
1377
|
+
],
|
1378
|
+
?tags: Hash[::String, ::String],
|
1379
|
+
?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE"),
|
1380
|
+
?vpc: {
|
1381
|
+
security_group_ids: Array[::String]?,
|
1382
|
+
subnet_ids: Array[::String]
|
1383
|
+
}
|
1384
|
+
) -> _CreateInputResponseSuccess
|
1385
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInputResponseSuccess
|
1386
|
+
|
1387
|
+
interface _CreateInputSecurityGroupResponseSuccess
|
1388
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateInputSecurityGroupResponse]
|
1389
|
+
def security_group: () -> Types::InputSecurityGroup
|
1390
|
+
end
|
1391
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#create_input_security_group-instance_method
|
1392
|
+
def create_input_security_group: (
|
1393
|
+
?tags: Hash[::String, ::String],
|
1394
|
+
?whitelist_rules: Array[
|
1395
|
+
{
|
1396
|
+
cidr: ::String?
|
1397
|
+
},
|
1398
|
+
]
|
1399
|
+
) -> _CreateInputSecurityGroupResponseSuccess
|
1400
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInputSecurityGroupResponseSuccess
|
1401
|
+
|
1402
|
+
interface _CreateMultiplexResponseSuccess
|
1403
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateMultiplexResponse]
|
1404
|
+
def multiplex: () -> Types::Multiplex
|
1405
|
+
end
|
1406
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#create_multiplex-instance_method
|
1407
|
+
def create_multiplex: (
|
1408
|
+
availability_zones: Array[::String],
|
1409
|
+
multiplex_settings: {
|
1410
|
+
maximum_video_buffer_delay_milliseconds: ::Integer?,
|
1411
|
+
transport_stream_bitrate: ::Integer,
|
1412
|
+
transport_stream_id: ::Integer,
|
1413
|
+
transport_stream_reserved_bitrate: ::Integer?
|
1414
|
+
},
|
1415
|
+
name: ::String,
|
1416
|
+
request_id: ::String,
|
1417
|
+
?tags: Hash[::String, ::String]
|
1418
|
+
) -> _CreateMultiplexResponseSuccess
|
1419
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultiplexResponseSuccess
|
1420
|
+
|
1421
|
+
interface _CreateMultiplexProgramResponseSuccess
|
1422
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateMultiplexProgramResponse]
|
1423
|
+
def multiplex_program: () -> Types::MultiplexProgram
|
1424
|
+
end
|
1425
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#create_multiplex_program-instance_method
|
1426
|
+
def create_multiplex_program: (
|
1427
|
+
multiplex_id: ::String,
|
1428
|
+
multiplex_program_settings: {
|
1429
|
+
preferred_channel_pipeline: ("CURRENTLY_ACTIVE" | "PIPELINE_0" | "PIPELINE_1")?,
|
1430
|
+
program_number: ::Integer,
|
1431
|
+
service_descriptor: {
|
1432
|
+
provider_name: ::String,
|
1433
|
+
service_name: ::String
|
1434
|
+
}?,
|
1435
|
+
video_settings: {
|
1436
|
+
constant_bitrate: ::Integer?,
|
1437
|
+
statmux_settings: {
|
1438
|
+
maximum_bitrate: ::Integer?,
|
1439
|
+
minimum_bitrate: ::Integer?,
|
1440
|
+
priority: ::Integer?
|
1441
|
+
}?
|
1442
|
+
}?
|
1443
|
+
},
|
1444
|
+
program_name: ::String,
|
1445
|
+
request_id: ::String
|
1446
|
+
) -> _CreateMultiplexProgramResponseSuccess
|
1447
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultiplexProgramResponseSuccess
|
1448
|
+
|
1449
|
+
interface _CreatePartnerInputResponseSuccess
|
1450
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePartnerInputResponse]
|
1451
|
+
def input: () -> Types::Input
|
1452
|
+
end
|
1453
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#create_partner_input-instance_method
|
1454
|
+
def create_partner_input: (
|
1455
|
+
input_id: ::String,
|
1456
|
+
?request_id: ::String,
|
1457
|
+
?tags: Hash[::String, ::String]
|
1458
|
+
) -> _CreatePartnerInputResponseSuccess
|
1459
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePartnerInputResponseSuccess
|
1460
|
+
|
1461
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#create_tags-instance_method
|
1462
|
+
def create_tags: (
|
1463
|
+
resource_arn: ::String,
|
1464
|
+
?tags: Hash[::String, ::String]
|
1465
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1466
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1467
|
+
|
1468
|
+
interface _DeleteChannelResponseSuccess
|
1469
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteChannelResponse]
|
1470
|
+
def arn: () -> ::String
|
1471
|
+
def cdi_input_specification: () -> Types::CdiInputSpecification
|
1472
|
+
def channel_class: () -> ("STANDARD" | "SINGLE_PIPELINE")
|
1473
|
+
def destinations: () -> ::Array[Types::OutputDestination]
|
1474
|
+
def egress_endpoints: () -> ::Array[Types::ChannelEgressEndpoint]
|
1475
|
+
def encoder_settings: () -> Types::EncoderSettings
|
1476
|
+
def id: () -> ::String
|
1477
|
+
def input_attachments: () -> ::Array[Types::InputAttachment]
|
1478
|
+
def input_specification: () -> Types::InputSpecification
|
1479
|
+
def log_level: () -> ("ERROR" | "WARNING" | "INFO" | "DEBUG" | "DISABLED")
|
1480
|
+
def maintenance: () -> Types::MaintenanceStatus
|
1481
|
+
def name: () -> ::String
|
1482
|
+
def pipeline_details: () -> ::Array[Types::PipelineDetail]
|
1483
|
+
def pipelines_running_count: () -> ::Integer
|
1484
|
+
def role_arn: () -> ::String
|
1485
|
+
def state: () -> ("CREATING" | "CREATE_FAILED" | "IDLE" | "STARTING" | "RUNNING" | "RECOVERING" | "STOPPING" | "DELETING" | "DELETED" | "UPDATING" | "UPDATE_FAILED")
|
1486
|
+
def tags: () -> ::Hash[::String, ::String]
|
1487
|
+
def vpc: () -> Types::VpcOutputSettingsDescription
|
1488
|
+
end
|
1489
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#delete_channel-instance_method
|
1490
|
+
def delete_channel: (
|
1491
|
+
channel_id: ::String
|
1492
|
+
) -> _DeleteChannelResponseSuccess
|
1493
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteChannelResponseSuccess
|
1494
|
+
|
1495
|
+
interface _DeleteInputResponseSuccess
|
1496
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteInputResponse]
|
1497
|
+
end
|
1498
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#delete_input-instance_method
|
1499
|
+
def delete_input: (
|
1500
|
+
input_id: ::String
|
1501
|
+
) -> _DeleteInputResponseSuccess
|
1502
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInputResponseSuccess
|
1503
|
+
|
1504
|
+
interface _DeleteInputSecurityGroupResponseSuccess
|
1505
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteInputSecurityGroupResponse]
|
1506
|
+
end
|
1507
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#delete_input_security_group-instance_method
|
1508
|
+
def delete_input_security_group: (
|
1509
|
+
input_security_group_id: ::String
|
1510
|
+
) -> _DeleteInputSecurityGroupResponseSuccess
|
1511
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInputSecurityGroupResponseSuccess
|
1512
|
+
|
1513
|
+
interface _DeleteMultiplexResponseSuccess
|
1514
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMultiplexResponse]
|
1515
|
+
def arn: () -> ::String
|
1516
|
+
def availability_zones: () -> ::Array[::String]
|
1517
|
+
def destinations: () -> ::Array[Types::MultiplexOutputDestination]
|
1518
|
+
def id: () -> ::String
|
1519
|
+
def multiplex_settings: () -> Types::MultiplexSettings
|
1520
|
+
def name: () -> ::String
|
1521
|
+
def pipelines_running_count: () -> ::Integer
|
1522
|
+
def program_count: () -> ::Integer
|
1523
|
+
def state: () -> ("CREATING" | "CREATE_FAILED" | "IDLE" | "STARTING" | "RUNNING" | "RECOVERING" | "STOPPING" | "DELETING" | "DELETED")
|
1524
|
+
def tags: () -> ::Hash[::String, ::String]
|
1525
|
+
end
|
1526
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#delete_multiplex-instance_method
|
1527
|
+
def delete_multiplex: (
|
1528
|
+
multiplex_id: ::String
|
1529
|
+
) -> _DeleteMultiplexResponseSuccess
|
1530
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMultiplexResponseSuccess
|
1531
|
+
|
1532
|
+
interface _DeleteMultiplexProgramResponseSuccess
|
1533
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMultiplexProgramResponse]
|
1534
|
+
def channel_id: () -> ::String
|
1535
|
+
def multiplex_program_settings: () -> Types::MultiplexProgramSettings
|
1536
|
+
def packet_identifiers_map: () -> Types::MultiplexProgramPacketIdentifiersMap
|
1537
|
+
def pipeline_details: () -> ::Array[Types::MultiplexProgramPipelineDetail]
|
1538
|
+
def program_name: () -> ::String
|
1539
|
+
end
|
1540
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#delete_multiplex_program-instance_method
|
1541
|
+
def delete_multiplex_program: (
|
1542
|
+
multiplex_id: ::String,
|
1543
|
+
program_name: ::String
|
1544
|
+
) -> _DeleteMultiplexProgramResponseSuccess
|
1545
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMultiplexProgramResponseSuccess
|
1546
|
+
|
1547
|
+
interface _DeleteReservationResponseSuccess
|
1548
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReservationResponse]
|
1549
|
+
def arn: () -> ::String
|
1550
|
+
def count: () -> ::Integer
|
1551
|
+
def currency_code: () -> ::String
|
1552
|
+
def duration: () -> ::Integer
|
1553
|
+
def duration_units: () -> ("MONTHS")
|
1554
|
+
def end: () -> ::String
|
1555
|
+
def fixed_price: () -> ::Float
|
1556
|
+
def name: () -> ::String
|
1557
|
+
def offering_description: () -> ::String
|
1558
|
+
def offering_id: () -> ::String
|
1559
|
+
def offering_type: () -> ("NO_UPFRONT")
|
1560
|
+
def region: () -> ::String
|
1561
|
+
def renewal_settings: () -> Types::RenewalSettings
|
1562
|
+
def reservation_id: () -> ::String
|
1563
|
+
def resource_specification: () -> Types::ReservationResourceSpecification
|
1564
|
+
def start: () -> ::String
|
1565
|
+
def state: () -> ("ACTIVE" | "EXPIRED" | "CANCELED" | "DELETED")
|
1566
|
+
def tags: () -> ::Hash[::String, ::String]
|
1567
|
+
def usage_price: () -> ::Float
|
1568
|
+
end
|
1569
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#delete_reservation-instance_method
|
1570
|
+
def delete_reservation: (
|
1571
|
+
reservation_id: ::String
|
1572
|
+
) -> _DeleteReservationResponseSuccess
|
1573
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReservationResponseSuccess
|
1574
|
+
|
1575
|
+
interface _DeleteScheduleResponseSuccess
|
1576
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteScheduleResponse]
|
1577
|
+
end
|
1578
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#delete_schedule-instance_method
|
1579
|
+
def delete_schedule: (
|
1580
|
+
channel_id: ::String
|
1581
|
+
) -> _DeleteScheduleResponseSuccess
|
1582
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteScheduleResponseSuccess
|
1583
|
+
|
1584
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#delete_tags-instance_method
|
1585
|
+
def delete_tags: (
|
1586
|
+
resource_arn: ::String,
|
1587
|
+
tag_keys: Array[::String]
|
1588
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1589
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1590
|
+
|
1591
|
+
interface _DescribeAccountConfigurationResponseSuccess
|
1592
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAccountConfigurationResponse]
|
1593
|
+
def account_configuration: () -> Types::AccountConfiguration
|
1594
|
+
end
|
1595
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_account_configuration-instance_method
|
1596
|
+
def describe_account_configuration: (
|
1597
|
+
) -> _DescribeAccountConfigurationResponseSuccess
|
1598
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAccountConfigurationResponseSuccess
|
1599
|
+
|
1600
|
+
interface _DescribeChannelResponseSuccess
|
1601
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChannelResponse]
|
1602
|
+
def arn: () -> ::String
|
1603
|
+
def cdi_input_specification: () -> Types::CdiInputSpecification
|
1604
|
+
def channel_class: () -> ("STANDARD" | "SINGLE_PIPELINE")
|
1605
|
+
def destinations: () -> ::Array[Types::OutputDestination]
|
1606
|
+
def egress_endpoints: () -> ::Array[Types::ChannelEgressEndpoint]
|
1607
|
+
def encoder_settings: () -> Types::EncoderSettings
|
1608
|
+
def id: () -> ::String
|
1609
|
+
def input_attachments: () -> ::Array[Types::InputAttachment]
|
1610
|
+
def input_specification: () -> Types::InputSpecification
|
1611
|
+
def log_level: () -> ("ERROR" | "WARNING" | "INFO" | "DEBUG" | "DISABLED")
|
1612
|
+
def maintenance: () -> Types::MaintenanceStatus
|
1613
|
+
def name: () -> ::String
|
1614
|
+
def pipeline_details: () -> ::Array[Types::PipelineDetail]
|
1615
|
+
def pipelines_running_count: () -> ::Integer
|
1616
|
+
def role_arn: () -> ::String
|
1617
|
+
def state: () -> ("CREATING" | "CREATE_FAILED" | "IDLE" | "STARTING" | "RUNNING" | "RECOVERING" | "STOPPING" | "DELETING" | "DELETED" | "UPDATING" | "UPDATE_FAILED")
|
1618
|
+
def tags: () -> ::Hash[::String, ::String]
|
1619
|
+
def vpc: () -> Types::VpcOutputSettingsDescription
|
1620
|
+
end
|
1621
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_channel-instance_method
|
1622
|
+
def describe_channel: (
|
1623
|
+
channel_id: ::String
|
1624
|
+
) -> _DescribeChannelResponseSuccess
|
1625
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChannelResponseSuccess
|
1626
|
+
|
1627
|
+
interface _DescribeInputResponseSuccess
|
1628
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInputResponse]
|
1629
|
+
def arn: () -> ::String
|
1630
|
+
def attached_channels: () -> ::Array[::String]
|
1631
|
+
def destinations: () -> ::Array[Types::InputDestination]
|
1632
|
+
def id: () -> ::String
|
1633
|
+
def input_class: () -> ("STANDARD" | "SINGLE_PIPELINE")
|
1634
|
+
def input_devices: () -> ::Array[Types::InputDeviceSettings]
|
1635
|
+
def input_partner_ids: () -> ::Array[::String]
|
1636
|
+
def input_source_type: () -> ("STATIC" | "DYNAMIC")
|
1637
|
+
def media_connect_flows: () -> ::Array[Types::MediaConnectFlow]
|
1638
|
+
def name: () -> ::String
|
1639
|
+
def role_arn: () -> ::String
|
1640
|
+
def security_groups: () -> ::Array[::String]
|
1641
|
+
def sources: () -> ::Array[Types::InputSource]
|
1642
|
+
def state: () -> ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
1643
|
+
def tags: () -> ::Hash[::String, ::String]
|
1644
|
+
def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE")
|
1645
|
+
end
|
1646
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_input-instance_method
|
1647
|
+
def describe_input: (
|
1648
|
+
input_id: ::String
|
1649
|
+
) -> _DescribeInputResponseSuccess
|
1650
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInputResponseSuccess
|
1651
|
+
|
1652
|
+
interface _DescribeInputDeviceResponseSuccess
|
1653
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInputDeviceResponse]
|
1654
|
+
def arn: () -> ::String
|
1655
|
+
def connection_state: () -> ("DISCONNECTED" | "CONNECTED")
|
1656
|
+
def device_settings_sync_state: () -> ("SYNCED" | "SYNCING")
|
1657
|
+
def device_update_status: () -> ("UP_TO_DATE" | "NOT_UP_TO_DATE" | "UPDATING")
|
1658
|
+
def hd_device_settings: () -> Types::InputDeviceHdSettings
|
1659
|
+
def id: () -> ::String
|
1660
|
+
def mac_address: () -> ::String
|
1661
|
+
def name: () -> ::String
|
1662
|
+
def network_settings: () -> Types::InputDeviceNetworkSettings
|
1663
|
+
def serial_number: () -> ::String
|
1664
|
+
def type: () -> ("HD" | "UHD")
|
1665
|
+
def uhd_device_settings: () -> Types::InputDeviceUhdSettings
|
1666
|
+
def tags: () -> ::Hash[::String, ::String]
|
1667
|
+
def availability_zone: () -> ::String
|
1668
|
+
def medialive_input_arns: () -> ::Array[::String]
|
1669
|
+
def output_type: () -> ("NONE" | "MEDIALIVE_INPUT" | "MEDIACONNECT_FLOW")
|
1670
|
+
end
|
1671
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_input_device-instance_method
|
1672
|
+
def describe_input_device: (
|
1673
|
+
input_device_id: ::String
|
1674
|
+
) -> _DescribeInputDeviceResponseSuccess
|
1675
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInputDeviceResponseSuccess
|
1676
|
+
|
1677
|
+
interface _DescribeInputDeviceThumbnailResponseSuccess
|
1678
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInputDeviceThumbnailResponse]
|
1679
|
+
def body: () -> ::IO
|
1680
|
+
def content_type: () -> ("image/jpeg")
|
1681
|
+
def content_length: () -> ::Integer
|
1682
|
+
def etag: () -> ::String
|
1683
|
+
def last_modified: () -> ::Time
|
1684
|
+
end
|
1685
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_input_device_thumbnail-instance_method
|
1686
|
+
def describe_input_device_thumbnail: (
|
1687
|
+
input_device_id: ::String,
|
1688
|
+
accept: ("image/jpeg")
|
1689
|
+
) ?{ (*untyped) -> void } -> _DescribeInputDeviceThumbnailResponseSuccess
|
1690
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _DescribeInputDeviceThumbnailResponseSuccess
|
1691
|
+
|
1692
|
+
interface _DescribeInputSecurityGroupResponseSuccess
|
1693
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInputSecurityGroupResponse]
|
1694
|
+
def arn: () -> ::String
|
1695
|
+
def id: () -> ::String
|
1696
|
+
def inputs: () -> ::Array[::String]
|
1697
|
+
def state: () -> ("IDLE" | "IN_USE" | "UPDATING" | "DELETED")
|
1698
|
+
def tags: () -> ::Hash[::String, ::String]
|
1699
|
+
def whitelist_rules: () -> ::Array[Types::InputWhitelistRule]
|
1700
|
+
end
|
1701
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_input_security_group-instance_method
|
1702
|
+
def describe_input_security_group: (
|
1703
|
+
input_security_group_id: ::String
|
1704
|
+
) -> _DescribeInputSecurityGroupResponseSuccess
|
1705
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInputSecurityGroupResponseSuccess
|
1706
|
+
|
1707
|
+
interface _DescribeMultiplexResponseSuccess
|
1708
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMultiplexResponse]
|
1709
|
+
def arn: () -> ::String
|
1710
|
+
def availability_zones: () -> ::Array[::String]
|
1711
|
+
def destinations: () -> ::Array[Types::MultiplexOutputDestination]
|
1712
|
+
def id: () -> ::String
|
1713
|
+
def multiplex_settings: () -> Types::MultiplexSettings
|
1714
|
+
def name: () -> ::String
|
1715
|
+
def pipelines_running_count: () -> ::Integer
|
1716
|
+
def program_count: () -> ::Integer
|
1717
|
+
def state: () -> ("CREATING" | "CREATE_FAILED" | "IDLE" | "STARTING" | "RUNNING" | "RECOVERING" | "STOPPING" | "DELETING" | "DELETED")
|
1718
|
+
def tags: () -> ::Hash[::String, ::String]
|
1719
|
+
end
|
1720
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_multiplex-instance_method
|
1721
|
+
def describe_multiplex: (
|
1722
|
+
multiplex_id: ::String
|
1723
|
+
) -> _DescribeMultiplexResponseSuccess
|
1724
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMultiplexResponseSuccess
|
1725
|
+
|
1726
|
+
interface _DescribeMultiplexProgramResponseSuccess
|
1727
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMultiplexProgramResponse]
|
1728
|
+
def channel_id: () -> ::String
|
1729
|
+
def multiplex_program_settings: () -> Types::MultiplexProgramSettings
|
1730
|
+
def packet_identifiers_map: () -> Types::MultiplexProgramPacketIdentifiersMap
|
1731
|
+
def pipeline_details: () -> ::Array[Types::MultiplexProgramPipelineDetail]
|
1732
|
+
def program_name: () -> ::String
|
1733
|
+
end
|
1734
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_multiplex_program-instance_method
|
1735
|
+
def describe_multiplex_program: (
|
1736
|
+
multiplex_id: ::String,
|
1737
|
+
program_name: ::String
|
1738
|
+
) -> _DescribeMultiplexProgramResponseSuccess
|
1739
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMultiplexProgramResponseSuccess
|
1740
|
+
|
1741
|
+
interface _DescribeOfferingResponseSuccess
|
1742
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeOfferingResponse]
|
1743
|
+
def arn: () -> ::String
|
1744
|
+
def currency_code: () -> ::String
|
1745
|
+
def duration: () -> ::Integer
|
1746
|
+
def duration_units: () -> ("MONTHS")
|
1747
|
+
def fixed_price: () -> ::Float
|
1748
|
+
def offering_description: () -> ::String
|
1749
|
+
def offering_id: () -> ::String
|
1750
|
+
def offering_type: () -> ("NO_UPFRONT")
|
1751
|
+
def region: () -> ::String
|
1752
|
+
def resource_specification: () -> Types::ReservationResourceSpecification
|
1753
|
+
def usage_price: () -> ::Float
|
1754
|
+
end
|
1755
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_offering-instance_method
|
1756
|
+
def describe_offering: (
|
1757
|
+
offering_id: ::String
|
1758
|
+
) -> _DescribeOfferingResponseSuccess
|
1759
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeOfferingResponseSuccess
|
1760
|
+
|
1761
|
+
interface _DescribeReservationResponseSuccess
|
1762
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReservationResponse]
|
1763
|
+
def arn: () -> ::String
|
1764
|
+
def count: () -> ::Integer
|
1765
|
+
def currency_code: () -> ::String
|
1766
|
+
def duration: () -> ::Integer
|
1767
|
+
def duration_units: () -> ("MONTHS")
|
1768
|
+
def end: () -> ::String
|
1769
|
+
def fixed_price: () -> ::Float
|
1770
|
+
def name: () -> ::String
|
1771
|
+
def offering_description: () -> ::String
|
1772
|
+
def offering_id: () -> ::String
|
1773
|
+
def offering_type: () -> ("NO_UPFRONT")
|
1774
|
+
def region: () -> ::String
|
1775
|
+
def renewal_settings: () -> Types::RenewalSettings
|
1776
|
+
def reservation_id: () -> ::String
|
1777
|
+
def resource_specification: () -> Types::ReservationResourceSpecification
|
1778
|
+
def start: () -> ::String
|
1779
|
+
def state: () -> ("ACTIVE" | "EXPIRED" | "CANCELED" | "DELETED")
|
1780
|
+
def tags: () -> ::Hash[::String, ::String]
|
1781
|
+
def usage_price: () -> ::Float
|
1782
|
+
end
|
1783
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_reservation-instance_method
|
1784
|
+
def describe_reservation: (
|
1785
|
+
reservation_id: ::String
|
1786
|
+
) -> _DescribeReservationResponseSuccess
|
1787
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReservationResponseSuccess
|
1788
|
+
|
1789
|
+
interface _DescribeScheduleResponseSuccess
|
1790
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeScheduleResponse]
|
1791
|
+
def next_token: () -> ::String
|
1792
|
+
def schedule_actions: () -> ::Array[Types::ScheduleAction]
|
1793
|
+
end
|
1794
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_schedule-instance_method
|
1795
|
+
def describe_schedule: (
|
1796
|
+
channel_id: ::String,
|
1797
|
+
?max_results: ::Integer,
|
1798
|
+
?next_token: ::String
|
1799
|
+
) -> _DescribeScheduleResponseSuccess
|
1800
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeScheduleResponseSuccess
|
1801
|
+
|
1802
|
+
interface _DescribeThumbnailsResponseSuccess
|
1803
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeThumbnailsResponse]
|
1804
|
+
def thumbnail_details: () -> ::Array[Types::ThumbnailDetail]
|
1805
|
+
end
|
1806
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_thumbnails-instance_method
|
1807
|
+
def describe_thumbnails: (
|
1808
|
+
channel_id: ::String,
|
1809
|
+
pipeline_id: ::String,
|
1810
|
+
thumbnail_type: ::String
|
1811
|
+
) -> _DescribeThumbnailsResponseSuccess
|
1812
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeThumbnailsResponseSuccess
|
1813
|
+
|
1814
|
+
interface _ListChannelsResponseSuccess
|
1815
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListChannelsResponse]
|
1816
|
+
def channels: () -> ::Array[Types::ChannelSummary]
|
1817
|
+
def next_token: () -> ::String
|
1818
|
+
end
|
1819
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#list_channels-instance_method
|
1820
|
+
def list_channels: (
|
1821
|
+
?max_results: ::Integer,
|
1822
|
+
?next_token: ::String
|
1823
|
+
) -> _ListChannelsResponseSuccess
|
1824
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChannelsResponseSuccess
|
1825
|
+
|
1826
|
+
interface _ListInputDeviceTransfersResponseSuccess
|
1827
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListInputDeviceTransfersResponse]
|
1828
|
+
def input_device_transfers: () -> ::Array[Types::TransferringInputDeviceSummary]
|
1829
|
+
def next_token: () -> ::String
|
1830
|
+
end
|
1831
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#list_input_device_transfers-instance_method
|
1832
|
+
def list_input_device_transfers: (
|
1833
|
+
?max_results: ::Integer,
|
1834
|
+
?next_token: ::String,
|
1835
|
+
transfer_type: ::String
|
1836
|
+
) -> _ListInputDeviceTransfersResponseSuccess
|
1837
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInputDeviceTransfersResponseSuccess
|
1838
|
+
|
1839
|
+
interface _ListInputDevicesResponseSuccess
|
1840
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListInputDevicesResponse]
|
1841
|
+
def input_devices: () -> ::Array[Types::InputDeviceSummary]
|
1842
|
+
def next_token: () -> ::String
|
1843
|
+
end
|
1844
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#list_input_devices-instance_method
|
1845
|
+
def list_input_devices: (
|
1846
|
+
?max_results: ::Integer,
|
1847
|
+
?next_token: ::String
|
1848
|
+
) -> _ListInputDevicesResponseSuccess
|
1849
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInputDevicesResponseSuccess
|
1850
|
+
|
1851
|
+
interface _ListInputSecurityGroupsResponseSuccess
|
1852
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListInputSecurityGroupsResponse]
|
1853
|
+
def input_security_groups: () -> ::Array[Types::InputSecurityGroup]
|
1854
|
+
def next_token: () -> ::String
|
1855
|
+
end
|
1856
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#list_input_security_groups-instance_method
|
1857
|
+
def list_input_security_groups: (
|
1858
|
+
?max_results: ::Integer,
|
1859
|
+
?next_token: ::String
|
1860
|
+
) -> _ListInputSecurityGroupsResponseSuccess
|
1861
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInputSecurityGroupsResponseSuccess
|
1862
|
+
|
1863
|
+
interface _ListInputsResponseSuccess
|
1864
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListInputsResponse]
|
1865
|
+
def inputs: () -> ::Array[Types::Input]
|
1866
|
+
def next_token: () -> ::String
|
1867
|
+
end
|
1868
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#list_inputs-instance_method
|
1869
|
+
def list_inputs: (
|
1870
|
+
?max_results: ::Integer,
|
1871
|
+
?next_token: ::String
|
1872
|
+
) -> _ListInputsResponseSuccess
|
1873
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInputsResponseSuccess
|
1874
|
+
|
1875
|
+
interface _ListMultiplexProgramsResponseSuccess
|
1876
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListMultiplexProgramsResponse]
|
1877
|
+
def multiplex_programs: () -> ::Array[Types::MultiplexProgramSummary]
|
1878
|
+
def next_token: () -> ::String
|
1879
|
+
end
|
1880
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#list_multiplex_programs-instance_method
|
1881
|
+
def list_multiplex_programs: (
|
1882
|
+
?max_results: ::Integer,
|
1883
|
+
multiplex_id: ::String,
|
1884
|
+
?next_token: ::String
|
1885
|
+
) -> _ListMultiplexProgramsResponseSuccess
|
1886
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMultiplexProgramsResponseSuccess
|
1887
|
+
|
1888
|
+
interface _ListMultiplexesResponseSuccess
|
1889
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListMultiplexesResponse]
|
1890
|
+
def multiplexes: () -> ::Array[Types::MultiplexSummary]
|
1891
|
+
def next_token: () -> ::String
|
1892
|
+
end
|
1893
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#list_multiplexes-instance_method
|
1894
|
+
def list_multiplexes: (
|
1895
|
+
?max_results: ::Integer,
|
1896
|
+
?next_token: ::String
|
1897
|
+
) -> _ListMultiplexesResponseSuccess
|
1898
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMultiplexesResponseSuccess
|
1899
|
+
|
1900
|
+
interface _ListOfferingsResponseSuccess
|
1901
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListOfferingsResponse]
|
1902
|
+
def next_token: () -> ::String
|
1903
|
+
def offerings: () -> ::Array[Types::Offering]
|
1904
|
+
end
|
1905
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#list_offerings-instance_method
|
1906
|
+
def list_offerings: (
|
1907
|
+
?channel_class: ::String,
|
1908
|
+
?channel_configuration: ::String,
|
1909
|
+
?codec: ::String,
|
1910
|
+
?duration: ::String,
|
1911
|
+
?max_results: ::Integer,
|
1912
|
+
?maximum_bitrate: ::String,
|
1913
|
+
?maximum_framerate: ::String,
|
1914
|
+
?next_token: ::String,
|
1915
|
+
?resolution: ::String,
|
1916
|
+
?resource_type: ::String,
|
1917
|
+
?special_feature: ::String,
|
1918
|
+
?video_quality: ::String
|
1919
|
+
) -> _ListOfferingsResponseSuccess
|
1920
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOfferingsResponseSuccess
|
1921
|
+
|
1922
|
+
interface _ListReservationsResponseSuccess
|
1923
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListReservationsResponse]
|
1924
|
+
def next_token: () -> ::String
|
1925
|
+
def reservations: () -> ::Array[Types::Reservation]
|
1926
|
+
end
|
1927
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#list_reservations-instance_method
|
1928
|
+
def list_reservations: (
|
1929
|
+
?channel_class: ::String,
|
1930
|
+
?codec: ::String,
|
1931
|
+
?max_results: ::Integer,
|
1932
|
+
?maximum_bitrate: ::String,
|
1933
|
+
?maximum_framerate: ::String,
|
1934
|
+
?next_token: ::String,
|
1935
|
+
?resolution: ::String,
|
1936
|
+
?resource_type: ::String,
|
1937
|
+
?special_feature: ::String,
|
1938
|
+
?video_quality: ::String
|
1939
|
+
) -> _ListReservationsResponseSuccess
|
1940
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReservationsResponseSuccess
|
1941
|
+
|
1942
|
+
interface _ListTagsForResourceResponseSuccess
|
1943
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
1944
|
+
def tags: () -> ::Hash[::String, ::String]
|
1945
|
+
end
|
1946
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#list_tags_for_resource-instance_method
|
1947
|
+
def list_tags_for_resource: (
|
1948
|
+
resource_arn: ::String
|
1949
|
+
) -> _ListTagsForResourceResponseSuccess
|
1950
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
1951
|
+
|
1952
|
+
interface _PurchaseOfferingResponseSuccess
|
1953
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PurchaseOfferingResponse]
|
1954
|
+
def reservation: () -> Types::Reservation
|
1955
|
+
end
|
1956
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#purchase_offering-instance_method
|
1957
|
+
def purchase_offering: (
|
1958
|
+
count: ::Integer,
|
1959
|
+
?name: ::String,
|
1960
|
+
offering_id: ::String,
|
1961
|
+
?renewal_settings: {
|
1962
|
+
automatic_renewal: ("DISABLED" | "ENABLED" | "UNAVAILABLE")?,
|
1963
|
+
renewal_count: ::Integer?
|
1964
|
+
},
|
1965
|
+
?request_id: ::String,
|
1966
|
+
?start: ::String,
|
1967
|
+
?tags: Hash[::String, ::String]
|
1968
|
+
) -> _PurchaseOfferingResponseSuccess
|
1969
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PurchaseOfferingResponseSuccess
|
1970
|
+
|
1971
|
+
interface _RebootInputDeviceResponseSuccess
|
1972
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RebootInputDeviceResponse]
|
1973
|
+
end
|
1974
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#reboot_input_device-instance_method
|
1975
|
+
def reboot_input_device: (
|
1976
|
+
?force: ("NO" | "YES"),
|
1977
|
+
input_device_id: ::String
|
1978
|
+
) -> _RebootInputDeviceResponseSuccess
|
1979
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RebootInputDeviceResponseSuccess
|
1980
|
+
|
1981
|
+
interface _RejectInputDeviceTransferResponseSuccess
|
1982
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RejectInputDeviceTransferResponse]
|
1983
|
+
end
|
1984
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#reject_input_device_transfer-instance_method
|
1985
|
+
def reject_input_device_transfer: (
|
1986
|
+
input_device_id: ::String
|
1987
|
+
) -> _RejectInputDeviceTransferResponseSuccess
|
1988
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectInputDeviceTransferResponseSuccess
|
1989
|
+
|
1990
|
+
interface _StartChannelResponseSuccess
|
1991
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartChannelResponse]
|
1992
|
+
def arn: () -> ::String
|
1993
|
+
def cdi_input_specification: () -> Types::CdiInputSpecification
|
1994
|
+
def channel_class: () -> ("STANDARD" | "SINGLE_PIPELINE")
|
1995
|
+
def destinations: () -> ::Array[Types::OutputDestination]
|
1996
|
+
def egress_endpoints: () -> ::Array[Types::ChannelEgressEndpoint]
|
1997
|
+
def encoder_settings: () -> Types::EncoderSettings
|
1998
|
+
def id: () -> ::String
|
1999
|
+
def input_attachments: () -> ::Array[Types::InputAttachment]
|
2000
|
+
def input_specification: () -> Types::InputSpecification
|
2001
|
+
def log_level: () -> ("ERROR" | "WARNING" | "INFO" | "DEBUG" | "DISABLED")
|
2002
|
+
def maintenance: () -> Types::MaintenanceStatus
|
2003
|
+
def name: () -> ::String
|
2004
|
+
def pipeline_details: () -> ::Array[Types::PipelineDetail]
|
2005
|
+
def pipelines_running_count: () -> ::Integer
|
2006
|
+
def role_arn: () -> ::String
|
2007
|
+
def state: () -> ("CREATING" | "CREATE_FAILED" | "IDLE" | "STARTING" | "RUNNING" | "RECOVERING" | "STOPPING" | "DELETING" | "DELETED" | "UPDATING" | "UPDATE_FAILED")
|
2008
|
+
def tags: () -> ::Hash[::String, ::String]
|
2009
|
+
def vpc: () -> Types::VpcOutputSettingsDescription
|
2010
|
+
end
|
2011
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#start_channel-instance_method
|
2012
|
+
def start_channel: (
|
2013
|
+
channel_id: ::String
|
2014
|
+
) -> _StartChannelResponseSuccess
|
2015
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChannelResponseSuccess
|
2016
|
+
|
2017
|
+
interface _StartInputDeviceResponseSuccess
|
2018
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartInputDeviceResponse]
|
2019
|
+
end
|
2020
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#start_input_device-instance_method
|
2021
|
+
def start_input_device: (
|
2022
|
+
input_device_id: ::String
|
2023
|
+
) -> _StartInputDeviceResponseSuccess
|
2024
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartInputDeviceResponseSuccess
|
2025
|
+
|
2026
|
+
interface _StartInputDeviceMaintenanceWindowResponseSuccess
|
2027
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartInputDeviceMaintenanceWindowResponse]
|
2028
|
+
end
|
2029
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#start_input_device_maintenance_window-instance_method
|
2030
|
+
def start_input_device_maintenance_window: (
|
2031
|
+
input_device_id: ::String
|
2032
|
+
) -> _StartInputDeviceMaintenanceWindowResponseSuccess
|
2033
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartInputDeviceMaintenanceWindowResponseSuccess
|
2034
|
+
|
2035
|
+
interface _StartMultiplexResponseSuccess
|
2036
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartMultiplexResponse]
|
2037
|
+
def arn: () -> ::String
|
2038
|
+
def availability_zones: () -> ::Array[::String]
|
2039
|
+
def destinations: () -> ::Array[Types::MultiplexOutputDestination]
|
2040
|
+
def id: () -> ::String
|
2041
|
+
def multiplex_settings: () -> Types::MultiplexSettings
|
2042
|
+
def name: () -> ::String
|
2043
|
+
def pipelines_running_count: () -> ::Integer
|
2044
|
+
def program_count: () -> ::Integer
|
2045
|
+
def state: () -> ("CREATING" | "CREATE_FAILED" | "IDLE" | "STARTING" | "RUNNING" | "RECOVERING" | "STOPPING" | "DELETING" | "DELETED")
|
2046
|
+
def tags: () -> ::Hash[::String, ::String]
|
2047
|
+
end
|
2048
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#start_multiplex-instance_method
|
2049
|
+
def start_multiplex: (
|
2050
|
+
multiplex_id: ::String
|
2051
|
+
) -> _StartMultiplexResponseSuccess
|
2052
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMultiplexResponseSuccess
|
2053
|
+
|
2054
|
+
interface _StopChannelResponseSuccess
|
2055
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopChannelResponse]
|
2056
|
+
def arn: () -> ::String
|
2057
|
+
def cdi_input_specification: () -> Types::CdiInputSpecification
|
2058
|
+
def channel_class: () -> ("STANDARD" | "SINGLE_PIPELINE")
|
2059
|
+
def destinations: () -> ::Array[Types::OutputDestination]
|
2060
|
+
def egress_endpoints: () -> ::Array[Types::ChannelEgressEndpoint]
|
2061
|
+
def encoder_settings: () -> Types::EncoderSettings
|
2062
|
+
def id: () -> ::String
|
2063
|
+
def input_attachments: () -> ::Array[Types::InputAttachment]
|
2064
|
+
def input_specification: () -> Types::InputSpecification
|
2065
|
+
def log_level: () -> ("ERROR" | "WARNING" | "INFO" | "DEBUG" | "DISABLED")
|
2066
|
+
def maintenance: () -> Types::MaintenanceStatus
|
2067
|
+
def name: () -> ::String
|
2068
|
+
def pipeline_details: () -> ::Array[Types::PipelineDetail]
|
2069
|
+
def pipelines_running_count: () -> ::Integer
|
2070
|
+
def role_arn: () -> ::String
|
2071
|
+
def state: () -> ("CREATING" | "CREATE_FAILED" | "IDLE" | "STARTING" | "RUNNING" | "RECOVERING" | "STOPPING" | "DELETING" | "DELETED" | "UPDATING" | "UPDATE_FAILED")
|
2072
|
+
def tags: () -> ::Hash[::String, ::String]
|
2073
|
+
def vpc: () -> Types::VpcOutputSettingsDescription
|
2074
|
+
end
|
2075
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#stop_channel-instance_method
|
2076
|
+
def stop_channel: (
|
2077
|
+
channel_id: ::String
|
2078
|
+
) -> _StopChannelResponseSuccess
|
2079
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopChannelResponseSuccess
|
2080
|
+
|
2081
|
+
interface _StopInputDeviceResponseSuccess
|
2082
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopInputDeviceResponse]
|
2083
|
+
end
|
2084
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#stop_input_device-instance_method
|
2085
|
+
def stop_input_device: (
|
2086
|
+
input_device_id: ::String
|
2087
|
+
) -> _StopInputDeviceResponseSuccess
|
2088
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopInputDeviceResponseSuccess
|
2089
|
+
|
2090
|
+
interface _StopMultiplexResponseSuccess
|
2091
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopMultiplexResponse]
|
2092
|
+
def arn: () -> ::String
|
2093
|
+
def availability_zones: () -> ::Array[::String]
|
2094
|
+
def destinations: () -> ::Array[Types::MultiplexOutputDestination]
|
2095
|
+
def id: () -> ::String
|
2096
|
+
def multiplex_settings: () -> Types::MultiplexSettings
|
2097
|
+
def name: () -> ::String
|
2098
|
+
def pipelines_running_count: () -> ::Integer
|
2099
|
+
def program_count: () -> ::Integer
|
2100
|
+
def state: () -> ("CREATING" | "CREATE_FAILED" | "IDLE" | "STARTING" | "RUNNING" | "RECOVERING" | "STOPPING" | "DELETING" | "DELETED")
|
2101
|
+
def tags: () -> ::Hash[::String, ::String]
|
2102
|
+
end
|
2103
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#stop_multiplex-instance_method
|
2104
|
+
def stop_multiplex: (
|
2105
|
+
multiplex_id: ::String
|
2106
|
+
) -> _StopMultiplexResponseSuccess
|
2107
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopMultiplexResponseSuccess
|
2108
|
+
|
2109
|
+
interface _TransferInputDeviceResponseSuccess
|
2110
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TransferInputDeviceResponse]
|
2111
|
+
end
|
2112
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#transfer_input_device-instance_method
|
2113
|
+
def transfer_input_device: (
|
2114
|
+
input_device_id: ::String,
|
2115
|
+
?target_customer_id: ::String,
|
2116
|
+
?target_region: ::String,
|
2117
|
+
?transfer_message: ::String
|
2118
|
+
) -> _TransferInputDeviceResponseSuccess
|
2119
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TransferInputDeviceResponseSuccess
|
2120
|
+
|
2121
|
+
interface _UpdateAccountConfigurationResponseSuccess
|
2122
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAccountConfigurationResponse]
|
2123
|
+
def account_configuration: () -> Types::AccountConfiguration
|
2124
|
+
end
|
2125
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#update_account_configuration-instance_method
|
2126
|
+
def update_account_configuration: (
|
2127
|
+
?account_configuration: {
|
2128
|
+
kms_key_id: ::String?
|
2129
|
+
}
|
2130
|
+
) -> _UpdateAccountConfigurationResponseSuccess
|
2131
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAccountConfigurationResponseSuccess
|
2132
|
+
|
2133
|
+
interface _UpdateChannelResponseSuccess
|
2134
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateChannelResponse]
|
2135
|
+
def channel: () -> Types::Channel
|
2136
|
+
end
|
2137
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#update_channel-instance_method
|
2138
|
+
def update_channel: (
|
2139
|
+
?cdi_input_specification: {
|
2140
|
+
resolution: ("SD" | "HD" | "FHD" | "UHD")?
|
2141
|
+
},
|
2142
|
+
channel_id: ::String,
|
2143
|
+
?destinations: Array[
|
2144
|
+
{
|
2145
|
+
id: ::String?,
|
2146
|
+
media_package_settings: Array[
|
2147
|
+
{
|
2148
|
+
channel_id: ::String?
|
2149
|
+
},
|
2150
|
+
]?,
|
2151
|
+
multiplex_settings: {
|
2152
|
+
multiplex_id: ::String?,
|
2153
|
+
program_name: ::String?
|
2154
|
+
}?,
|
2155
|
+
settings: Array[
|
2156
|
+
{
|
2157
|
+
password_param: ::String?,
|
2158
|
+
stream_name: ::String?,
|
2159
|
+
url: ::String?,
|
2160
|
+
username: ::String?
|
2161
|
+
},
|
2162
|
+
]?
|
2163
|
+
},
|
2164
|
+
],
|
2165
|
+
?encoder_settings: {
|
2166
|
+
audio_descriptions: Array[
|
2167
|
+
{
|
2168
|
+
audio_normalization_settings: {
|
2169
|
+
algorithm: ("ITU_1770_1" | "ITU_1770_2")?,
|
2170
|
+
algorithm_control: ("CORRECT_AUDIO")?,
|
2171
|
+
target_lkfs: ::Float?
|
2172
|
+
}?,
|
2173
|
+
audio_selector_name: ::String,
|
2174
|
+
audio_type: ("CLEAN_EFFECTS" | "HEARING_IMPAIRED" | "UNDEFINED" | "VISUAL_IMPAIRED_COMMENTARY")?,
|
2175
|
+
audio_type_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
2176
|
+
audio_watermarking_settings: {
|
2177
|
+
nielsen_watermarks_settings: {
|
2178
|
+
nielsen_cbet_settings: {
|
2179
|
+
cbet_check_digit_string: ::String,
|
2180
|
+
cbet_stepaside: ("DISABLED" | "ENABLED"),
|
2181
|
+
csid: ::String
|
2182
|
+
}?,
|
2183
|
+
nielsen_distribution_type: ("FINAL_DISTRIBUTOR" | "PROGRAM_CONTENT")?,
|
2184
|
+
nielsen_naes_ii_nw_settings: {
|
2185
|
+
check_digit_string: ::String,
|
2186
|
+
sid: ::Float,
|
2187
|
+
timezone: ("AMERICA_PUERTO_RICO" | "US_ALASKA" | "US_ARIZONA" | "US_CENTRAL" | "US_EASTERN" | "US_HAWAII" | "US_MOUNTAIN" | "US_PACIFIC" | "US_SAMOA" | "UTC")?
|
2188
|
+
}?
|
2189
|
+
}?
|
2190
|
+
}?,
|
2191
|
+
codec_settings: {
|
2192
|
+
aac_settings: {
|
2193
|
+
bitrate: ::Float?,
|
2194
|
+
coding_mode: ("AD_RECEIVER_MIX" | "CODING_MODE_1_0" | "CODING_MODE_1_1" | "CODING_MODE_2_0" | "CODING_MODE_5_1")?,
|
2195
|
+
input_type: ("BROADCASTER_MIXED_AD" | "NORMAL")?,
|
2196
|
+
profile: ("HEV1" | "HEV2" | "LC")?,
|
2197
|
+
rate_control_mode: ("CBR" | "VBR")?,
|
2198
|
+
raw_format: ("LATM_LOAS" | "NONE")?,
|
2199
|
+
sample_rate: ::Float?,
|
2200
|
+
spec: ("MPEG2" | "MPEG4")?,
|
2201
|
+
vbr_quality: ("HIGH" | "LOW" | "MEDIUM_HIGH" | "MEDIUM_LOW")?
|
2202
|
+
}?,
|
2203
|
+
ac_3_settings: {
|
2204
|
+
bitrate: ::Float?,
|
2205
|
+
bitstream_mode: ("COMMENTARY" | "COMPLETE_MAIN" | "DIALOGUE" | "EMERGENCY" | "HEARING_IMPAIRED" | "MUSIC_AND_EFFECTS" | "VISUALLY_IMPAIRED" | "VOICE_OVER")?,
|
2206
|
+
coding_mode: ("CODING_MODE_1_0" | "CODING_MODE_1_1" | "CODING_MODE_2_0" | "CODING_MODE_3_2_LFE")?,
|
2207
|
+
dialnorm: ::Integer?,
|
2208
|
+
drc_profile: ("FILM_STANDARD" | "NONE")?,
|
2209
|
+
lfe_filter: ("DISABLED" | "ENABLED")?,
|
2210
|
+
metadata_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
2211
|
+
attenuation_control: ("ATTENUATE_3_DB" | "NONE")?
|
2212
|
+
}?,
|
2213
|
+
eac_3_atmos_settings: {
|
2214
|
+
bitrate: ::Float?,
|
2215
|
+
coding_mode: ("CODING_MODE_5_1_4" | "CODING_MODE_7_1_4" | "CODING_MODE_9_1_6")?,
|
2216
|
+
dialnorm: ::Integer?,
|
2217
|
+
drc_line: ("FILM_LIGHT" | "FILM_STANDARD" | "MUSIC_LIGHT" | "MUSIC_STANDARD" | "NONE" | "SPEECH")?,
|
2218
|
+
drc_rf: ("FILM_LIGHT" | "FILM_STANDARD" | "MUSIC_LIGHT" | "MUSIC_STANDARD" | "NONE" | "SPEECH")?,
|
2219
|
+
height_trim: ::Float?,
|
2220
|
+
surround_trim: ::Float?
|
2221
|
+
}?,
|
2222
|
+
eac_3_settings: {
|
2223
|
+
attenuation_control: ("ATTENUATE_3_DB" | "NONE")?,
|
2224
|
+
bitrate: ::Float?,
|
2225
|
+
bitstream_mode: ("COMMENTARY" | "COMPLETE_MAIN" | "EMERGENCY" | "HEARING_IMPAIRED" | "VISUALLY_IMPAIRED")?,
|
2226
|
+
coding_mode: ("CODING_MODE_1_0" | "CODING_MODE_2_0" | "CODING_MODE_3_2")?,
|
2227
|
+
dc_filter: ("DISABLED" | "ENABLED")?,
|
2228
|
+
dialnorm: ::Integer?,
|
2229
|
+
drc_line: ("FILM_LIGHT" | "FILM_STANDARD" | "MUSIC_LIGHT" | "MUSIC_STANDARD" | "NONE" | "SPEECH")?,
|
2230
|
+
drc_rf: ("FILM_LIGHT" | "FILM_STANDARD" | "MUSIC_LIGHT" | "MUSIC_STANDARD" | "NONE" | "SPEECH")?,
|
2231
|
+
lfe_control: ("LFE" | "NO_LFE")?,
|
2232
|
+
lfe_filter: ("DISABLED" | "ENABLED")?,
|
2233
|
+
lo_ro_center_mix_level: ::Float?,
|
2234
|
+
lo_ro_surround_mix_level: ::Float?,
|
2235
|
+
lt_rt_center_mix_level: ::Float?,
|
2236
|
+
lt_rt_surround_mix_level: ::Float?,
|
2237
|
+
metadata_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
2238
|
+
passthrough_control: ("NO_PASSTHROUGH" | "WHEN_POSSIBLE")?,
|
2239
|
+
phase_control: ("NO_SHIFT" | "SHIFT_90_DEGREES")?,
|
2240
|
+
stereo_downmix: ("DPL2" | "LO_RO" | "LT_RT" | "NOT_INDICATED")?,
|
2241
|
+
surround_ex_mode: ("DISABLED" | "ENABLED" | "NOT_INDICATED")?,
|
2242
|
+
surround_mode: ("DISABLED" | "ENABLED" | "NOT_INDICATED")?
|
2243
|
+
}?,
|
2244
|
+
mp_2_settings: {
|
2245
|
+
bitrate: ::Float?,
|
2246
|
+
coding_mode: ("CODING_MODE_1_0" | "CODING_MODE_2_0")?,
|
2247
|
+
sample_rate: ::Float?
|
2248
|
+
}?,
|
2249
|
+
pass_through_settings: {
|
2250
|
+
}?,
|
2251
|
+
wav_settings: {
|
2252
|
+
bit_depth: ::Float?,
|
2253
|
+
coding_mode: ("CODING_MODE_1_0" | "CODING_MODE_2_0" | "CODING_MODE_4_0" | "CODING_MODE_8_0")?,
|
2254
|
+
sample_rate: ::Float?
|
2255
|
+
}?
|
2256
|
+
}?,
|
2257
|
+
language_code: ::String?,
|
2258
|
+
language_code_control: ("FOLLOW_INPUT" | "USE_CONFIGURED")?,
|
2259
|
+
name: ::String,
|
2260
|
+
remix_settings: {
|
2261
|
+
channel_mappings: Array[
|
2262
|
+
{
|
2263
|
+
input_channel_levels: Array[
|
2264
|
+
{
|
2265
|
+
gain: ::Integer,
|
2266
|
+
input_channel: ::Integer
|
2267
|
+
},
|
2268
|
+
],
|
2269
|
+
output_channel: ::Integer
|
2270
|
+
},
|
2271
|
+
],
|
2272
|
+
channels_in: ::Integer?,
|
2273
|
+
channels_out: ::Integer?
|
2274
|
+
}?,
|
2275
|
+
stream_name: ::String?
|
2276
|
+
},
|
2277
|
+
],
|
2278
|
+
avail_blanking: {
|
2279
|
+
avail_blanking_image: {
|
2280
|
+
password_param: ::String?,
|
2281
|
+
uri: ::String,
|
2282
|
+
username: ::String?
|
2283
|
+
}?,
|
2284
|
+
state: ("DISABLED" | "ENABLED")?
|
2285
|
+
}?,
|
2286
|
+
avail_configuration: {
|
2287
|
+
avail_settings: {
|
2288
|
+
esam: {
|
2289
|
+
acquisition_point_id: ::String,
|
2290
|
+
ad_avail_offset: ::Integer?,
|
2291
|
+
password_param: ::String?,
|
2292
|
+
pois_endpoint: ::String,
|
2293
|
+
username: ::String?,
|
2294
|
+
zone_identity: ::String?
|
2295
|
+
}?,
|
2296
|
+
scte_35_splice_insert: {
|
2297
|
+
ad_avail_offset: ::Integer?,
|
2298
|
+
no_regional_blackout_flag: ("FOLLOW" | "IGNORE")?,
|
2299
|
+
web_delivery_allowed_flag: ("FOLLOW" | "IGNORE")?
|
2300
|
+
}?,
|
2301
|
+
scte_35_time_signal_apos: {
|
2302
|
+
ad_avail_offset: ::Integer?,
|
2303
|
+
no_regional_blackout_flag: ("FOLLOW" | "IGNORE")?,
|
2304
|
+
web_delivery_allowed_flag: ("FOLLOW" | "IGNORE")?
|
2305
|
+
}?
|
2306
|
+
}?
|
2307
|
+
}?,
|
2308
|
+
blackout_slate: {
|
2309
|
+
blackout_slate_image: {
|
2310
|
+
password_param: ::String?,
|
2311
|
+
uri: ::String,
|
2312
|
+
username: ::String?
|
2313
|
+
}?,
|
2314
|
+
network_end_blackout: ("DISABLED" | "ENABLED")?,
|
2315
|
+
network_end_blackout_image: {
|
2316
|
+
password_param: ::String?,
|
2317
|
+
uri: ::String,
|
2318
|
+
username: ::String?
|
2319
|
+
}?,
|
2320
|
+
network_id: ::String?,
|
2321
|
+
state: ("DISABLED" | "ENABLED")?
|
2322
|
+
}?,
|
2323
|
+
caption_descriptions: Array[
|
2324
|
+
{
|
2325
|
+
accessibility: ("DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES" | "IMPLEMENTS_ACCESSIBILITY_FEATURES")?,
|
2326
|
+
caption_selector_name: ::String,
|
2327
|
+
destination_settings: {
|
2328
|
+
arib_destination_settings: {
|
2329
|
+
}?,
|
2330
|
+
burn_in_destination_settings: {
|
2331
|
+
alignment: ("CENTERED" | "LEFT" | "SMART")?,
|
2332
|
+
background_color: ("BLACK" | "NONE" | "WHITE")?,
|
2333
|
+
background_opacity: ::Integer?,
|
2334
|
+
font: {
|
2335
|
+
password_param: ::String?,
|
2336
|
+
uri: ::String,
|
2337
|
+
username: ::String?
|
2338
|
+
}?,
|
2339
|
+
font_color: ("BLACK" | "BLUE" | "GREEN" | "RED" | "WHITE" | "YELLOW")?,
|
2340
|
+
font_opacity: ::Integer?,
|
2341
|
+
font_resolution: ::Integer?,
|
2342
|
+
font_size: ::String?,
|
2343
|
+
outline_color: ("BLACK" | "BLUE" | "GREEN" | "RED" | "WHITE" | "YELLOW")?,
|
2344
|
+
outline_size: ::Integer?,
|
2345
|
+
shadow_color: ("BLACK" | "NONE" | "WHITE")?,
|
2346
|
+
shadow_opacity: ::Integer?,
|
2347
|
+
shadow_x_offset: ::Integer?,
|
2348
|
+
shadow_y_offset: ::Integer?,
|
2349
|
+
teletext_grid_control: ("FIXED" | "SCALED")?,
|
2350
|
+
x_position: ::Integer?,
|
2351
|
+
y_position: ::Integer?
|
2352
|
+
}?,
|
2353
|
+
dvb_sub_destination_settings: {
|
2354
|
+
alignment: ("CENTERED" | "LEFT" | "SMART")?,
|
2355
|
+
background_color: ("BLACK" | "NONE" | "WHITE")?,
|
2356
|
+
background_opacity: ::Integer?,
|
2357
|
+
font: {
|
2358
|
+
password_param: ::String?,
|
2359
|
+
uri: ::String,
|
2360
|
+
username: ::String?
|
2361
|
+
}?,
|
2362
|
+
font_color: ("BLACK" | "BLUE" | "GREEN" | "RED" | "WHITE" | "YELLOW")?,
|
2363
|
+
font_opacity: ::Integer?,
|
2364
|
+
font_resolution: ::Integer?,
|
2365
|
+
font_size: ::String?,
|
2366
|
+
outline_color: ("BLACK" | "BLUE" | "GREEN" | "RED" | "WHITE" | "YELLOW")?,
|
2367
|
+
outline_size: ::Integer?,
|
2368
|
+
shadow_color: ("BLACK" | "NONE" | "WHITE")?,
|
2369
|
+
shadow_opacity: ::Integer?,
|
2370
|
+
shadow_x_offset: ::Integer?,
|
2371
|
+
shadow_y_offset: ::Integer?,
|
2372
|
+
teletext_grid_control: ("FIXED" | "SCALED")?,
|
2373
|
+
x_position: ::Integer?,
|
2374
|
+
y_position: ::Integer?
|
2375
|
+
}?,
|
2376
|
+
ebu_tt_d_destination_settings: {
|
2377
|
+
copyright_holder: ::String?,
|
2378
|
+
fill_line_gap: ("DISABLED" | "ENABLED")?,
|
2379
|
+
font_family: ::String?,
|
2380
|
+
style_control: ("EXCLUDE" | "INCLUDE")?
|
2381
|
+
}?,
|
2382
|
+
embedded_destination_settings: {
|
2383
|
+
}?,
|
2384
|
+
embedded_plus_scte_20_destination_settings: {
|
2385
|
+
}?,
|
2386
|
+
rtmp_caption_info_destination_settings: {
|
2387
|
+
}?,
|
2388
|
+
scte_20_plus_embedded_destination_settings: {
|
2389
|
+
}?,
|
2390
|
+
scte_27_destination_settings: {
|
2391
|
+
}?,
|
2392
|
+
smpte_tt_destination_settings: {
|
2393
|
+
}?,
|
2394
|
+
teletext_destination_settings: {
|
2395
|
+
}?,
|
2396
|
+
ttml_destination_settings: {
|
2397
|
+
style_control: ("PASSTHROUGH" | "USE_CONFIGURED")?
|
2398
|
+
}?,
|
2399
|
+
webvtt_destination_settings: {
|
2400
|
+
style_control: ("NO_STYLE_DATA" | "PASSTHROUGH")?
|
2401
|
+
}?
|
2402
|
+
}?,
|
2403
|
+
language_code: ::String?,
|
2404
|
+
language_description: ::String?,
|
2405
|
+
name: ::String
|
2406
|
+
},
|
2407
|
+
]?,
|
2408
|
+
feature_activations: {
|
2409
|
+
input_prepare_schedule_actions: ("DISABLED" | "ENABLED")?,
|
2410
|
+
output_static_image_overlay_schedule_actions: ("DISABLED" | "ENABLED")?
|
2411
|
+
}?,
|
2412
|
+
global_configuration: {
|
2413
|
+
initial_audio_gain: ::Integer?,
|
2414
|
+
input_end_action: ("NONE" | "SWITCH_AND_LOOP_INPUTS")?,
|
2415
|
+
input_loss_behavior: {
|
2416
|
+
black_frame_msec: ::Integer?,
|
2417
|
+
input_loss_image_color: ::String?,
|
2418
|
+
input_loss_image_slate: {
|
2419
|
+
password_param: ::String?,
|
2420
|
+
uri: ::String,
|
2421
|
+
username: ::String?
|
2422
|
+
}?,
|
2423
|
+
input_loss_image_type: ("COLOR" | "SLATE")?,
|
2424
|
+
repeat_frame_msec: ::Integer?
|
2425
|
+
}?,
|
2426
|
+
output_locking_mode: ("EPOCH_LOCKING" | "PIPELINE_LOCKING")?,
|
2427
|
+
output_timing_source: ("INPUT_CLOCK" | "SYSTEM_CLOCK")?,
|
2428
|
+
support_low_framerate_inputs: ("DISABLED" | "ENABLED")?,
|
2429
|
+
output_locking_settings: {
|
2430
|
+
epoch_locking_settings: {
|
2431
|
+
custom_epoch: ::String?,
|
2432
|
+
jam_sync_time: ::String?
|
2433
|
+
}?,
|
2434
|
+
pipeline_locking_settings: {
|
2435
|
+
}?
|
2436
|
+
}?
|
2437
|
+
}?,
|
2438
|
+
motion_graphics_configuration: {
|
2439
|
+
motion_graphics_insertion: ("DISABLED" | "ENABLED")?,
|
2440
|
+
motion_graphics_settings: {
|
2441
|
+
html_motion_graphics_settings: {
|
2442
|
+
}?
|
2443
|
+
}
|
2444
|
+
}?,
|
2445
|
+
nielsen_configuration: {
|
2446
|
+
distributor_id: ::String?,
|
2447
|
+
nielsen_pcm_to_id_3_tagging: ("DISABLED" | "ENABLED")?
|
2448
|
+
}?,
|
2449
|
+
output_groups: Array[
|
2450
|
+
{
|
2451
|
+
name: ::String?,
|
2452
|
+
output_group_settings: {
|
2453
|
+
archive_group_settings: {
|
2454
|
+
archive_cdn_settings: {
|
2455
|
+
archive_s3_settings: {
|
2456
|
+
canned_acl: ("AUTHENTICATED_READ" | "BUCKET_OWNER_FULL_CONTROL" | "BUCKET_OWNER_READ" | "PUBLIC_READ")?
|
2457
|
+
}?
|
2458
|
+
}?,
|
2459
|
+
destination: {
|
2460
|
+
destination_ref_id: ::String?
|
2461
|
+
},
|
2462
|
+
rollover_interval: ::Integer?
|
2463
|
+
}?,
|
2464
|
+
frame_capture_group_settings: {
|
2465
|
+
destination: {
|
2466
|
+
destination_ref_id: ::String?
|
2467
|
+
},
|
2468
|
+
frame_capture_cdn_settings: {
|
2469
|
+
frame_capture_s3_settings: {
|
2470
|
+
canned_acl: ("AUTHENTICATED_READ" | "BUCKET_OWNER_FULL_CONTROL" | "BUCKET_OWNER_READ" | "PUBLIC_READ")?
|
2471
|
+
}?
|
2472
|
+
}?
|
2473
|
+
}?,
|
2474
|
+
hls_group_settings: {
|
2475
|
+
ad_markers: Array[("ADOBE" | "ELEMENTAL" | "ELEMENTAL_SCTE35")]?,
|
2476
|
+
base_url_content: ::String?,
|
2477
|
+
base_url_content_1: ::String?,
|
2478
|
+
base_url_manifest: ::String?,
|
2479
|
+
base_url_manifest_1: ::String?,
|
2480
|
+
caption_language_mappings: Array[
|
2481
|
+
{
|
2482
|
+
caption_channel: ::Integer,
|
2483
|
+
language_code: ::String,
|
2484
|
+
language_description: ::String
|
2485
|
+
},
|
2486
|
+
]?,
|
2487
|
+
caption_language_setting: ("INSERT" | "NONE" | "OMIT")?,
|
2488
|
+
client_cache: ("DISABLED" | "ENABLED")?,
|
2489
|
+
codec_specification: ("RFC_4281" | "RFC_6381")?,
|
2490
|
+
constant_iv: ::String?,
|
2491
|
+
destination: {
|
2492
|
+
destination_ref_id: ::String?
|
2493
|
+
},
|
2494
|
+
directory_structure: ("SINGLE_DIRECTORY" | "SUBDIRECTORY_PER_STREAM")?,
|
2495
|
+
discontinuity_tags: ("INSERT" | "NEVER_INSERT")?,
|
2496
|
+
encryption_type: ("AES128" | "SAMPLE_AES")?,
|
2497
|
+
hls_cdn_settings: {
|
2498
|
+
hls_akamai_settings: {
|
2499
|
+
connection_retry_interval: ::Integer?,
|
2500
|
+
filecache_duration: ::Integer?,
|
2501
|
+
http_transfer_mode: ("CHUNKED" | "NON_CHUNKED")?,
|
2502
|
+
num_retries: ::Integer?,
|
2503
|
+
restart_delay: ::Integer?,
|
2504
|
+
salt: ::String?,
|
2505
|
+
token: ::String?
|
2506
|
+
}?,
|
2507
|
+
hls_basic_put_settings: {
|
2508
|
+
connection_retry_interval: ::Integer?,
|
2509
|
+
filecache_duration: ::Integer?,
|
2510
|
+
num_retries: ::Integer?,
|
2511
|
+
restart_delay: ::Integer?
|
2512
|
+
}?,
|
2513
|
+
hls_media_store_settings: {
|
2514
|
+
connection_retry_interval: ::Integer?,
|
2515
|
+
filecache_duration: ::Integer?,
|
2516
|
+
media_store_storage_class: ("TEMPORAL")?,
|
2517
|
+
num_retries: ::Integer?,
|
2518
|
+
restart_delay: ::Integer?
|
2519
|
+
}?,
|
2520
|
+
hls_s3_settings: {
|
2521
|
+
canned_acl: ("AUTHENTICATED_READ" | "BUCKET_OWNER_FULL_CONTROL" | "BUCKET_OWNER_READ" | "PUBLIC_READ")?
|
2522
|
+
}?,
|
2523
|
+
hls_webdav_settings: {
|
2524
|
+
connection_retry_interval: ::Integer?,
|
2525
|
+
filecache_duration: ::Integer?,
|
2526
|
+
http_transfer_mode: ("CHUNKED" | "NON_CHUNKED")?,
|
2527
|
+
num_retries: ::Integer?,
|
2528
|
+
restart_delay: ::Integer?
|
2529
|
+
}?
|
2530
|
+
}?,
|
2531
|
+
hls_id_3_segment_tagging: ("DISABLED" | "ENABLED")?,
|
2532
|
+
i_frame_only_playlists: ("DISABLED" | "STANDARD")?,
|
2533
|
+
incomplete_segment_behavior: ("AUTO" | "SUPPRESS")?,
|
2534
|
+
index_n_segments: ::Integer?,
|
2535
|
+
input_loss_action: ("EMIT_OUTPUT" | "PAUSE_OUTPUT")?,
|
2536
|
+
iv_in_manifest: ("EXCLUDE" | "INCLUDE")?,
|
2537
|
+
iv_source: ("EXPLICIT" | "FOLLOWS_SEGMENT_NUMBER")?,
|
2538
|
+
keep_segments: ::Integer?,
|
2539
|
+
key_format: ::String?,
|
2540
|
+
key_format_versions: ::String?,
|
2541
|
+
key_provider_settings: {
|
2542
|
+
static_key_settings: {
|
2543
|
+
key_provider_server: {
|
2544
|
+
password_param: ::String?,
|
2545
|
+
uri: ::String,
|
2546
|
+
username: ::String?
|
2547
|
+
}?,
|
2548
|
+
static_key_value: ::String
|
2549
|
+
}?
|
2550
|
+
}?,
|
2551
|
+
manifest_compression: ("GZIP" | "NONE")?,
|
2552
|
+
manifest_duration_format: ("FLOATING_POINT" | "INTEGER")?,
|
2553
|
+
min_segment_length: ::Integer?,
|
2554
|
+
mode: ("LIVE" | "VOD")?,
|
2555
|
+
output_selection: ("MANIFESTS_AND_SEGMENTS" | "SEGMENTS_ONLY" | "VARIANT_MANIFESTS_AND_SEGMENTS")?,
|
2556
|
+
program_date_time: ("EXCLUDE" | "INCLUDE")?,
|
2557
|
+
program_date_time_clock: ("INITIALIZE_FROM_OUTPUT_TIMECODE" | "SYSTEM_CLOCK")?,
|
2558
|
+
program_date_time_period: ::Integer?,
|
2559
|
+
redundant_manifest: ("DISABLED" | "ENABLED")?,
|
2560
|
+
segment_length: ::Integer?,
|
2561
|
+
segmentation_mode: ("USE_INPUT_SEGMENTATION" | "USE_SEGMENT_DURATION")?,
|
2562
|
+
segments_per_subdirectory: ::Integer?,
|
2563
|
+
stream_inf_resolution: ("EXCLUDE" | "INCLUDE")?,
|
2564
|
+
timed_metadata_id_3_frame: ("NONE" | "PRIV" | "TDRL")?,
|
2565
|
+
timed_metadata_id_3_period: ::Integer?,
|
2566
|
+
timestamp_delta_milliseconds: ::Integer?,
|
2567
|
+
ts_file_mode: ("SEGMENTED_FILES" | "SINGLE_FILE")?
|
2568
|
+
}?,
|
2569
|
+
media_package_group_settings: {
|
2570
|
+
destination: {
|
2571
|
+
destination_ref_id: ::String?
|
2572
|
+
}
|
2573
|
+
}?,
|
2574
|
+
ms_smooth_group_settings: {
|
2575
|
+
acquisition_point_id: ::String?,
|
2576
|
+
audio_only_timecode_control: ("PASSTHROUGH" | "USE_CONFIGURED_CLOCK")?,
|
2577
|
+
certificate_mode: ("SELF_SIGNED" | "VERIFY_AUTHENTICITY")?,
|
2578
|
+
connection_retry_interval: ::Integer?,
|
2579
|
+
destination: {
|
2580
|
+
destination_ref_id: ::String?
|
2581
|
+
},
|
2582
|
+
event_id: ::String?,
|
2583
|
+
event_id_mode: ("NO_EVENT_ID" | "USE_CONFIGURED" | "USE_TIMESTAMP")?,
|
2584
|
+
event_stop_behavior: ("NONE" | "SEND_EOS")?,
|
2585
|
+
filecache_duration: ::Integer?,
|
2586
|
+
fragment_length: ::Integer?,
|
2587
|
+
input_loss_action: ("EMIT_OUTPUT" | "PAUSE_OUTPUT")?,
|
2588
|
+
num_retries: ::Integer?,
|
2589
|
+
restart_delay: ::Integer?,
|
2590
|
+
segmentation_mode: ("USE_INPUT_SEGMENTATION" | "USE_SEGMENT_DURATION")?,
|
2591
|
+
send_delay_ms: ::Integer?,
|
2592
|
+
sparse_track_type: ("NONE" | "SCTE_35" | "SCTE_35_WITHOUT_SEGMENTATION")?,
|
2593
|
+
stream_manifest_behavior: ("DO_NOT_SEND" | "SEND")?,
|
2594
|
+
timestamp_offset: ::String?,
|
2595
|
+
timestamp_offset_mode: ("USE_CONFIGURED_OFFSET" | "USE_EVENT_START_DATE")?
|
2596
|
+
}?,
|
2597
|
+
multiplex_group_settings: {
|
2598
|
+
}?,
|
2599
|
+
rtmp_group_settings: {
|
2600
|
+
ad_markers: Array[("ON_CUE_POINT_SCTE35")]?,
|
2601
|
+
authentication_scheme: ("AKAMAI" | "COMMON")?,
|
2602
|
+
cache_full_behavior: ("DISCONNECT_IMMEDIATELY" | "WAIT_FOR_SERVER")?,
|
2603
|
+
cache_length: ::Integer?,
|
2604
|
+
caption_data: ("ALL" | "FIELD1_608" | "FIELD1_AND_FIELD2_608")?,
|
2605
|
+
input_loss_action: ("EMIT_OUTPUT" | "PAUSE_OUTPUT")?,
|
2606
|
+
restart_delay: ::Integer?,
|
2607
|
+
include_filler_nal_units: ("AUTO" | "DROP" | "INCLUDE")?
|
2608
|
+
}?,
|
2609
|
+
udp_group_settings: {
|
2610
|
+
input_loss_action: ("DROP_PROGRAM" | "DROP_TS" | "EMIT_PROGRAM")?,
|
2611
|
+
timed_metadata_id_3_frame: ("NONE" | "PRIV" | "TDRL")?,
|
2612
|
+
timed_metadata_id_3_period: ::Integer?
|
2613
|
+
}?
|
2614
|
+
},
|
2615
|
+
outputs: Array[
|
2616
|
+
{
|
2617
|
+
audio_description_names: Array[::String]?,
|
2618
|
+
caption_description_names: Array[::String]?,
|
2619
|
+
output_name: ::String?,
|
2620
|
+
output_settings: {
|
2621
|
+
archive_output_settings: {
|
2622
|
+
container_settings: {
|
2623
|
+
m2ts_settings: {
|
2624
|
+
absent_input_audio_behavior: ("DROP" | "ENCODE_SILENCE")?,
|
2625
|
+
arib: ("DISABLED" | "ENABLED")?,
|
2626
|
+
arib_captions_pid: ::String?,
|
2627
|
+
arib_captions_pid_control: ("AUTO" | "USE_CONFIGURED")?,
|
2628
|
+
audio_buffer_model: ("ATSC" | "DVB")?,
|
2629
|
+
audio_frames_per_pes: ::Integer?,
|
2630
|
+
audio_pids: ::String?,
|
2631
|
+
audio_stream_type: ("ATSC" | "DVB")?,
|
2632
|
+
bitrate: ::Integer?,
|
2633
|
+
buffer_model: ("MULTIPLEX" | "NONE")?,
|
2634
|
+
cc_descriptor: ("DISABLED" | "ENABLED")?,
|
2635
|
+
dvb_nit_settings: {
|
2636
|
+
network_id: ::Integer,
|
2637
|
+
network_name: ::String,
|
2638
|
+
rep_interval: ::Integer?
|
2639
|
+
}?,
|
2640
|
+
dvb_sdt_settings: {
|
2641
|
+
output_sdt: ("SDT_FOLLOW" | "SDT_FOLLOW_IF_PRESENT" | "SDT_MANUAL" | "SDT_NONE")?,
|
2642
|
+
rep_interval: ::Integer?,
|
2643
|
+
service_name: ::String?,
|
2644
|
+
service_provider_name: ::String?
|
2645
|
+
}?,
|
2646
|
+
dvb_sub_pids: ::String?,
|
2647
|
+
dvb_tdt_settings: {
|
2648
|
+
rep_interval: ::Integer?
|
2649
|
+
}?,
|
2650
|
+
dvb_teletext_pid: ::String?,
|
2651
|
+
ebif: ("NONE" | "PASSTHROUGH")?,
|
2652
|
+
ebp_audio_interval: ("VIDEO_AND_FIXED_INTERVALS" | "VIDEO_INTERVAL")?,
|
2653
|
+
ebp_lookahead_ms: ::Integer?,
|
2654
|
+
ebp_placement: ("VIDEO_AND_AUDIO_PIDS" | "VIDEO_PID")?,
|
2655
|
+
ecm_pid: ::String?,
|
2656
|
+
es_rate_in_pes: ("EXCLUDE" | "INCLUDE")?,
|
2657
|
+
etv_platform_pid: ::String?,
|
2658
|
+
etv_signal_pid: ::String?,
|
2659
|
+
fragment_time: ::Float?,
|
2660
|
+
klv: ("NONE" | "PASSTHROUGH")?,
|
2661
|
+
klv_data_pids: ::String?,
|
2662
|
+
nielsen_id_3_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
2663
|
+
null_packet_bitrate: ::Float?,
|
2664
|
+
pat_interval: ::Integer?,
|
2665
|
+
pcr_control: ("CONFIGURED_PCR_PERIOD" | "PCR_EVERY_PES_PACKET")?,
|
2666
|
+
pcr_period: ::Integer?,
|
2667
|
+
pcr_pid: ::String?,
|
2668
|
+
pmt_interval: ::Integer?,
|
2669
|
+
pmt_pid: ::String?,
|
2670
|
+
program_num: ::Integer?,
|
2671
|
+
rate_mode: ("CBR" | "VBR")?,
|
2672
|
+
scte_27_pids: ::String?,
|
2673
|
+
scte_35_control: ("NONE" | "PASSTHROUGH")?,
|
2674
|
+
scte_35_pid: ::String?,
|
2675
|
+
scte_35_preroll_pullup_milliseconds: ::Float?,
|
2676
|
+
segmentation_markers: ("EBP" | "EBP_LEGACY" | "NONE" | "PSI_SEGSTART" | "RAI_ADAPT" | "RAI_SEGSTART")?,
|
2677
|
+
segmentation_style: ("MAINTAIN_CADENCE" | "RESET_CADENCE")?,
|
2678
|
+
segmentation_time: ::Float?,
|
2679
|
+
timed_metadata_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
2680
|
+
timed_metadata_pid: ::String?,
|
2681
|
+
transport_stream_id: ::Integer?,
|
2682
|
+
video_pid: ::String?
|
2683
|
+
}?,
|
2684
|
+
raw_settings: {
|
2685
|
+
}?
|
2686
|
+
},
|
2687
|
+
extension: ::String?,
|
2688
|
+
name_modifier: ::String?
|
2689
|
+
}?,
|
2690
|
+
frame_capture_output_settings: {
|
2691
|
+
name_modifier: ::String?
|
2692
|
+
}?,
|
2693
|
+
hls_output_settings: {
|
2694
|
+
h265_packaging_type: ("HEV1" | "HVC1")?,
|
2695
|
+
hls_settings: {
|
2696
|
+
audio_only_hls_settings: {
|
2697
|
+
audio_group_id: ::String?,
|
2698
|
+
audio_only_image: {
|
2699
|
+
password_param: ::String?,
|
2700
|
+
uri: ::String,
|
2701
|
+
username: ::String?
|
2702
|
+
}?,
|
2703
|
+
audio_track_type: ("ALTERNATE_AUDIO_AUTO_SELECT" | "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" | "ALTERNATE_AUDIO_NOT_AUTO_SELECT" | "AUDIO_ONLY_VARIANT_STREAM")?,
|
2704
|
+
segment_type: ("AAC" | "FMP4")?
|
2705
|
+
}?,
|
2706
|
+
fmp_4_hls_settings: {
|
2707
|
+
audio_rendition_sets: ::String?,
|
2708
|
+
nielsen_id_3_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
2709
|
+
timed_metadata_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?
|
2710
|
+
}?,
|
2711
|
+
frame_capture_hls_settings: {
|
2712
|
+
}?,
|
2713
|
+
standard_hls_settings: {
|
2714
|
+
audio_rendition_sets: ::String?,
|
2715
|
+
m3u_8_settings: {
|
2716
|
+
audio_frames_per_pes: ::Integer?,
|
2717
|
+
audio_pids: ::String?,
|
2718
|
+
ecm_pid: ::String?,
|
2719
|
+
nielsen_id_3_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
2720
|
+
pat_interval: ::Integer?,
|
2721
|
+
pcr_control: ("CONFIGURED_PCR_PERIOD" | "PCR_EVERY_PES_PACKET")?,
|
2722
|
+
pcr_period: ::Integer?,
|
2723
|
+
pcr_pid: ::String?,
|
2724
|
+
pmt_interval: ::Integer?,
|
2725
|
+
pmt_pid: ::String?,
|
2726
|
+
program_num: ::Integer?,
|
2727
|
+
scte_35_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
2728
|
+
scte_35_pid: ::String?,
|
2729
|
+
timed_metadata_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
2730
|
+
timed_metadata_pid: ::String?,
|
2731
|
+
transport_stream_id: ::Integer?,
|
2732
|
+
video_pid: ::String?,
|
2733
|
+
klv_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
2734
|
+
klv_data_pids: ::String?
|
2735
|
+
}
|
2736
|
+
}?
|
2737
|
+
},
|
2738
|
+
name_modifier: ::String?,
|
2739
|
+
segment_modifier: ::String?
|
2740
|
+
}?,
|
2741
|
+
media_package_output_settings: {
|
2742
|
+
}?,
|
2743
|
+
ms_smooth_output_settings: {
|
2744
|
+
h265_packaging_type: ("HEV1" | "HVC1")?,
|
2745
|
+
name_modifier: ::String?
|
2746
|
+
}?,
|
2747
|
+
multiplex_output_settings: {
|
2748
|
+
destination: {
|
2749
|
+
destination_ref_id: ::String?
|
2750
|
+
}
|
2751
|
+
}?,
|
2752
|
+
rtmp_output_settings: {
|
2753
|
+
certificate_mode: ("SELF_SIGNED" | "VERIFY_AUTHENTICITY")?,
|
2754
|
+
connection_retry_interval: ::Integer?,
|
2755
|
+
destination: {
|
2756
|
+
destination_ref_id: ::String?
|
2757
|
+
},
|
2758
|
+
num_retries: ::Integer?
|
2759
|
+
}?,
|
2760
|
+
udp_output_settings: {
|
2761
|
+
buffer_msec: ::Integer?,
|
2762
|
+
container_settings: {
|
2763
|
+
m2ts_settings: {
|
2764
|
+
absent_input_audio_behavior: ("DROP" | "ENCODE_SILENCE")?,
|
2765
|
+
arib: ("DISABLED" | "ENABLED")?,
|
2766
|
+
arib_captions_pid: ::String?,
|
2767
|
+
arib_captions_pid_control: ("AUTO" | "USE_CONFIGURED")?,
|
2768
|
+
audio_buffer_model: ("ATSC" | "DVB")?,
|
2769
|
+
audio_frames_per_pes: ::Integer?,
|
2770
|
+
audio_pids: ::String?,
|
2771
|
+
audio_stream_type: ("ATSC" | "DVB")?,
|
2772
|
+
bitrate: ::Integer?,
|
2773
|
+
buffer_model: ("MULTIPLEX" | "NONE")?,
|
2774
|
+
cc_descriptor: ("DISABLED" | "ENABLED")?,
|
2775
|
+
dvb_nit_settings: {
|
2776
|
+
network_id: ::Integer,
|
2777
|
+
network_name: ::String,
|
2778
|
+
rep_interval: ::Integer?
|
2779
|
+
}?,
|
2780
|
+
dvb_sdt_settings: {
|
2781
|
+
output_sdt: ("SDT_FOLLOW" | "SDT_FOLLOW_IF_PRESENT" | "SDT_MANUAL" | "SDT_NONE")?,
|
2782
|
+
rep_interval: ::Integer?,
|
2783
|
+
service_name: ::String?,
|
2784
|
+
service_provider_name: ::String?
|
2785
|
+
}?,
|
2786
|
+
dvb_sub_pids: ::String?,
|
2787
|
+
dvb_tdt_settings: {
|
2788
|
+
rep_interval: ::Integer?
|
2789
|
+
}?,
|
2790
|
+
dvb_teletext_pid: ::String?,
|
2791
|
+
ebif: ("NONE" | "PASSTHROUGH")?,
|
2792
|
+
ebp_audio_interval: ("VIDEO_AND_FIXED_INTERVALS" | "VIDEO_INTERVAL")?,
|
2793
|
+
ebp_lookahead_ms: ::Integer?,
|
2794
|
+
ebp_placement: ("VIDEO_AND_AUDIO_PIDS" | "VIDEO_PID")?,
|
2795
|
+
ecm_pid: ::String?,
|
2796
|
+
es_rate_in_pes: ("EXCLUDE" | "INCLUDE")?,
|
2797
|
+
etv_platform_pid: ::String?,
|
2798
|
+
etv_signal_pid: ::String?,
|
2799
|
+
fragment_time: ::Float?,
|
2800
|
+
klv: ("NONE" | "PASSTHROUGH")?,
|
2801
|
+
klv_data_pids: ::String?,
|
2802
|
+
nielsen_id_3_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
2803
|
+
null_packet_bitrate: ::Float?,
|
2804
|
+
pat_interval: ::Integer?,
|
2805
|
+
pcr_control: ("CONFIGURED_PCR_PERIOD" | "PCR_EVERY_PES_PACKET")?,
|
2806
|
+
pcr_period: ::Integer?,
|
2807
|
+
pcr_pid: ::String?,
|
2808
|
+
pmt_interval: ::Integer?,
|
2809
|
+
pmt_pid: ::String?,
|
2810
|
+
program_num: ::Integer?,
|
2811
|
+
rate_mode: ("CBR" | "VBR")?,
|
2812
|
+
scte_27_pids: ::String?,
|
2813
|
+
scte_35_control: ("NONE" | "PASSTHROUGH")?,
|
2814
|
+
scte_35_pid: ::String?,
|
2815
|
+
scte_35_preroll_pullup_milliseconds: ::Float?,
|
2816
|
+
segmentation_markers: ("EBP" | "EBP_LEGACY" | "NONE" | "PSI_SEGSTART" | "RAI_ADAPT" | "RAI_SEGSTART")?,
|
2817
|
+
segmentation_style: ("MAINTAIN_CADENCE" | "RESET_CADENCE")?,
|
2818
|
+
segmentation_time: ::Float?,
|
2819
|
+
timed_metadata_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
|
2820
|
+
timed_metadata_pid: ::String?,
|
2821
|
+
transport_stream_id: ::Integer?,
|
2822
|
+
video_pid: ::String?
|
2823
|
+
}?
|
2824
|
+
},
|
2825
|
+
destination: {
|
2826
|
+
destination_ref_id: ::String?
|
2827
|
+
},
|
2828
|
+
fec_output_settings: {
|
2829
|
+
column_depth: ::Integer?,
|
2830
|
+
include_fec: ("COLUMN" | "COLUMN_AND_ROW")?,
|
2831
|
+
row_length: ::Integer?
|
2832
|
+
}?
|
2833
|
+
}?
|
2834
|
+
},
|
2835
|
+
video_description_name: ::String?
|
2836
|
+
},
|
2837
|
+
]
|
2838
|
+
},
|
2839
|
+
],
|
2840
|
+
timecode_config: {
|
2841
|
+
source: ("EMBEDDED" | "SYSTEMCLOCK" | "ZEROBASED"),
|
2842
|
+
sync_threshold: ::Integer?
|
2843
|
+
},
|
2844
|
+
video_descriptions: Array[
|
2845
|
+
{
|
2846
|
+
codec_settings: {
|
2847
|
+
frame_capture_settings: {
|
2848
|
+
capture_interval: ::Integer?,
|
2849
|
+
capture_interval_units: ("MILLISECONDS" | "SECONDS")?,
|
2850
|
+
timecode_burnin_settings: {
|
2851
|
+
font_size: ("EXTRA_SMALL_10" | "LARGE_48" | "MEDIUM_32" | "SMALL_16"),
|
2852
|
+
position: ("BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "MIDDLE_CENTER" | "MIDDLE_LEFT" | "MIDDLE_RIGHT" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT"),
|
2853
|
+
prefix: ::String?
|
2854
|
+
}?
|
2855
|
+
}?,
|
2856
|
+
h264_settings: {
|
2857
|
+
adaptive_quantization: ("AUTO" | "HIGH" | "HIGHER" | "LOW" | "MAX" | "MEDIUM" | "OFF")?,
|
2858
|
+
afd_signaling: ("AUTO" | "FIXED" | "NONE")?,
|
2859
|
+
bitrate: ::Integer?,
|
2860
|
+
buf_fill_pct: ::Integer?,
|
2861
|
+
buf_size: ::Integer?,
|
2862
|
+
color_metadata: ("IGNORE" | "INSERT")?,
|
2863
|
+
color_space_settings: {
|
2864
|
+
color_space_passthrough_settings: {
|
2865
|
+
}?,
|
2866
|
+
rec_601_settings: {
|
2867
|
+
}?,
|
2868
|
+
rec_709_settings: {
|
2869
|
+
}?
|
2870
|
+
}?,
|
2871
|
+
entropy_encoding: ("CABAC" | "CAVLC")?,
|
2872
|
+
filter_settings: {
|
2873
|
+
temporal_filter_settings: {
|
2874
|
+
post_filter_sharpening: ("AUTO" | "DISABLED" | "ENABLED")?,
|
2875
|
+
strength: ("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")?
|
2876
|
+
}?
|
2877
|
+
}?,
|
2878
|
+
fixed_afd: ("AFD_0000" | "AFD_0010" | "AFD_0011" | "AFD_0100" | "AFD_1000" | "AFD_1001" | "AFD_1010" | "AFD_1011" | "AFD_1101" | "AFD_1110" | "AFD_1111")?,
|
2879
|
+
flicker_aq: ("DISABLED" | "ENABLED")?,
|
2880
|
+
force_field_pictures: ("DISABLED" | "ENABLED")?,
|
2881
|
+
framerate_control: ("INITIALIZE_FROM_SOURCE" | "SPECIFIED")?,
|
2882
|
+
framerate_denominator: ::Integer?,
|
2883
|
+
framerate_numerator: ::Integer?,
|
2884
|
+
gop_b_reference: ("DISABLED" | "ENABLED")?,
|
2885
|
+
gop_closed_cadence: ::Integer?,
|
2886
|
+
gop_num_b_frames: ::Integer?,
|
2887
|
+
gop_size: ::Float?,
|
2888
|
+
gop_size_units: ("FRAMES" | "SECONDS")?,
|
2889
|
+
level: ("H264_LEVEL_1" | "H264_LEVEL_1_1" | "H264_LEVEL_1_2" | "H264_LEVEL_1_3" | "H264_LEVEL_2" | "H264_LEVEL_2_1" | "H264_LEVEL_2_2" | "H264_LEVEL_3" | "H264_LEVEL_3_1" | "H264_LEVEL_3_2" | "H264_LEVEL_4" | "H264_LEVEL_4_1" | "H264_LEVEL_4_2" | "H264_LEVEL_5" | "H264_LEVEL_5_1" | "H264_LEVEL_5_2" | "H264_LEVEL_AUTO")?,
|
2890
|
+
look_ahead_rate_control: ("HIGH" | "LOW" | "MEDIUM")?,
|
2891
|
+
max_bitrate: ::Integer?,
|
2892
|
+
min_i_interval: ::Integer?,
|
2893
|
+
num_ref_frames: ::Integer?,
|
2894
|
+
par_control: ("INITIALIZE_FROM_SOURCE" | "SPECIFIED")?,
|
2895
|
+
par_denominator: ::Integer?,
|
2896
|
+
par_numerator: ::Integer?,
|
2897
|
+
profile: ("BASELINE" | "HIGH" | "HIGH_10BIT" | "HIGH_422" | "HIGH_422_10BIT" | "MAIN")?,
|
2898
|
+
quality_level: ("ENHANCED_QUALITY" | "STANDARD_QUALITY")?,
|
2899
|
+
qvbr_quality_level: ::Integer?,
|
2900
|
+
rate_control_mode: ("CBR" | "MULTIPLEX" | "QVBR" | "VBR")?,
|
2901
|
+
scan_type: ("INTERLACED" | "PROGRESSIVE")?,
|
2902
|
+
scene_change_detect: ("DISABLED" | "ENABLED")?,
|
2903
|
+
slices: ::Integer?,
|
2904
|
+
softness: ::Integer?,
|
2905
|
+
spatial_aq: ("DISABLED" | "ENABLED")?,
|
2906
|
+
subgop_length: ("DYNAMIC" | "FIXED")?,
|
2907
|
+
syntax: ("DEFAULT" | "RP2027")?,
|
2908
|
+
temporal_aq: ("DISABLED" | "ENABLED")?,
|
2909
|
+
timecode_insertion: ("DISABLED" | "PIC_TIMING_SEI")?,
|
2910
|
+
timecode_burnin_settings: {
|
2911
|
+
font_size: ("EXTRA_SMALL_10" | "LARGE_48" | "MEDIUM_32" | "SMALL_16"),
|
2912
|
+
position: ("BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "MIDDLE_CENTER" | "MIDDLE_LEFT" | "MIDDLE_RIGHT" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT"),
|
2913
|
+
prefix: ::String?
|
2914
|
+
}?
|
2915
|
+
}?,
|
2916
|
+
h265_settings: {
|
2917
|
+
adaptive_quantization: ("AUTO" | "HIGH" | "HIGHER" | "LOW" | "MAX" | "MEDIUM" | "OFF")?,
|
2918
|
+
afd_signaling: ("AUTO" | "FIXED" | "NONE")?,
|
2919
|
+
alternative_transfer_function: ("INSERT" | "OMIT")?,
|
2920
|
+
bitrate: ::Integer?,
|
2921
|
+
buf_size: ::Integer?,
|
2922
|
+
color_metadata: ("IGNORE" | "INSERT")?,
|
2923
|
+
color_space_settings: {
|
2924
|
+
color_space_passthrough_settings: {
|
2925
|
+
}?,
|
2926
|
+
dolby_vision_81_settings: {
|
2927
|
+
}?,
|
2928
|
+
hdr_10_settings: {
|
2929
|
+
max_cll: ::Integer?,
|
2930
|
+
max_fall: ::Integer?
|
2931
|
+
}?,
|
2932
|
+
rec_601_settings: {
|
2933
|
+
}?,
|
2934
|
+
rec_709_settings: {
|
2935
|
+
}?
|
2936
|
+
}?,
|
2937
|
+
filter_settings: {
|
2938
|
+
temporal_filter_settings: {
|
2939
|
+
post_filter_sharpening: ("AUTO" | "DISABLED" | "ENABLED")?,
|
2940
|
+
strength: ("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")?
|
2941
|
+
}?
|
2942
|
+
}?,
|
2943
|
+
fixed_afd: ("AFD_0000" | "AFD_0010" | "AFD_0011" | "AFD_0100" | "AFD_1000" | "AFD_1001" | "AFD_1010" | "AFD_1011" | "AFD_1101" | "AFD_1110" | "AFD_1111")?,
|
2944
|
+
flicker_aq: ("DISABLED" | "ENABLED")?,
|
2945
|
+
framerate_denominator: ::Integer,
|
2946
|
+
framerate_numerator: ::Integer,
|
2947
|
+
gop_closed_cadence: ::Integer?,
|
2948
|
+
gop_size: ::Float?,
|
2949
|
+
gop_size_units: ("FRAMES" | "SECONDS")?,
|
2950
|
+
level: ("H265_LEVEL_1" | "H265_LEVEL_2" | "H265_LEVEL_2_1" | "H265_LEVEL_3" | "H265_LEVEL_3_1" | "H265_LEVEL_4" | "H265_LEVEL_4_1" | "H265_LEVEL_5" | "H265_LEVEL_5_1" | "H265_LEVEL_5_2" | "H265_LEVEL_6" | "H265_LEVEL_6_1" | "H265_LEVEL_6_2" | "H265_LEVEL_AUTO")?,
|
2951
|
+
look_ahead_rate_control: ("HIGH" | "LOW" | "MEDIUM")?,
|
2952
|
+
max_bitrate: ::Integer?,
|
2953
|
+
min_i_interval: ::Integer?,
|
2954
|
+
par_denominator: ::Integer?,
|
2955
|
+
par_numerator: ::Integer?,
|
2956
|
+
profile: ("MAIN" | "MAIN_10BIT")?,
|
2957
|
+
qvbr_quality_level: ::Integer?,
|
2958
|
+
rate_control_mode: ("CBR" | "MULTIPLEX" | "QVBR")?,
|
2959
|
+
scan_type: ("INTERLACED" | "PROGRESSIVE")?,
|
2960
|
+
scene_change_detect: ("DISABLED" | "ENABLED")?,
|
2961
|
+
slices: ::Integer?,
|
2962
|
+
tier: ("HIGH" | "MAIN")?,
|
2963
|
+
timecode_insertion: ("DISABLED" | "PIC_TIMING_SEI")?,
|
2964
|
+
timecode_burnin_settings: {
|
2965
|
+
font_size: ("EXTRA_SMALL_10" | "LARGE_48" | "MEDIUM_32" | "SMALL_16"),
|
2966
|
+
position: ("BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "MIDDLE_CENTER" | "MIDDLE_LEFT" | "MIDDLE_RIGHT" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT"),
|
2967
|
+
prefix: ::String?
|
2968
|
+
}?
|
2969
|
+
}?,
|
2970
|
+
mpeg_2_settings: {
|
2971
|
+
adaptive_quantization: ("AUTO" | "HIGH" | "LOW" | "MEDIUM" | "OFF")?,
|
2972
|
+
afd_signaling: ("AUTO" | "FIXED" | "NONE")?,
|
2973
|
+
color_metadata: ("IGNORE" | "INSERT")?,
|
2974
|
+
color_space: ("AUTO" | "PASSTHROUGH")?,
|
2975
|
+
display_aspect_ratio: ("DISPLAYRATIO16X9" | "DISPLAYRATIO4X3")?,
|
2976
|
+
filter_settings: {
|
2977
|
+
temporal_filter_settings: {
|
2978
|
+
post_filter_sharpening: ("AUTO" | "DISABLED" | "ENABLED")?,
|
2979
|
+
strength: ("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")?
|
2980
|
+
}?
|
2981
|
+
}?,
|
2982
|
+
fixed_afd: ("AFD_0000" | "AFD_0010" | "AFD_0011" | "AFD_0100" | "AFD_1000" | "AFD_1001" | "AFD_1010" | "AFD_1011" | "AFD_1101" | "AFD_1110" | "AFD_1111")?,
|
2983
|
+
framerate_denominator: ::Integer,
|
2984
|
+
framerate_numerator: ::Integer,
|
2985
|
+
gop_closed_cadence: ::Integer?,
|
2986
|
+
gop_num_b_frames: ::Integer?,
|
2987
|
+
gop_size: ::Float?,
|
2988
|
+
gop_size_units: ("FRAMES" | "SECONDS")?,
|
2989
|
+
scan_type: ("INTERLACED" | "PROGRESSIVE")?,
|
2990
|
+
subgop_length: ("DYNAMIC" | "FIXED")?,
|
2991
|
+
timecode_insertion: ("DISABLED" | "GOP_TIMECODE")?,
|
2992
|
+
timecode_burnin_settings: {
|
2993
|
+
font_size: ("EXTRA_SMALL_10" | "LARGE_48" | "MEDIUM_32" | "SMALL_16"),
|
2994
|
+
position: ("BOTTOM_CENTER" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "MIDDLE_CENTER" | "MIDDLE_LEFT" | "MIDDLE_RIGHT" | "TOP_CENTER" | "TOP_LEFT" | "TOP_RIGHT"),
|
2995
|
+
prefix: ::String?
|
2996
|
+
}?
|
2997
|
+
}?
|
2998
|
+
}?,
|
2999
|
+
height: ::Integer?,
|
3000
|
+
name: ::String,
|
3001
|
+
respond_to_afd: ("NONE" | "PASSTHROUGH" | "RESPOND")?,
|
3002
|
+
scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT")?,
|
3003
|
+
sharpness: ::Integer?,
|
3004
|
+
width: ::Integer?
|
3005
|
+
},
|
3006
|
+
],
|
3007
|
+
thumbnail_configuration: {
|
3008
|
+
state: ("AUTO" | "DISABLED")
|
3009
|
+
}?,
|
3010
|
+
color_correction_settings: {
|
3011
|
+
global_color_corrections: Array[
|
3012
|
+
{
|
3013
|
+
input_color_space: ("HDR10" | "HLG_2020" | "REC_601" | "REC_709"),
|
3014
|
+
output_color_space: ("HDR10" | "HLG_2020" | "REC_601" | "REC_709"),
|
3015
|
+
uri: ::String
|
3016
|
+
},
|
3017
|
+
]
|
3018
|
+
}?
|
3019
|
+
},
|
3020
|
+
?input_attachments: Array[
|
3021
|
+
{
|
3022
|
+
automatic_input_failover_settings: {
|
3023
|
+
error_clear_time_msec: ::Integer?,
|
3024
|
+
failover_conditions: Array[
|
3025
|
+
{
|
3026
|
+
failover_condition_settings: {
|
3027
|
+
audio_silence_settings: {
|
3028
|
+
audio_selector_name: ::String,
|
3029
|
+
audio_silence_threshold_msec: ::Integer?
|
3030
|
+
}?,
|
3031
|
+
input_loss_settings: {
|
3032
|
+
input_loss_threshold_msec: ::Integer?
|
3033
|
+
}?,
|
3034
|
+
video_black_settings: {
|
3035
|
+
black_detect_threshold: ::Float?,
|
3036
|
+
video_black_threshold_msec: ::Integer?
|
3037
|
+
}?
|
3038
|
+
}?
|
3039
|
+
},
|
3040
|
+
]?,
|
3041
|
+
input_preference: ("EQUAL_INPUT_PREFERENCE" | "PRIMARY_INPUT_PREFERRED")?,
|
3042
|
+
secondary_input_id: ::String
|
3043
|
+
}?,
|
3044
|
+
input_attachment_name: ::String?,
|
3045
|
+
input_id: ::String?,
|
3046
|
+
input_settings: {
|
3047
|
+
audio_selectors: Array[
|
3048
|
+
{
|
3049
|
+
name: ::String,
|
3050
|
+
selector_settings: {
|
3051
|
+
audio_hls_rendition_selection: {
|
3052
|
+
group_id: ::String,
|
3053
|
+
name: ::String
|
3054
|
+
}?,
|
3055
|
+
audio_language_selection: {
|
3056
|
+
language_code: ::String,
|
3057
|
+
language_selection_policy: ("LOOSE" | "STRICT")?
|
3058
|
+
}?,
|
3059
|
+
audio_pid_selection: {
|
3060
|
+
pid: ::Integer
|
3061
|
+
}?,
|
3062
|
+
audio_track_selection: {
|
3063
|
+
tracks: Array[
|
3064
|
+
{
|
3065
|
+
track: ::Integer
|
3066
|
+
},
|
3067
|
+
],
|
3068
|
+
dolby_e_decode: {
|
3069
|
+
program_selection: ("ALL_CHANNELS" | "PROGRAM_1" | "PROGRAM_2" | "PROGRAM_3" | "PROGRAM_4" | "PROGRAM_5" | "PROGRAM_6" | "PROGRAM_7" | "PROGRAM_8")
|
3070
|
+
}?
|
3071
|
+
}?
|
3072
|
+
}?
|
3073
|
+
},
|
3074
|
+
]?,
|
3075
|
+
caption_selectors: Array[
|
3076
|
+
{
|
3077
|
+
language_code: ::String?,
|
3078
|
+
name: ::String,
|
3079
|
+
selector_settings: {
|
3080
|
+
ancillary_source_settings: {
|
3081
|
+
source_ancillary_channel_number: ::Integer?
|
3082
|
+
}?,
|
3083
|
+
arib_source_settings: {
|
3084
|
+
}?,
|
3085
|
+
dvb_sub_source_settings: {
|
3086
|
+
ocr_language: ("DEU" | "ENG" | "FRA" | "NLD" | "POR" | "SPA")?,
|
3087
|
+
pid: ::Integer?
|
3088
|
+
}?,
|
3089
|
+
embedded_source_settings: {
|
3090
|
+
convert_608_to_708: ("DISABLED" | "UPCONVERT")?,
|
3091
|
+
scte_20_detection: ("AUTO" | "OFF")?,
|
3092
|
+
source_608_channel_number: ::Integer?,
|
3093
|
+
source_608_track_number: ::Integer?
|
3094
|
+
}?,
|
3095
|
+
scte_20_source_settings: {
|
3096
|
+
convert_608_to_708: ("DISABLED" | "UPCONVERT")?,
|
3097
|
+
source_608_channel_number: ::Integer?
|
3098
|
+
}?,
|
3099
|
+
scte_27_source_settings: {
|
3100
|
+
ocr_language: ("DEU" | "ENG" | "FRA" | "NLD" | "POR" | "SPA")?,
|
3101
|
+
pid: ::Integer?
|
3102
|
+
}?,
|
3103
|
+
teletext_source_settings: {
|
3104
|
+
output_rectangle: {
|
3105
|
+
height: ::Float,
|
3106
|
+
left_offset: ::Float,
|
3107
|
+
top_offset: ::Float,
|
3108
|
+
width: ::Float
|
3109
|
+
}?,
|
3110
|
+
page_number: ::String?
|
3111
|
+
}?
|
3112
|
+
}?
|
3113
|
+
},
|
3114
|
+
]?,
|
3115
|
+
deblock_filter: ("DISABLED" | "ENABLED")?,
|
3116
|
+
denoise_filter: ("DISABLED" | "ENABLED")?,
|
3117
|
+
filter_strength: ::Integer?,
|
3118
|
+
input_filter: ("AUTO" | "DISABLED" | "FORCED")?,
|
3119
|
+
network_input_settings: {
|
3120
|
+
hls_input_settings: {
|
3121
|
+
bandwidth: ::Integer?,
|
3122
|
+
buffer_segments: ::Integer?,
|
3123
|
+
retries: ::Integer?,
|
3124
|
+
retry_interval: ::Integer?,
|
3125
|
+
scte_35_source: ("MANIFEST" | "SEGMENTS")?
|
3126
|
+
}?,
|
3127
|
+
server_validation: ("CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME" | "CHECK_CRYPTOGRAPHY_ONLY")?
|
3128
|
+
}?,
|
3129
|
+
scte_35_pid: ::Integer?,
|
3130
|
+
smpte_2038_data_preference: ("IGNORE" | "PREFER")?,
|
3131
|
+
source_end_behavior: ("CONTINUE" | "LOOP")?,
|
3132
|
+
video_selector: {
|
3133
|
+
color_space: ("FOLLOW" | "HDR10" | "HLG_2020" | "REC_601" | "REC_709")?,
|
3134
|
+
color_space_settings: {
|
3135
|
+
hdr_10_settings: {
|
3136
|
+
max_cll: ::Integer?,
|
3137
|
+
max_fall: ::Integer?
|
3138
|
+
}?
|
3139
|
+
}?,
|
3140
|
+
color_space_usage: ("FALLBACK" | "FORCE")?,
|
3141
|
+
selector_settings: {
|
3142
|
+
video_selector_pid: {
|
3143
|
+
pid: ::Integer?
|
3144
|
+
}?,
|
3145
|
+
video_selector_program_id: {
|
3146
|
+
program_id: ::Integer?
|
3147
|
+
}?
|
3148
|
+
}?
|
3149
|
+
}?
|
3150
|
+
}?
|
3151
|
+
},
|
3152
|
+
],
|
3153
|
+
?input_specification: {
|
3154
|
+
codec: ("MPEG2" | "AVC" | "HEVC")?,
|
3155
|
+
maximum_bitrate: ("MAX_10_MBPS" | "MAX_20_MBPS" | "MAX_50_MBPS")?,
|
3156
|
+
resolution: ("SD" | "HD" | "UHD")?
|
3157
|
+
},
|
3158
|
+
?log_level: ("ERROR" | "WARNING" | "INFO" | "DEBUG" | "DISABLED"),
|
3159
|
+
?maintenance: {
|
3160
|
+
maintenance_day: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY")?,
|
3161
|
+
maintenance_scheduled_date: ::String?,
|
3162
|
+
maintenance_start_time: ::String?
|
3163
|
+
},
|
3164
|
+
?name: ::String,
|
3165
|
+
?role_arn: ::String
|
3166
|
+
) -> _UpdateChannelResponseSuccess
|
3167
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelResponseSuccess
|
3168
|
+
|
3169
|
+
interface _UpdateChannelClassResponseSuccess
|
3170
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateChannelClassResponse]
|
3171
|
+
def channel: () -> Types::Channel
|
3172
|
+
end
|
3173
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#update_channel_class-instance_method
|
3174
|
+
def update_channel_class: (
|
3175
|
+
channel_class: ("STANDARD" | "SINGLE_PIPELINE"),
|
3176
|
+
channel_id: ::String,
|
3177
|
+
?destinations: Array[
|
3178
|
+
{
|
3179
|
+
id: ::String?,
|
3180
|
+
media_package_settings: Array[
|
3181
|
+
{
|
3182
|
+
channel_id: ::String?
|
3183
|
+
},
|
3184
|
+
]?,
|
3185
|
+
multiplex_settings: {
|
3186
|
+
multiplex_id: ::String?,
|
3187
|
+
program_name: ::String?
|
3188
|
+
}?,
|
3189
|
+
settings: Array[
|
3190
|
+
{
|
3191
|
+
password_param: ::String?,
|
3192
|
+
stream_name: ::String?,
|
3193
|
+
url: ::String?,
|
3194
|
+
username: ::String?
|
3195
|
+
},
|
3196
|
+
]?
|
3197
|
+
},
|
3198
|
+
]
|
3199
|
+
) -> _UpdateChannelClassResponseSuccess
|
3200
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelClassResponseSuccess
|
3201
|
+
|
3202
|
+
interface _UpdateInputResponseSuccess
|
3203
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateInputResponse]
|
3204
|
+
def input: () -> Types::Input
|
3205
|
+
end
|
3206
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#update_input-instance_method
|
3207
|
+
def update_input: (
|
3208
|
+
?destinations: Array[
|
3209
|
+
{
|
3210
|
+
stream_name: ::String?
|
3211
|
+
},
|
3212
|
+
],
|
3213
|
+
?input_devices: Array[
|
3214
|
+
{
|
3215
|
+
id: ::String?
|
3216
|
+
},
|
3217
|
+
],
|
3218
|
+
input_id: ::String,
|
3219
|
+
?input_security_groups: Array[::String],
|
3220
|
+
?media_connect_flows: Array[
|
3221
|
+
{
|
3222
|
+
flow_arn: ::String?
|
3223
|
+
},
|
3224
|
+
],
|
3225
|
+
?name: ::String,
|
3226
|
+
?role_arn: ::String,
|
3227
|
+
?sources: Array[
|
3228
|
+
{
|
3229
|
+
password_param: ::String?,
|
3230
|
+
url: ::String?,
|
3231
|
+
username: ::String?
|
3232
|
+
},
|
3233
|
+
]
|
3234
|
+
) -> _UpdateInputResponseSuccess
|
3235
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInputResponseSuccess
|
3236
|
+
|
3237
|
+
interface _UpdateInputDeviceResponseSuccess
|
3238
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateInputDeviceResponse]
|
3239
|
+
def arn: () -> ::String
|
3240
|
+
def connection_state: () -> ("DISCONNECTED" | "CONNECTED")
|
3241
|
+
def device_settings_sync_state: () -> ("SYNCED" | "SYNCING")
|
3242
|
+
def device_update_status: () -> ("UP_TO_DATE" | "NOT_UP_TO_DATE" | "UPDATING")
|
3243
|
+
def hd_device_settings: () -> Types::InputDeviceHdSettings
|
3244
|
+
def id: () -> ::String
|
3245
|
+
def mac_address: () -> ::String
|
3246
|
+
def name: () -> ::String
|
3247
|
+
def network_settings: () -> Types::InputDeviceNetworkSettings
|
3248
|
+
def serial_number: () -> ::String
|
3249
|
+
def type: () -> ("HD" | "UHD")
|
3250
|
+
def uhd_device_settings: () -> Types::InputDeviceUhdSettings
|
3251
|
+
def tags: () -> ::Hash[::String, ::String]
|
3252
|
+
def availability_zone: () -> ::String
|
3253
|
+
def medialive_input_arns: () -> ::Array[::String]
|
3254
|
+
def output_type: () -> ("NONE" | "MEDIALIVE_INPUT" | "MEDIACONNECT_FLOW")
|
3255
|
+
end
|
3256
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#update_input_device-instance_method
|
3257
|
+
def update_input_device: (
|
3258
|
+
?hd_device_settings: {
|
3259
|
+
configured_input: ("AUTO" | "HDMI" | "SDI")?,
|
3260
|
+
max_bitrate: ::Integer?,
|
3261
|
+
latency_ms: ::Integer?,
|
3262
|
+
codec: ("HEVC" | "AVC")?,
|
3263
|
+
mediaconnect_settings: {
|
3264
|
+
flow_arn: ::String?,
|
3265
|
+
role_arn: ::String?,
|
3266
|
+
secret_arn: ::String?,
|
3267
|
+
source_name: ::String?
|
3268
|
+
}?,
|
3269
|
+
audio_channel_pairs: Array[
|
3270
|
+
{
|
3271
|
+
id: ::Integer?,
|
3272
|
+
profile: ("DISABLED" | "VBR-AAC_HHE-16000" | "VBR-AAC_HE-64000" | "VBR-AAC_LC-128000" | "CBR-AAC_HQ-192000" | "CBR-AAC_HQ-256000" | "CBR-AAC_HQ-384000" | "CBR-AAC_HQ-512000")?
|
3273
|
+
},
|
3274
|
+
]?
|
3275
|
+
},
|
3276
|
+
input_device_id: ::String,
|
3277
|
+
?name: ::String,
|
3278
|
+
?uhd_device_settings: {
|
3279
|
+
configured_input: ("AUTO" | "HDMI" | "SDI")?,
|
3280
|
+
max_bitrate: ::Integer?,
|
3281
|
+
latency_ms: ::Integer?,
|
3282
|
+
codec: ("HEVC" | "AVC")?,
|
3283
|
+
mediaconnect_settings: {
|
3284
|
+
flow_arn: ::String?,
|
3285
|
+
role_arn: ::String?,
|
3286
|
+
secret_arn: ::String?,
|
3287
|
+
source_name: ::String?
|
3288
|
+
}?,
|
3289
|
+
audio_channel_pairs: Array[
|
3290
|
+
{
|
3291
|
+
id: ::Integer?,
|
3292
|
+
profile: ("DISABLED" | "VBR-AAC_HHE-16000" | "VBR-AAC_HE-64000" | "VBR-AAC_LC-128000" | "CBR-AAC_HQ-192000" | "CBR-AAC_HQ-256000" | "CBR-AAC_HQ-384000" | "CBR-AAC_HQ-512000")?
|
3293
|
+
},
|
3294
|
+
]?
|
3295
|
+
},
|
3296
|
+
?availability_zone: ::String
|
3297
|
+
) -> _UpdateInputDeviceResponseSuccess
|
3298
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInputDeviceResponseSuccess
|
3299
|
+
|
3300
|
+
interface _UpdateInputSecurityGroupResponseSuccess
|
3301
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateInputSecurityGroupResponse]
|
3302
|
+
def security_group: () -> Types::InputSecurityGroup
|
3303
|
+
end
|
3304
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#update_input_security_group-instance_method
|
3305
|
+
def update_input_security_group: (
|
3306
|
+
input_security_group_id: ::String,
|
3307
|
+
?tags: Hash[::String, ::String],
|
3308
|
+
?whitelist_rules: Array[
|
3309
|
+
{
|
3310
|
+
cidr: ::String?
|
3311
|
+
},
|
3312
|
+
]
|
3313
|
+
) -> _UpdateInputSecurityGroupResponseSuccess
|
3314
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInputSecurityGroupResponseSuccess
|
3315
|
+
|
3316
|
+
interface _UpdateMultiplexResponseSuccess
|
3317
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMultiplexResponse]
|
3318
|
+
def multiplex: () -> Types::Multiplex
|
3319
|
+
end
|
3320
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#update_multiplex-instance_method
|
3321
|
+
def update_multiplex: (
|
3322
|
+
multiplex_id: ::String,
|
3323
|
+
?multiplex_settings: {
|
3324
|
+
maximum_video_buffer_delay_milliseconds: ::Integer?,
|
3325
|
+
transport_stream_bitrate: ::Integer,
|
3326
|
+
transport_stream_id: ::Integer,
|
3327
|
+
transport_stream_reserved_bitrate: ::Integer?
|
3328
|
+
},
|
3329
|
+
?name: ::String
|
3330
|
+
) -> _UpdateMultiplexResponseSuccess
|
3331
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMultiplexResponseSuccess
|
3332
|
+
|
3333
|
+
interface _UpdateMultiplexProgramResponseSuccess
|
3334
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMultiplexProgramResponse]
|
3335
|
+
def multiplex_program: () -> Types::MultiplexProgram
|
3336
|
+
end
|
3337
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#update_multiplex_program-instance_method
|
3338
|
+
def update_multiplex_program: (
|
3339
|
+
multiplex_id: ::String,
|
3340
|
+
?multiplex_program_settings: {
|
3341
|
+
preferred_channel_pipeline: ("CURRENTLY_ACTIVE" | "PIPELINE_0" | "PIPELINE_1")?,
|
3342
|
+
program_number: ::Integer,
|
3343
|
+
service_descriptor: {
|
3344
|
+
provider_name: ::String,
|
3345
|
+
service_name: ::String
|
3346
|
+
}?,
|
3347
|
+
video_settings: {
|
3348
|
+
constant_bitrate: ::Integer?,
|
3349
|
+
statmux_settings: {
|
3350
|
+
maximum_bitrate: ::Integer?,
|
3351
|
+
minimum_bitrate: ::Integer?,
|
3352
|
+
priority: ::Integer?
|
3353
|
+
}?
|
3354
|
+
}?
|
3355
|
+
},
|
3356
|
+
program_name: ::String
|
3357
|
+
) -> _UpdateMultiplexProgramResponseSuccess
|
3358
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMultiplexProgramResponseSuccess
|
3359
|
+
|
3360
|
+
interface _UpdateReservationResponseSuccess
|
3361
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReservationResponse]
|
3362
|
+
def reservation: () -> Types::Reservation
|
3363
|
+
end
|
3364
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#update_reservation-instance_method
|
3365
|
+
def update_reservation: (
|
3366
|
+
?name: ::String,
|
3367
|
+
?renewal_settings: {
|
3368
|
+
automatic_renewal: ("DISABLED" | "ENABLED" | "UNAVAILABLE")?,
|
3369
|
+
renewal_count: ::Integer?
|
3370
|
+
},
|
3371
|
+
reservation_id: ::String
|
3372
|
+
) -> _UpdateReservationResponseSuccess
|
3373
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReservationResponseSuccess
|
3374
|
+
|
3375
|
+
interface _RestartChannelPipelinesResponseSuccess
|
3376
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RestartChannelPipelinesResponse]
|
3377
|
+
def arn: () -> ::String
|
3378
|
+
def cdi_input_specification: () -> Types::CdiInputSpecification
|
3379
|
+
def channel_class: () -> ("STANDARD" | "SINGLE_PIPELINE")
|
3380
|
+
def destinations: () -> ::Array[Types::OutputDestination]
|
3381
|
+
def egress_endpoints: () -> ::Array[Types::ChannelEgressEndpoint]
|
3382
|
+
def encoder_settings: () -> Types::EncoderSettings
|
3383
|
+
def id: () -> ::String
|
3384
|
+
def input_attachments: () -> ::Array[Types::InputAttachment]
|
3385
|
+
def input_specification: () -> Types::InputSpecification
|
3386
|
+
def log_level: () -> ("ERROR" | "WARNING" | "INFO" | "DEBUG" | "DISABLED")
|
3387
|
+
def maintenance: () -> Types::MaintenanceStatus
|
3388
|
+
def maintenance_status: () -> ::String
|
3389
|
+
def name: () -> ::String
|
3390
|
+
def pipeline_details: () -> ::Array[Types::PipelineDetail]
|
3391
|
+
def pipelines_running_count: () -> ::Integer
|
3392
|
+
def role_arn: () -> ::String
|
3393
|
+
def state: () -> ("CREATING" | "CREATE_FAILED" | "IDLE" | "STARTING" | "RUNNING" | "RECOVERING" | "STOPPING" | "DELETING" | "DELETED" | "UPDATING" | "UPDATE_FAILED")
|
3394
|
+
def tags: () -> ::Hash[::String, ::String]
|
3395
|
+
def vpc: () -> Types::VpcOutputSettingsDescription
|
3396
|
+
end
|
3397
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#restart_channel_pipelines-instance_method
|
3398
|
+
def restart_channel_pipelines: (
|
3399
|
+
channel_id: ::String,
|
3400
|
+
?pipeline_ids: Array[("PIPELINE_0" | "PIPELINE_1")]
|
3401
|
+
) -> _RestartChannelPipelinesResponseSuccess
|
3402
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestartChannelPipelinesResponseSuccess
|
3403
|
+
|
3404
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#wait_until-instance_method
|
3405
|
+
def wait_until: (:channel_created waiter_name,
|
3406
|
+
channel_id: ::String
|
3407
|
+
) -> Client::_DescribeChannelResponseSuccess
|
3408
|
+
| (:channel_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeChannelResponseSuccess
|
3409
|
+
| (:channel_deleted waiter_name,
|
3410
|
+
channel_id: ::String
|
3411
|
+
) -> Client::_DescribeChannelResponseSuccess
|
3412
|
+
| (:channel_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeChannelResponseSuccess
|
3413
|
+
| (:channel_running waiter_name,
|
3414
|
+
channel_id: ::String
|
3415
|
+
) -> Client::_DescribeChannelResponseSuccess
|
3416
|
+
| (:channel_running waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeChannelResponseSuccess
|
3417
|
+
| (:channel_stopped waiter_name,
|
3418
|
+
channel_id: ::String
|
3419
|
+
) -> Client::_DescribeChannelResponseSuccess
|
3420
|
+
| (:channel_stopped waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeChannelResponseSuccess
|
3421
|
+
| (:input_attached waiter_name,
|
3422
|
+
input_id: ::String
|
3423
|
+
) -> Client::_DescribeInputResponseSuccess
|
3424
|
+
| (:input_attached waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeInputResponseSuccess
|
3425
|
+
| (:input_deleted waiter_name,
|
3426
|
+
input_id: ::String
|
3427
|
+
) -> Client::_DescribeInputResponseSuccess
|
3428
|
+
| (:input_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeInputResponseSuccess
|
3429
|
+
| (:input_detached waiter_name,
|
3430
|
+
input_id: ::String
|
3431
|
+
) -> Client::_DescribeInputResponseSuccess
|
3432
|
+
| (:input_detached waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeInputResponseSuccess
|
3433
|
+
| (:multiplex_created waiter_name,
|
3434
|
+
multiplex_id: ::String
|
3435
|
+
) -> Client::_DescribeMultiplexResponseSuccess
|
3436
|
+
| (:multiplex_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeMultiplexResponseSuccess
|
3437
|
+
| (:multiplex_deleted waiter_name,
|
3438
|
+
multiplex_id: ::String
|
3439
|
+
) -> Client::_DescribeMultiplexResponseSuccess
|
3440
|
+
| (:multiplex_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeMultiplexResponseSuccess
|
3441
|
+
| (:multiplex_running waiter_name,
|
3442
|
+
multiplex_id: ::String
|
3443
|
+
) -> Client::_DescribeMultiplexResponseSuccess
|
3444
|
+
| (:multiplex_running waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeMultiplexResponseSuccess
|
3445
|
+
| (:multiplex_stopped waiter_name,
|
3446
|
+
multiplex_id: ::String
|
3447
|
+
) -> Client::_DescribeMultiplexResponseSuccess
|
3448
|
+
| (:multiplex_stopped waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeMultiplexResponseSuccess
|
3449
|
+
end
|
3450
|
+
end
|
3451
|
+
end
|
3452
|
+
|