aws-sdk-medialive 1.53.0 → 1.58.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-medialive.rb +2 -2
- data/lib/aws-sdk-medialive/client.rb +577 -2
- data/lib/aws-sdk-medialive/client_api.rb +387 -2
- data/lib/aws-sdk-medialive/types.rb +1330 -54
- metadata +4 -4
@@ -159,6 +159,28 @@ module Aws::MediaLive
|
|
159
159
|
include Aws::Structure
|
160
160
|
end
|
161
161
|
|
162
|
+
# @note When making an API call, you may pass AcceptInputDeviceTransferRequest
|
163
|
+
# data as a hash:
|
164
|
+
#
|
165
|
+
# {
|
166
|
+
# input_device_id: "__string", # required
|
167
|
+
# }
|
168
|
+
#
|
169
|
+
# @!attribute [rw] input_device_id
|
170
|
+
# @return [String]
|
171
|
+
#
|
172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransferRequest AWS API Documentation
|
173
|
+
#
|
174
|
+
class AcceptInputDeviceTransferRequest < Struct.new(
|
175
|
+
:input_device_id)
|
176
|
+
SENSITIVE = []
|
177
|
+
include Aws::Structure
|
178
|
+
end
|
179
|
+
|
180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransferResponse AWS API Documentation
|
181
|
+
#
|
182
|
+
class AcceptInputDeviceTransferResponse < Aws::EmptyStructure; end
|
183
|
+
|
162
184
|
# @!attribute [rw] message
|
163
185
|
# @return [String]
|
164
186
|
#
|
@@ -170,6 +192,32 @@ module Aws::MediaLive
|
|
170
192
|
include Aws::Structure
|
171
193
|
end
|
172
194
|
|
195
|
+
# Ancillary Source Settings
|
196
|
+
#
|
197
|
+
# @note When making an API call, you may pass AncillarySourceSettings
|
198
|
+
# data as a hash:
|
199
|
+
#
|
200
|
+
# {
|
201
|
+
# source_ancillary_channel_number: 1,
|
202
|
+
# }
|
203
|
+
#
|
204
|
+
# @!attribute [rw] source_ancillary_channel_number
|
205
|
+
# Specifies the number (1 to 4) of the captions channel you want to
|
206
|
+
# extract from the ancillary captions. If you plan to convert the
|
207
|
+
# ancillary captions to another format, complete this field. If you
|
208
|
+
# plan to choose Embedded as the captions destination in the output
|
209
|
+
# (to pass through all the channels in the ancillary captions), leave
|
210
|
+
# this field blank because MediaLive ignores the field.
|
211
|
+
# @return [Integer]
|
212
|
+
#
|
213
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AncillarySourceSettings AWS API Documentation
|
214
|
+
#
|
215
|
+
class AncillarySourceSettings < Struct.new(
|
216
|
+
:source_ancillary_channel_number)
|
217
|
+
SENSITIVE = []
|
218
|
+
include Aws::Structure
|
219
|
+
end
|
220
|
+
|
173
221
|
# Archive Container Settings
|
174
222
|
#
|
175
223
|
# @note When making an API call, you may pass ArchiveContainerSettings
|
@@ -236,16 +284,23 @@ module Aws::MediaLive
|
|
236
284
|
# transport_stream_id: 1,
|
237
285
|
# video_pid: "__string",
|
238
286
|
# },
|
287
|
+
# raw_settings: {
|
288
|
+
# },
|
239
289
|
# }
|
240
290
|
#
|
241
291
|
# @!attribute [rw] m2ts_settings
|
242
292
|
# M2ts Settings
|
243
293
|
# @return [Types::M2tsSettings]
|
244
294
|
#
|
295
|
+
# @!attribute [rw] raw_settings
|
296
|
+
# Raw Settings
|
297
|
+
# @return [Types::RawSettings]
|
298
|
+
#
|
245
299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ArchiveContainerSettings AWS API Documentation
|
246
300
|
#
|
247
301
|
class ArchiveContainerSettings < Struct.new(
|
248
|
-
:m2ts_settings
|
302
|
+
:m2ts_settings,
|
303
|
+
:raw_settings)
|
249
304
|
SENSITIVE = []
|
250
305
|
include Aws::Structure
|
251
306
|
end
|
@@ -347,6 +402,8 @@ module Aws::MediaLive
|
|
347
402
|
# transport_stream_id: 1,
|
348
403
|
# video_pid: "__string",
|
349
404
|
# },
|
405
|
+
# raw_settings: {
|
406
|
+
# },
|
350
407
|
# },
|
351
408
|
# extension: "__string",
|
352
409
|
# name_modifier: "__string",
|
@@ -480,6 +537,11 @@ module Aws::MediaLive
|
|
480
537
|
# },
|
481
538
|
# pass_through_settings: {
|
482
539
|
# },
|
540
|
+
# wav_settings: {
|
541
|
+
# bit_depth: 1.0,
|
542
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
543
|
+
# sample_rate: 1.0,
|
544
|
+
# },
|
483
545
|
# }
|
484
546
|
#
|
485
547
|
# @!attribute [rw] aac_settings
|
@@ -502,6 +564,10 @@ module Aws::MediaLive
|
|
502
564
|
# Pass Through Settings
|
503
565
|
# @return [Types::PassThroughSettings]
|
504
566
|
#
|
567
|
+
# @!attribute [rw] wav_settings
|
568
|
+
# Wav Settings
|
569
|
+
# @return [Types::WavSettings]
|
570
|
+
#
|
505
571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioCodecSettings AWS API Documentation
|
506
572
|
#
|
507
573
|
class AudioCodecSettings < Struct.new(
|
@@ -509,7 +575,8 @@ module Aws::MediaLive
|
|
509
575
|
:ac_3_settings,
|
510
576
|
:eac_3_settings,
|
511
577
|
:mp_2_settings,
|
512
|
-
:pass_through_settings
|
578
|
+
:pass_through_settings,
|
579
|
+
:wav_settings)
|
513
580
|
SENSITIVE = []
|
514
581
|
include Aws::Structure
|
515
582
|
end
|
@@ -578,6 +645,11 @@ module Aws::MediaLive
|
|
578
645
|
# },
|
579
646
|
# pass_through_settings: {
|
580
647
|
# },
|
648
|
+
# wav_settings: {
|
649
|
+
# bit_depth: 1.0,
|
650
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
651
|
+
# sample_rate: 1.0,
|
652
|
+
# },
|
581
653
|
# },
|
582
654
|
# language_code: "__stringMin1Max35",
|
583
655
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -949,7 +1021,7 @@ module Aws::MediaLive
|
|
949
1021
|
# }
|
950
1022
|
#
|
951
1023
|
# @!attribute [rw] tracks
|
952
|
-
# Selects one or more unique audio tracks from within
|
1024
|
+
# Selects one or more unique audio tracks from within a source.
|
953
1025
|
# @return [Array<Types::AudioTrack>]
|
954
1026
|
#
|
955
1027
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioTrackSelection AWS API Documentation
|
@@ -966,10 +1038,34 @@ module Aws::MediaLive
|
|
966
1038
|
# data as a hash:
|
967
1039
|
#
|
968
1040
|
# {
|
1041
|
+
# error_clear_time_msec: 1,
|
1042
|
+
# failover_conditions: [
|
1043
|
+
# {
|
1044
|
+
# failover_condition_settings: {
|
1045
|
+
# input_loss_settings: {
|
1046
|
+
# input_loss_threshold_msec: 1,
|
1047
|
+
# },
|
1048
|
+
# },
|
1049
|
+
# },
|
1050
|
+
# ],
|
969
1051
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
970
1052
|
# secondary_input_id: "__string", # required
|
971
1053
|
# }
|
972
1054
|
#
|
1055
|
+
# @!attribute [rw] error_clear_time_msec
|
1056
|
+
# This clear time defines the requirement a recovered input must meet
|
1057
|
+
# to be considered healthy. The input must have no failover conditions
|
1058
|
+
# for this length of time. Enter a time in milliseconds. This value is
|
1059
|
+
# particularly important if the input\_preference for the failover
|
1060
|
+
# pair is set to PRIMARY\_INPUT\_PREFERRED, because after this time,
|
1061
|
+
# MediaLive will switch back to the primary input.
|
1062
|
+
# @return [Integer]
|
1063
|
+
#
|
1064
|
+
# @!attribute [rw] failover_conditions
|
1065
|
+
# A list of failover conditions. If any of these conditions occur,
|
1066
|
+
# MediaLive will perform a failover to the other input.
|
1067
|
+
# @return [Array<Types::FailoverCondition>]
|
1068
|
+
#
|
973
1069
|
# @!attribute [rw] input_preference
|
974
1070
|
# Input preference when deciding which input to make active when a
|
975
1071
|
# previously failed input has recovered.
|
@@ -983,6 +1079,8 @@ module Aws::MediaLive
|
|
983
1079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AutomaticInputFailoverSettings AWS API Documentation
|
984
1080
|
#
|
985
1081
|
class AutomaticInputFailoverSettings < Struct.new(
|
1082
|
+
:error_clear_time_msec,
|
1083
|
+
:failover_conditions,
|
986
1084
|
:input_preference,
|
987
1085
|
:secondary_input_id)
|
988
1086
|
SENSITIVE = []
|
@@ -1111,6 +1209,131 @@ module Aws::MediaLive
|
|
1111
1209
|
include Aws::Structure
|
1112
1210
|
end
|
1113
1211
|
|
1212
|
+
# Batch delete resource request
|
1213
|
+
#
|
1214
|
+
# @!attribute [rw] channel_ids
|
1215
|
+
# List of channel IDs
|
1216
|
+
# @return [Array<String>]
|
1217
|
+
#
|
1218
|
+
# @!attribute [rw] input_ids
|
1219
|
+
# List of input IDs
|
1220
|
+
# @return [Array<String>]
|
1221
|
+
#
|
1222
|
+
# @!attribute [rw] input_security_group_ids
|
1223
|
+
# List of input security group IDs
|
1224
|
+
# @return [Array<String>]
|
1225
|
+
#
|
1226
|
+
# @!attribute [rw] multiplex_ids
|
1227
|
+
# List of multiplex IDs
|
1228
|
+
# @return [Array<String>]
|
1229
|
+
#
|
1230
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDelete AWS API Documentation
|
1231
|
+
#
|
1232
|
+
class BatchDelete < Struct.new(
|
1233
|
+
:channel_ids,
|
1234
|
+
:input_ids,
|
1235
|
+
:input_security_group_ids,
|
1236
|
+
:multiplex_ids)
|
1237
|
+
SENSITIVE = []
|
1238
|
+
include Aws::Structure
|
1239
|
+
end
|
1240
|
+
|
1241
|
+
# @note When making an API call, you may pass BatchDeleteRequest
|
1242
|
+
# data as a hash:
|
1243
|
+
#
|
1244
|
+
# {
|
1245
|
+
# channel_ids: ["__string"],
|
1246
|
+
# input_ids: ["__string"],
|
1247
|
+
# input_security_group_ids: ["__string"],
|
1248
|
+
# multiplex_ids: ["__string"],
|
1249
|
+
# }
|
1250
|
+
#
|
1251
|
+
# @!attribute [rw] channel_ids
|
1252
|
+
# @return [Array<String>]
|
1253
|
+
#
|
1254
|
+
# @!attribute [rw] input_ids
|
1255
|
+
# @return [Array<String>]
|
1256
|
+
#
|
1257
|
+
# @!attribute [rw] input_security_group_ids
|
1258
|
+
# @return [Array<String>]
|
1259
|
+
#
|
1260
|
+
# @!attribute [rw] multiplex_ids
|
1261
|
+
# @return [Array<String>]
|
1262
|
+
#
|
1263
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDeleteRequest AWS API Documentation
|
1264
|
+
#
|
1265
|
+
class BatchDeleteRequest < Struct.new(
|
1266
|
+
:channel_ids,
|
1267
|
+
:input_ids,
|
1268
|
+
:input_security_group_ids,
|
1269
|
+
:multiplex_ids)
|
1270
|
+
SENSITIVE = []
|
1271
|
+
include Aws::Structure
|
1272
|
+
end
|
1273
|
+
|
1274
|
+
# @!attribute [rw] failed
|
1275
|
+
# @return [Array<Types::BatchFailedResultModel>]
|
1276
|
+
#
|
1277
|
+
# @!attribute [rw] successful
|
1278
|
+
# @return [Array<Types::BatchSuccessfulResultModel>]
|
1279
|
+
#
|
1280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDeleteResponse AWS API Documentation
|
1281
|
+
#
|
1282
|
+
class BatchDeleteResponse < Struct.new(
|
1283
|
+
:failed,
|
1284
|
+
:successful)
|
1285
|
+
SENSITIVE = []
|
1286
|
+
include Aws::Structure
|
1287
|
+
end
|
1288
|
+
|
1289
|
+
# Batch delete resource results
|
1290
|
+
#
|
1291
|
+
# @!attribute [rw] failed
|
1292
|
+
# List of failed operations
|
1293
|
+
# @return [Array<Types::BatchFailedResultModel>]
|
1294
|
+
#
|
1295
|
+
# @!attribute [rw] successful
|
1296
|
+
# List of successful operations
|
1297
|
+
# @return [Array<Types::BatchSuccessfulResultModel>]
|
1298
|
+
#
|
1299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDeleteResultModel AWS API Documentation
|
1300
|
+
#
|
1301
|
+
class BatchDeleteResultModel < Struct.new(
|
1302
|
+
:failed,
|
1303
|
+
:successful)
|
1304
|
+
SENSITIVE = []
|
1305
|
+
include Aws::Structure
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
# Details from a failed operation
|
1309
|
+
#
|
1310
|
+
# @!attribute [rw] arn
|
1311
|
+
# ARN of the resource
|
1312
|
+
# @return [String]
|
1313
|
+
#
|
1314
|
+
# @!attribute [rw] code
|
1315
|
+
# Error code for the failed operation
|
1316
|
+
# @return [String]
|
1317
|
+
#
|
1318
|
+
# @!attribute [rw] id
|
1319
|
+
# ID of the resource
|
1320
|
+
# @return [String]
|
1321
|
+
#
|
1322
|
+
# @!attribute [rw] message
|
1323
|
+
# Error message for the failed operation
|
1324
|
+
# @return [String]
|
1325
|
+
#
|
1326
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchFailedResultModel AWS API Documentation
|
1327
|
+
#
|
1328
|
+
class BatchFailedResultModel < Struct.new(
|
1329
|
+
:arn,
|
1330
|
+
:code,
|
1331
|
+
:id,
|
1332
|
+
:message)
|
1333
|
+
SENSITIVE = []
|
1334
|
+
include Aws::Structure
|
1335
|
+
end
|
1336
|
+
|
1114
1337
|
# A list of schedule actions to create (in a request) or that have been
|
1115
1338
|
# created (in a response).
|
1116
1339
|
#
|
@@ -1293,6 +1516,182 @@ module Aws::MediaLive
|
|
1293
1516
|
include Aws::Structure
|
1294
1517
|
end
|
1295
1518
|
|
1519
|
+
# Batch start resource request
|
1520
|
+
#
|
1521
|
+
# @!attribute [rw] channel_ids
|
1522
|
+
# List of channel IDs
|
1523
|
+
# @return [Array<String>]
|
1524
|
+
#
|
1525
|
+
# @!attribute [rw] multiplex_ids
|
1526
|
+
# List of multiplex IDs
|
1527
|
+
# @return [Array<String>]
|
1528
|
+
#
|
1529
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStart AWS API Documentation
|
1530
|
+
#
|
1531
|
+
class BatchStart < Struct.new(
|
1532
|
+
:channel_ids,
|
1533
|
+
:multiplex_ids)
|
1534
|
+
SENSITIVE = []
|
1535
|
+
include Aws::Structure
|
1536
|
+
end
|
1537
|
+
|
1538
|
+
# @note When making an API call, you may pass BatchStartRequest
|
1539
|
+
# data as a hash:
|
1540
|
+
#
|
1541
|
+
# {
|
1542
|
+
# channel_ids: ["__string"],
|
1543
|
+
# multiplex_ids: ["__string"],
|
1544
|
+
# }
|
1545
|
+
#
|
1546
|
+
# @!attribute [rw] channel_ids
|
1547
|
+
# @return [Array<String>]
|
1548
|
+
#
|
1549
|
+
# @!attribute [rw] multiplex_ids
|
1550
|
+
# @return [Array<String>]
|
1551
|
+
#
|
1552
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStartRequest AWS API Documentation
|
1553
|
+
#
|
1554
|
+
class BatchStartRequest < Struct.new(
|
1555
|
+
:channel_ids,
|
1556
|
+
:multiplex_ids)
|
1557
|
+
SENSITIVE = []
|
1558
|
+
include Aws::Structure
|
1559
|
+
end
|
1560
|
+
|
1561
|
+
# @!attribute [rw] failed
|
1562
|
+
# @return [Array<Types::BatchFailedResultModel>]
|
1563
|
+
#
|
1564
|
+
# @!attribute [rw] successful
|
1565
|
+
# @return [Array<Types::BatchSuccessfulResultModel>]
|
1566
|
+
#
|
1567
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStartResponse AWS API Documentation
|
1568
|
+
#
|
1569
|
+
class BatchStartResponse < Struct.new(
|
1570
|
+
:failed,
|
1571
|
+
:successful)
|
1572
|
+
SENSITIVE = []
|
1573
|
+
include Aws::Structure
|
1574
|
+
end
|
1575
|
+
|
1576
|
+
# Batch start resource results
|
1577
|
+
#
|
1578
|
+
# @!attribute [rw] failed
|
1579
|
+
# List of failed operations
|
1580
|
+
# @return [Array<Types::BatchFailedResultModel>]
|
1581
|
+
#
|
1582
|
+
# @!attribute [rw] successful
|
1583
|
+
# List of successful operations
|
1584
|
+
# @return [Array<Types::BatchSuccessfulResultModel>]
|
1585
|
+
#
|
1586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStartResultModel AWS API Documentation
|
1587
|
+
#
|
1588
|
+
class BatchStartResultModel < Struct.new(
|
1589
|
+
:failed,
|
1590
|
+
:successful)
|
1591
|
+
SENSITIVE = []
|
1592
|
+
include Aws::Structure
|
1593
|
+
end
|
1594
|
+
|
1595
|
+
# Batch stop resource request
|
1596
|
+
#
|
1597
|
+
# @!attribute [rw] channel_ids
|
1598
|
+
# List of channel IDs
|
1599
|
+
# @return [Array<String>]
|
1600
|
+
#
|
1601
|
+
# @!attribute [rw] multiplex_ids
|
1602
|
+
# List of multiplex IDs
|
1603
|
+
# @return [Array<String>]
|
1604
|
+
#
|
1605
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStop AWS API Documentation
|
1606
|
+
#
|
1607
|
+
class BatchStop < Struct.new(
|
1608
|
+
:channel_ids,
|
1609
|
+
:multiplex_ids)
|
1610
|
+
SENSITIVE = []
|
1611
|
+
include Aws::Structure
|
1612
|
+
end
|
1613
|
+
|
1614
|
+
# @note When making an API call, you may pass BatchStopRequest
|
1615
|
+
# data as a hash:
|
1616
|
+
#
|
1617
|
+
# {
|
1618
|
+
# channel_ids: ["__string"],
|
1619
|
+
# multiplex_ids: ["__string"],
|
1620
|
+
# }
|
1621
|
+
#
|
1622
|
+
# @!attribute [rw] channel_ids
|
1623
|
+
# @return [Array<String>]
|
1624
|
+
#
|
1625
|
+
# @!attribute [rw] multiplex_ids
|
1626
|
+
# @return [Array<String>]
|
1627
|
+
#
|
1628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStopRequest AWS API Documentation
|
1629
|
+
#
|
1630
|
+
class BatchStopRequest < Struct.new(
|
1631
|
+
:channel_ids,
|
1632
|
+
:multiplex_ids)
|
1633
|
+
SENSITIVE = []
|
1634
|
+
include Aws::Structure
|
1635
|
+
end
|
1636
|
+
|
1637
|
+
# @!attribute [rw] failed
|
1638
|
+
# @return [Array<Types::BatchFailedResultModel>]
|
1639
|
+
#
|
1640
|
+
# @!attribute [rw] successful
|
1641
|
+
# @return [Array<Types::BatchSuccessfulResultModel>]
|
1642
|
+
#
|
1643
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStopResponse AWS API Documentation
|
1644
|
+
#
|
1645
|
+
class BatchStopResponse < Struct.new(
|
1646
|
+
:failed,
|
1647
|
+
:successful)
|
1648
|
+
SENSITIVE = []
|
1649
|
+
include Aws::Structure
|
1650
|
+
end
|
1651
|
+
|
1652
|
+
# Batch stop resource results
|
1653
|
+
#
|
1654
|
+
# @!attribute [rw] failed
|
1655
|
+
# List of failed operations
|
1656
|
+
# @return [Array<Types::BatchFailedResultModel>]
|
1657
|
+
#
|
1658
|
+
# @!attribute [rw] successful
|
1659
|
+
# List of successful operations
|
1660
|
+
# @return [Array<Types::BatchSuccessfulResultModel>]
|
1661
|
+
#
|
1662
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStopResultModel AWS API Documentation
|
1663
|
+
#
|
1664
|
+
class BatchStopResultModel < Struct.new(
|
1665
|
+
:failed,
|
1666
|
+
:successful)
|
1667
|
+
SENSITIVE = []
|
1668
|
+
include Aws::Structure
|
1669
|
+
end
|
1670
|
+
|
1671
|
+
# Details from a successful operation
|
1672
|
+
#
|
1673
|
+
# @!attribute [rw] arn
|
1674
|
+
# ARN of the resource
|
1675
|
+
# @return [String]
|
1676
|
+
#
|
1677
|
+
# @!attribute [rw] id
|
1678
|
+
# ID of the resource
|
1679
|
+
# @return [String]
|
1680
|
+
#
|
1681
|
+
# @!attribute [rw] state
|
1682
|
+
# Current state of the resource
|
1683
|
+
# @return [String]
|
1684
|
+
#
|
1685
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchSuccessfulResultModel AWS API Documentation
|
1686
|
+
#
|
1687
|
+
class BatchSuccessfulResultModel < Struct.new(
|
1688
|
+
:arn,
|
1689
|
+
:id,
|
1690
|
+
:state)
|
1691
|
+
SENSITIVE = []
|
1692
|
+
include Aws::Structure
|
1693
|
+
end
|
1694
|
+
|
1296
1695
|
# A request to create actions (add actions to the schedule), delete
|
1297
1696
|
# actions (remove actions from the schedule), or both create and delete
|
1298
1697
|
# actions.
|
@@ -1713,6 +2112,28 @@ module Aws::MediaLive
|
|
1713
2112
|
include Aws::Structure
|
1714
2113
|
end
|
1715
2114
|
|
2115
|
+
# @note When making an API call, you may pass CancelInputDeviceTransferRequest
|
2116
|
+
# data as a hash:
|
2117
|
+
#
|
2118
|
+
# {
|
2119
|
+
# input_device_id: "__string", # required
|
2120
|
+
# }
|
2121
|
+
#
|
2122
|
+
# @!attribute [rw] input_device_id
|
2123
|
+
# @return [String]
|
2124
|
+
#
|
2125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransferRequest AWS API Documentation
|
2126
|
+
#
|
2127
|
+
class CancelInputDeviceTransferRequest < Struct.new(
|
2128
|
+
:input_device_id)
|
2129
|
+
SENSITIVE = []
|
2130
|
+
include Aws::Structure
|
2131
|
+
end
|
2132
|
+
|
2133
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransferResponse AWS API Documentation
|
2134
|
+
#
|
2135
|
+
class CancelInputDeviceTransferResponse < Aws::EmptyStructure; end
|
2136
|
+
|
1716
2137
|
# Caption Description
|
1717
2138
|
#
|
1718
2139
|
# @note When making an API call, you may pass CaptionDescription
|
@@ -2035,6 +2456,9 @@ module Aws::MediaLive
|
|
2035
2456
|
# language_code: "__string",
|
2036
2457
|
# name: "__stringMin1", # required
|
2037
2458
|
# selector_settings: {
|
2459
|
+
# ancillary_source_settings: {
|
2460
|
+
# source_ancillary_channel_number: 1,
|
2461
|
+
# },
|
2038
2462
|
# arib_source_settings: {
|
2039
2463
|
# },
|
2040
2464
|
# dvb_sub_source_settings: {
|
@@ -2090,6 +2514,9 @@ module Aws::MediaLive
|
|
2090
2514
|
# data as a hash:
|
2091
2515
|
#
|
2092
2516
|
# {
|
2517
|
+
# ancillary_source_settings: {
|
2518
|
+
# source_ancillary_channel_number: 1,
|
2519
|
+
# },
|
2093
2520
|
# arib_source_settings: {
|
2094
2521
|
# },
|
2095
2522
|
# dvb_sub_source_settings: {
|
@@ -2113,6 +2540,10 @@ module Aws::MediaLive
|
|
2113
2540
|
# },
|
2114
2541
|
# }
|
2115
2542
|
#
|
2543
|
+
# @!attribute [rw] ancillary_source_settings
|
2544
|
+
# Ancillary Source Settings
|
2545
|
+
# @return [Types::AncillarySourceSettings]
|
2546
|
+
#
|
2116
2547
|
# @!attribute [rw] arib_source_settings
|
2117
2548
|
# Arib Source Settings
|
2118
2549
|
# @return [Types::AribSourceSettings]
|
@@ -2140,6 +2571,7 @@ module Aws::MediaLive
|
|
2140
2571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionSelectorSettings AWS API Documentation
|
2141
2572
|
#
|
2142
2573
|
class CaptionSelectorSettings < Struct.new(
|
2574
|
+
:ancillary_source_settings,
|
2143
2575
|
:arib_source_settings,
|
2144
2576
|
:dvb_sub_source_settings,
|
2145
2577
|
:embedded_source_settings,
|
@@ -2150,10 +2582,33 @@ module Aws::MediaLive
|
|
2150
2582
|
include Aws::Structure
|
2151
2583
|
end
|
2152
2584
|
|
2585
|
+
# @note When making an API call, you may pass CdiInputSpecification
|
2586
|
+
# data as a hash:
|
2587
|
+
#
|
2588
|
+
# {
|
2589
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
2590
|
+
# }
|
2591
|
+
#
|
2592
|
+
# @!attribute [rw] resolution
|
2593
|
+
# Maximum CDI input resolution
|
2594
|
+
# @return [String]
|
2595
|
+
#
|
2596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CdiInputSpecification AWS API Documentation
|
2597
|
+
#
|
2598
|
+
class CdiInputSpecification < Struct.new(
|
2599
|
+
:resolution)
|
2600
|
+
SENSITIVE = []
|
2601
|
+
include Aws::Structure
|
2602
|
+
end
|
2603
|
+
|
2153
2604
|
# @!attribute [rw] arn
|
2154
2605
|
# The unique arn of the channel.
|
2155
2606
|
# @return [String]
|
2156
2607
|
#
|
2608
|
+
# @!attribute [rw] cdi_input_specification
|
2609
|
+
# Specification of CDI inputs for this channel
|
2610
|
+
# @return [Types::CdiInputSpecification]
|
2611
|
+
#
|
2157
2612
|
# @!attribute [rw] channel_class
|
2158
2613
|
# The class for this channel. STANDARD for a channel with two
|
2159
2614
|
# pipelines or SINGLE\_PIPELINE for a channel with one pipeline.
|
@@ -2182,6 +2637,7 @@ module Aws::MediaLive
|
|
2182
2637
|
# @return [Array<Types::InputAttachment>]
|
2183
2638
|
#
|
2184
2639
|
# @!attribute [rw] input_specification
|
2640
|
+
# Specification of network and file inputs for this channel
|
2185
2641
|
# @return [Types::InputSpecification]
|
2186
2642
|
#
|
2187
2643
|
# @!attribute [rw] log_level
|
@@ -2216,6 +2672,7 @@ module Aws::MediaLive
|
|
2216
2672
|
#
|
2217
2673
|
class Channel < Struct.new(
|
2218
2674
|
:arn,
|
2675
|
+
:cdi_input_specification,
|
2219
2676
|
:channel_class,
|
2220
2677
|
:destinations,
|
2221
2678
|
:egress_endpoints,
|
@@ -2266,6 +2723,10 @@ module Aws::MediaLive
|
|
2266
2723
|
# The unique arn of the channel.
|
2267
2724
|
# @return [String]
|
2268
2725
|
#
|
2726
|
+
# @!attribute [rw] cdi_input_specification
|
2727
|
+
# Specification of CDI inputs for this channel
|
2728
|
+
# @return [Types::CdiInputSpecification]
|
2729
|
+
#
|
2269
2730
|
# @!attribute [rw] channel_class
|
2270
2731
|
# The class for this channel. STANDARD for a channel with two
|
2271
2732
|
# pipelines or SINGLE\_PIPELINE for a channel with one pipeline.
|
@@ -2290,6 +2751,7 @@ module Aws::MediaLive
|
|
2290
2751
|
# @return [Array<Types::InputAttachment>]
|
2291
2752
|
#
|
2292
2753
|
# @!attribute [rw] input_specification
|
2754
|
+
# Specification of network and file inputs for this channel
|
2293
2755
|
# @return [Types::InputSpecification]
|
2294
2756
|
#
|
2295
2757
|
# @!attribute [rw] log_level
|
@@ -2320,6 +2782,7 @@ module Aws::MediaLive
|
|
2320
2782
|
#
|
2321
2783
|
class ChannelSummary < Struct.new(
|
2322
2784
|
:arn,
|
2785
|
+
:cdi_input_specification,
|
2323
2786
|
:channel_class,
|
2324
2787
|
:destinations,
|
2325
2788
|
:egress_endpoints,
|
@@ -2355,6 +2818,10 @@ module Aws::MediaLive
|
|
2355
2818
|
include Aws::Structure
|
2356
2819
|
end
|
2357
2820
|
|
2821
|
+
# @!attribute [rw] cdi_input_specification
|
2822
|
+
# Specification of CDI inputs for this channel
|
2823
|
+
# @return [Types::CdiInputSpecification]
|
2824
|
+
#
|
2358
2825
|
# @!attribute [rw] channel_class
|
2359
2826
|
# The class for this channel. STANDARD for a channel with two
|
2360
2827
|
# pipelines or SINGLE\_PIPELINE for a channel with one pipeline.
|
@@ -2372,8 +2839,7 @@ module Aws::MediaLive
|
|
2372
2839
|
# @return [Array<Types::InputAttachment>]
|
2373
2840
|
#
|
2374
2841
|
# @!attribute [rw] input_specification
|
2375
|
-
# Specification of
|
2376
|
-
# codec, etc.)
|
2842
|
+
# Specification of network and file inputs for this channel
|
2377
2843
|
# @return [Types::InputSpecification]
|
2378
2844
|
#
|
2379
2845
|
# @!attribute [rw] log_level
|
@@ -2405,6 +2871,7 @@ module Aws::MediaLive
|
|
2405
2871
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel AWS API Documentation
|
2406
2872
|
#
|
2407
2873
|
class CreateChannel < Struct.new(
|
2874
|
+
:cdi_input_specification,
|
2408
2875
|
:channel_class,
|
2409
2876
|
:destinations,
|
2410
2877
|
:encoder_settings,
|
@@ -2424,6 +2891,9 @@ module Aws::MediaLive
|
|
2424
2891
|
# data as a hash:
|
2425
2892
|
#
|
2426
2893
|
# {
|
2894
|
+
# cdi_input_specification: {
|
2895
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
2896
|
+
# },
|
2427
2897
|
# channel_class: "STANDARD", # accepts STANDARD, SINGLE_PIPELINE
|
2428
2898
|
# destinations: [
|
2429
2899
|
# {
|
@@ -2508,6 +2978,11 @@ module Aws::MediaLive
|
|
2508
2978
|
# },
|
2509
2979
|
# pass_through_settings: {
|
2510
2980
|
# },
|
2981
|
+
# wav_settings: {
|
2982
|
+
# bit_depth: 1.0,
|
2983
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
2984
|
+
# sample_rate: 1.0,
|
2985
|
+
# },
|
2511
2986
|
# },
|
2512
2987
|
# language_code: "__stringMin1Max35",
|
2513
2988
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -2710,6 +3185,7 @@ module Aws::MediaLive
|
|
2710
3185
|
# destination_ref_id: "__string",
|
2711
3186
|
# },
|
2712
3187
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
3188
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
2713
3189
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
2714
3190
|
# hls_cdn_settings: {
|
2715
3191
|
# hls_akamai_settings: {
|
@@ -2744,6 +3220,7 @@ module Aws::MediaLive
|
|
2744
3220
|
# },
|
2745
3221
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
2746
3222
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
3223
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
2747
3224
|
# index_n_segments: 1,
|
2748
3225
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
2749
3226
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -2890,6 +3367,8 @@ module Aws::MediaLive
|
|
2890
3367
|
# transport_stream_id: 1,
|
2891
3368
|
# video_pid: "__string",
|
2892
3369
|
# },
|
3370
|
+
# raw_settings: {
|
3371
|
+
# },
|
2893
3372
|
# },
|
2894
3373
|
# extension: "__string",
|
2895
3374
|
# name_modifier: "__string",
|
@@ -3152,6 +3631,29 @@ module Aws::MediaLive
|
|
3152
3631
|
# tier: "HIGH", # accepts HIGH, MAIN
|
3153
3632
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
3154
3633
|
# },
|
3634
|
+
# mpeg_2_settings: {
|
3635
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
3636
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
3637
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
3638
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
3639
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
3640
|
+
# filter_settings: {
|
3641
|
+
# temporal_filter_settings: {
|
3642
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
3643
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
3644
|
+
# },
|
3645
|
+
# },
|
3646
|
+
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
3647
|
+
# framerate_denominator: 1, # required
|
3648
|
+
# framerate_numerator: 1, # required
|
3649
|
+
# gop_closed_cadence: 1,
|
3650
|
+
# gop_num_b_frames: 1,
|
3651
|
+
# gop_size: 1.0,
|
3652
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
3653
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
3654
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
3655
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
3656
|
+
# },
|
3155
3657
|
# },
|
3156
3658
|
# height: 1,
|
3157
3659
|
# name: "__string", # required
|
@@ -3165,6 +3667,16 @@ module Aws::MediaLive
|
|
3165
3667
|
# input_attachments: [
|
3166
3668
|
# {
|
3167
3669
|
# automatic_input_failover_settings: {
|
3670
|
+
# error_clear_time_msec: 1,
|
3671
|
+
# failover_conditions: [
|
3672
|
+
# {
|
3673
|
+
# failover_condition_settings: {
|
3674
|
+
# input_loss_settings: {
|
3675
|
+
# input_loss_threshold_msec: 1,
|
3676
|
+
# },
|
3677
|
+
# },
|
3678
|
+
# },
|
3679
|
+
# ],
|
3168
3680
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
3169
3681
|
# secondary_input_id: "__string", # required
|
3170
3682
|
# },
|
@@ -3197,6 +3709,9 @@ module Aws::MediaLive
|
|
3197
3709
|
# language_code: "__string",
|
3198
3710
|
# name: "__stringMin1", # required
|
3199
3711
|
# selector_settings: {
|
3712
|
+
# ancillary_source_settings: {
|
3713
|
+
# source_ancillary_channel_number: 1,
|
3714
|
+
# },
|
3200
3715
|
# arib_source_settings: {
|
3201
3716
|
# },
|
3202
3717
|
# dvb_sub_source_settings: {
|
@@ -3266,6 +3781,9 @@ module Aws::MediaLive
|
|
3266
3781
|
# },
|
3267
3782
|
# }
|
3268
3783
|
#
|
3784
|
+
# @!attribute [rw] cdi_input_specification
|
3785
|
+
# @return [Types::CdiInputSpecification]
|
3786
|
+
#
|
3269
3787
|
# @!attribute [rw] channel_class
|
3270
3788
|
# A standard channel has two encoding pipelines and a single pipeline
|
3271
3789
|
# channel only has one.
|
@@ -3308,6 +3826,7 @@ module Aws::MediaLive
|
|
3308
3826
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannelRequest AWS API Documentation
|
3309
3827
|
#
|
3310
3828
|
class CreateChannelRequest < Struct.new(
|
3829
|
+
:cdi_input_specification,
|
3311
3830
|
:channel_class,
|
3312
3831
|
:destinations,
|
3313
3832
|
:encoder_settings,
|
@@ -3665,6 +4184,7 @@ module Aws::MediaLive
|
|
3665
4184
|
# statmux_settings: {
|
3666
4185
|
# maximum_bitrate: 1,
|
3667
4186
|
# minimum_bitrate: 1,
|
4187
|
+
# priority: 1,
|
3668
4188
|
# },
|
3669
4189
|
# },
|
3670
4190
|
# },
|
@@ -3840,6 +4360,9 @@ module Aws::MediaLive
|
|
3840
4360
|
# @!attribute [rw] arn
|
3841
4361
|
# @return [String]
|
3842
4362
|
#
|
4363
|
+
# @!attribute [rw] cdi_input_specification
|
4364
|
+
# @return [Types::CdiInputSpecification]
|
4365
|
+
#
|
3843
4366
|
# @!attribute [rw] channel_class
|
3844
4367
|
# A standard channel has two encoding pipelines and a single pipeline
|
3845
4368
|
# channel only has one.
|
@@ -3890,6 +4413,7 @@ module Aws::MediaLive
|
|
3890
4413
|
#
|
3891
4414
|
class DeleteChannelResponse < Struct.new(
|
3892
4415
|
:arn,
|
4416
|
+
:cdi_input_specification,
|
3893
4417
|
:channel_class,
|
3894
4418
|
:destinations,
|
3895
4419
|
:egress_endpoints,
|
@@ -3986,6 +4510,9 @@ module Aws::MediaLive
|
|
3986
4510
|
# Packet identifiers map for a given Multiplex program.
|
3987
4511
|
# @return [Types::MultiplexProgramPacketIdentifiersMap]
|
3988
4512
|
#
|
4513
|
+
# @!attribute [rw] pipeline_details
|
4514
|
+
# @return [Array<Types::MultiplexProgramPipelineDetail>]
|
4515
|
+
#
|
3989
4516
|
# @!attribute [rw] program_name
|
3990
4517
|
# @return [String]
|
3991
4518
|
#
|
@@ -3995,6 +4522,7 @@ module Aws::MediaLive
|
|
3995
4522
|
:channel_id,
|
3996
4523
|
:multiplex_program_settings,
|
3997
4524
|
:packet_identifiers_map,
|
4525
|
+
:pipeline_details,
|
3998
4526
|
:program_name)
|
3999
4527
|
SENSITIVE = []
|
4000
4528
|
include Aws::Structure
|
@@ -4234,6 +4762,9 @@ module Aws::MediaLive
|
|
4234
4762
|
# @!attribute [rw] arn
|
4235
4763
|
# @return [String]
|
4236
4764
|
#
|
4765
|
+
# @!attribute [rw] cdi_input_specification
|
4766
|
+
# @return [Types::CdiInputSpecification]
|
4767
|
+
#
|
4237
4768
|
# @!attribute [rw] channel_class
|
4238
4769
|
# A standard channel has two encoding pipelines and a single pipeline
|
4239
4770
|
# channel only has one.
|
@@ -4284,6 +4815,7 @@ module Aws::MediaLive
|
|
4284
4815
|
#
|
4285
4816
|
class DescribeChannelResponse < Struct.new(
|
4286
4817
|
:arn,
|
4818
|
+
:cdi_input_specification,
|
4287
4819
|
:channel_class,
|
4288
4820
|
:destinations,
|
4289
4821
|
:egress_endpoints,
|
@@ -4391,7 +4923,6 @@ module Aws::MediaLive
|
|
4391
4923
|
# @return [String]
|
4392
4924
|
#
|
4393
4925
|
# @!attribute [rw] accept
|
4394
|
-
# Accept Header
|
4395
4926
|
# @return [String]
|
4396
4927
|
#
|
4397
4928
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDeviceThumbnailRequest AWS API Documentation
|
@@ -4605,6 +5136,9 @@ module Aws::MediaLive
|
|
4605
5136
|
# Packet identifiers map for a given Multiplex program.
|
4606
5137
|
# @return [Types::MultiplexProgramPacketIdentifiersMap]
|
4607
5138
|
#
|
5139
|
+
# @!attribute [rw] pipeline_details
|
5140
|
+
# @return [Array<Types::MultiplexProgramPipelineDetail>]
|
5141
|
+
#
|
4608
5142
|
# @!attribute [rw] program_name
|
4609
5143
|
# @return [String]
|
4610
5144
|
#
|
@@ -4614,6 +5148,7 @@ module Aws::MediaLive
|
|
4614
5148
|
:channel_id,
|
4615
5149
|
:multiplex_program_settings,
|
4616
5150
|
:packet_identifiers_map,
|
5151
|
+
:pipeline_details,
|
4617
5152
|
:program_name)
|
4618
5153
|
SENSITIVE = []
|
4619
5154
|
include Aws::Structure
|
@@ -5551,6 +6086,11 @@ module Aws::MediaLive
|
|
5551
6086
|
# },
|
5552
6087
|
# pass_through_settings: {
|
5553
6088
|
# },
|
6089
|
+
# wav_settings: {
|
6090
|
+
# bit_depth: 1.0,
|
6091
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
6092
|
+
# sample_rate: 1.0,
|
6093
|
+
# },
|
5554
6094
|
# },
|
5555
6095
|
# language_code: "__stringMin1Max35",
|
5556
6096
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -5753,6 +6293,7 @@ module Aws::MediaLive
|
|
5753
6293
|
# destination_ref_id: "__string",
|
5754
6294
|
# },
|
5755
6295
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
6296
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
5756
6297
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
5757
6298
|
# hls_cdn_settings: {
|
5758
6299
|
# hls_akamai_settings: {
|
@@ -5787,6 +6328,7 @@ module Aws::MediaLive
|
|
5787
6328
|
# },
|
5788
6329
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
5789
6330
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
6331
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
5790
6332
|
# index_n_segments: 1,
|
5791
6333
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
5792
6334
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -5933,6 +6475,8 @@ module Aws::MediaLive
|
|
5933
6475
|
# transport_stream_id: 1,
|
5934
6476
|
# video_pid: "__string",
|
5935
6477
|
# },
|
6478
|
+
# raw_settings: {
|
6479
|
+
# },
|
5936
6480
|
# },
|
5937
6481
|
# extension: "__string",
|
5938
6482
|
# name_modifier: "__string",
|
@@ -6195,6 +6739,29 @@ module Aws::MediaLive
|
|
6195
6739
|
# tier: "HIGH", # accepts HIGH, MAIN
|
6196
6740
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
6197
6741
|
# },
|
6742
|
+
# mpeg_2_settings: {
|
6743
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
6744
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
6745
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
6746
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
6747
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
6748
|
+
# filter_settings: {
|
6749
|
+
# temporal_filter_settings: {
|
6750
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
6751
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
6752
|
+
# },
|
6753
|
+
# },
|
6754
|
+
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
6755
|
+
# framerate_denominator: 1, # required
|
6756
|
+
# framerate_numerator: 1, # required
|
6757
|
+
# gop_closed_cadence: 1,
|
6758
|
+
# gop_num_b_frames: 1,
|
6759
|
+
# gop_size: 1.0,
|
6760
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
6761
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
6762
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
6763
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
6764
|
+
# },
|
6198
6765
|
# },
|
6199
6766
|
# height: 1,
|
6200
6767
|
# name: "__string", # required
|
@@ -6266,6 +6833,56 @@ module Aws::MediaLive
|
|
6266
6833
|
include Aws::Structure
|
6267
6834
|
end
|
6268
6835
|
|
6836
|
+
# Failover Condition settings. There can be multiple failover conditions
|
6837
|
+
# inside AutomaticInputFailoverSettings.
|
6838
|
+
#
|
6839
|
+
# @note When making an API call, you may pass FailoverCondition
|
6840
|
+
# data as a hash:
|
6841
|
+
#
|
6842
|
+
# {
|
6843
|
+
# failover_condition_settings: {
|
6844
|
+
# input_loss_settings: {
|
6845
|
+
# input_loss_threshold_msec: 1,
|
6846
|
+
# },
|
6847
|
+
# },
|
6848
|
+
# }
|
6849
|
+
#
|
6850
|
+
# @!attribute [rw] failover_condition_settings
|
6851
|
+
# Failover condition type-specific settings.
|
6852
|
+
# @return [Types::FailoverConditionSettings]
|
6853
|
+
#
|
6854
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FailoverCondition AWS API Documentation
|
6855
|
+
#
|
6856
|
+
class FailoverCondition < Struct.new(
|
6857
|
+
:failover_condition_settings)
|
6858
|
+
SENSITIVE = []
|
6859
|
+
include Aws::Structure
|
6860
|
+
end
|
6861
|
+
|
6862
|
+
# Settings for one failover condition.
|
6863
|
+
#
|
6864
|
+
# @note When making an API call, you may pass FailoverConditionSettings
|
6865
|
+
# data as a hash:
|
6866
|
+
#
|
6867
|
+
# {
|
6868
|
+
# input_loss_settings: {
|
6869
|
+
# input_loss_threshold_msec: 1,
|
6870
|
+
# },
|
6871
|
+
# }
|
6872
|
+
#
|
6873
|
+
# @!attribute [rw] input_loss_settings
|
6874
|
+
# MediaLive will perform a failover if content is not detected in this
|
6875
|
+
# input for the specified period.
|
6876
|
+
# @return [Types::InputLossFailoverSettings]
|
6877
|
+
#
|
6878
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FailoverConditionSettings AWS API Documentation
|
6879
|
+
#
|
6880
|
+
class FailoverConditionSettings < Struct.new(
|
6881
|
+
:input_loss_settings)
|
6882
|
+
SENSITIVE = []
|
6883
|
+
include Aws::Structure
|
6884
|
+
end
|
6885
|
+
|
6269
6886
|
# Feature Activations
|
6270
6887
|
#
|
6271
6888
|
# @note When making an API call, you may pass FeatureActivations
|
@@ -6447,13 +7064,13 @@ module Aws::MediaLive
|
|
6447
7064
|
# @!attribute [rw] destination
|
6448
7065
|
# The destination for the frame capture files. Either the URI for an
|
6449
7066
|
# Amazon S3 bucket and object, plus a file name prefix (for example,
|
6450
|
-
# s3ssl://sportsDelivery/highlights/20180820/curling
|
7067
|
+
# s3ssl://sportsDelivery/highlights/20180820/curling-) or the URI for
|
6451
7068
|
# a MediaStore container, plus a file name prefix (for example,
|
6452
|
-
# mediastoressl://sportsDelivery/20180820/curling
|
7069
|
+
# mediastoressl://sportsDelivery/20180820/curling-). The final file
|
6453
7070
|
# names consist of the prefix from the destination field (for example,
|
6454
|
-
# "curling
|
6455
|
-
#
|
6456
|
-
#
|
7071
|
+
# "curling-") + name modifier + the counter (5 digits, starting from
|
7072
|
+
# 00001) + extension (which is always .jpg). For example,
|
7073
|
+
# curling-low.00001.jpg
|
6457
7074
|
# @return [Types::OutputLocationRef]
|
6458
7075
|
#
|
6459
7076
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FrameCaptureGroupSettings AWS API Documentation
|
@@ -7573,6 +8190,7 @@ module Aws::MediaLive
|
|
7573
8190
|
# destination_ref_id: "__string",
|
7574
8191
|
# },
|
7575
8192
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
8193
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
7576
8194
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
7577
8195
|
# hls_cdn_settings: {
|
7578
8196
|
# hls_akamai_settings: {
|
@@ -7607,6 +8225,7 @@ module Aws::MediaLive
|
|
7607
8225
|
# },
|
7608
8226
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
7609
8227
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
8228
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
7610
8229
|
# index_n_segments: 1,
|
7611
8230
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
7612
8231
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -7719,6 +8338,16 @@ module Aws::MediaLive
|
|
7719
8338
|
# Place segments in subdirectories.
|
7720
8339
|
# @return [String]
|
7721
8340
|
#
|
8341
|
+
# @!attribute [rw] discontinuity_tags
|
8342
|
+
# Specifies whether to insert EXT-X-DISCONTINUITY tags in the HLS
|
8343
|
+
# child manifests for this output group. Typically, choose Insert
|
8344
|
+
# because these tags are required in the manifest (according to the
|
8345
|
+
# HLS specification) and serve an important purpose. Choose Never
|
8346
|
+
# Insert only if the downstream system is doing real-time failover
|
8347
|
+
# (without using the MediaLive automatic failover feature) and only if
|
8348
|
+
# that downstream system has advised you to exclude the tags.
|
8349
|
+
# @return [String]
|
8350
|
+
#
|
7722
8351
|
# @!attribute [rw] encryption_type
|
7723
8352
|
# Encrypts the segments with the given encryption scheme. Exclude this
|
7724
8353
|
# parameter if no encryption is desired.
|
@@ -7743,11 +8372,21 @@ module Aws::MediaLive
|
|
7743
8372
|
# example, #EXT-X-BYTERANGE:160364@1461888"
|
7744
8373
|
# @return [String]
|
7745
8374
|
#
|
8375
|
+
# @!attribute [rw] incomplete_segment_behavior
|
8376
|
+
# Specifies whether to include the final (incomplete) segment in the
|
8377
|
+
# media output when the pipeline stops producing output because of a
|
8378
|
+
# channel stop, a channel pause or a loss of input to the pipeline.
|
8379
|
+
# Auto means that MediaLive decides whether to include the final
|
8380
|
+
# segment, depending on the channel class and the types of output
|
8381
|
+
# groups. Suppress means to never include the incomplete segment. We
|
8382
|
+
# recommend you choose Auto and let MediaLive control the behavior.
|
8383
|
+
# @return [String]
|
8384
|
+
#
|
7746
8385
|
# @!attribute [rw] index_n_segments
|
7747
8386
|
# Applies only if Mode field is LIVE. Specifies the maximum number of
|
7748
8387
|
# segments in the media manifest file. After this maximum, older
|
7749
8388
|
# segments are removed from the media manifest. This number must be
|
7750
|
-
#
|
8389
|
+
# smaller than the number in the Keep Segments field.
|
7751
8390
|
# @return [Integer]
|
7752
8391
|
#
|
7753
8392
|
# @!attribute [rw] input_loss_action
|
@@ -7771,7 +8410,14 @@ module Aws::MediaLive
|
|
7771
8410
|
#
|
7772
8411
|
# @!attribute [rw] keep_segments
|
7773
8412
|
# Applies only if Mode field is LIVE. Specifies the number of media
|
7774
|
-
# segments
|
8413
|
+
# segments to retain in the destination directory. This number should
|
8414
|
+
# be bigger than indexNSegments (Num segments). We recommend (value =
|
8415
|
+
# (2 x indexNsegments) + 1). If this "keep segments" number is too
|
8416
|
+
# low, the following might happen: the player is still reading a media
|
8417
|
+
# manifest file that lists this segment, but that segment has been
|
8418
|
+
# removed from the destination directory (as directed by
|
8419
|
+
# indexNSegments). This situation would result in a 404 HTTP error on
|
8420
|
+
# the player.
|
7775
8421
|
# @return [Integer]
|
7776
8422
|
#
|
7777
8423
|
# @!attribute [rw] key_format
|
@@ -7911,10 +8557,12 @@ module Aws::MediaLive
|
|
7911
8557
|
:constant_iv,
|
7912
8558
|
:destination,
|
7913
8559
|
:directory_structure,
|
8560
|
+
:discontinuity_tags,
|
7914
8561
|
:encryption_type,
|
7915
8562
|
:hls_cdn_settings,
|
7916
8563
|
:hls_id_3_segment_tagging,
|
7917
8564
|
:i_frame_only_playlists,
|
8565
|
+
:incomplete_segment_behavior,
|
7918
8566
|
:index_n_segments,
|
7919
8567
|
:input_loss_action,
|
7920
8568
|
:iv_in_manifest,
|
@@ -8387,6 +9035,16 @@ module Aws::MediaLive
|
|
8387
9035
|
#
|
8388
9036
|
# {
|
8389
9037
|
# automatic_input_failover_settings: {
|
9038
|
+
# error_clear_time_msec: 1,
|
9039
|
+
# failover_conditions: [
|
9040
|
+
# {
|
9041
|
+
# failover_condition_settings: {
|
9042
|
+
# input_loss_settings: {
|
9043
|
+
# input_loss_threshold_msec: 1,
|
9044
|
+
# },
|
9045
|
+
# },
|
9046
|
+
# },
|
9047
|
+
# ],
|
8390
9048
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
8391
9049
|
# secondary_input_id: "__string", # required
|
8392
9050
|
# },
|
@@ -8419,6 +9077,9 @@ module Aws::MediaLive
|
|
8419
9077
|
# language_code: "__string",
|
8420
9078
|
# name: "__stringMin1", # required
|
8421
9079
|
# selector_settings: {
|
9080
|
+
# ancillary_source_settings: {
|
9081
|
+
# source_ancillary_channel_number: 1,
|
9082
|
+
# },
|
8422
9083
|
# arib_source_settings: {
|
8423
9084
|
# },
|
8424
9085
|
# dvb_sub_source_settings: {
|
@@ -9047,6 +9708,29 @@ module Aws::MediaLive
|
|
9047
9708
|
include Aws::Structure
|
9048
9709
|
end
|
9049
9710
|
|
9711
|
+
# MediaLive will perform a failover if content is not detected in this
|
9712
|
+
# input for the specified period.
|
9713
|
+
#
|
9714
|
+
# @note When making an API call, you may pass InputLossFailoverSettings
|
9715
|
+
# data as a hash:
|
9716
|
+
#
|
9717
|
+
# {
|
9718
|
+
# input_loss_threshold_msec: 1,
|
9719
|
+
# }
|
9720
|
+
#
|
9721
|
+
# @!attribute [rw] input_loss_threshold_msec
|
9722
|
+
# The amount of time (in milliseconds) that no input is detected.
|
9723
|
+
# After that time, an input failover will occur.
|
9724
|
+
# @return [Integer]
|
9725
|
+
#
|
9726
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputLossFailoverSettings AWS API Documentation
|
9727
|
+
#
|
9728
|
+
class InputLossFailoverSettings < Struct.new(
|
9729
|
+
:input_loss_threshold_msec)
|
9730
|
+
SENSITIVE = []
|
9731
|
+
include Aws::Structure
|
9732
|
+
end
|
9733
|
+
|
9050
9734
|
# Action to prepare an input for a future immediate input switch.
|
9051
9735
|
#
|
9052
9736
|
# @note When making an API call, you may pass InputPrepareScheduleActionSettings
|
@@ -9186,6 +9870,9 @@ module Aws::MediaLive
|
|
9186
9870
|
# language_code: "__string",
|
9187
9871
|
# name: "__stringMin1", # required
|
9188
9872
|
# selector_settings: {
|
9873
|
+
# ancillary_source_settings: {
|
9874
|
+
# source_ancillary_channel_number: 1,
|
9875
|
+
# },
|
9189
9876
|
# arib_source_settings: {
|
9190
9877
|
# },
|
9191
9878
|
# dvb_sub_source_settings: {
|
@@ -9642,6 +10329,70 @@ module Aws::MediaLive
|
|
9642
10329
|
include Aws::Structure
|
9643
10330
|
end
|
9644
10331
|
|
10332
|
+
# @note When making an API call, you may pass ListInputDeviceTransfersRequest
|
10333
|
+
# data as a hash:
|
10334
|
+
#
|
10335
|
+
# {
|
10336
|
+
# max_results: 1,
|
10337
|
+
# next_token: "__string",
|
10338
|
+
# transfer_type: "__string", # required
|
10339
|
+
# }
|
10340
|
+
#
|
10341
|
+
# @!attribute [rw] max_results
|
10342
|
+
# @return [Integer]
|
10343
|
+
#
|
10344
|
+
# @!attribute [rw] next_token
|
10345
|
+
# @return [String]
|
10346
|
+
#
|
10347
|
+
# @!attribute [rw] transfer_type
|
10348
|
+
# @return [String]
|
10349
|
+
#
|
10350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersRequest AWS API Documentation
|
10351
|
+
#
|
10352
|
+
class ListInputDeviceTransfersRequest < Struct.new(
|
10353
|
+
:max_results,
|
10354
|
+
:next_token,
|
10355
|
+
:transfer_type)
|
10356
|
+
SENSITIVE = []
|
10357
|
+
include Aws::Structure
|
10358
|
+
end
|
10359
|
+
|
10360
|
+
# @!attribute [rw] input_device_transfers
|
10361
|
+
# @return [Array<Types::TransferringInputDeviceSummary>]
|
10362
|
+
#
|
10363
|
+
# @!attribute [rw] next_token
|
10364
|
+
# @return [String]
|
10365
|
+
#
|
10366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersResponse AWS API Documentation
|
10367
|
+
#
|
10368
|
+
class ListInputDeviceTransfersResponse < Struct.new(
|
10369
|
+
:input_device_transfers,
|
10370
|
+
:next_token)
|
10371
|
+
SENSITIVE = []
|
10372
|
+
include Aws::Structure
|
10373
|
+
end
|
10374
|
+
|
10375
|
+
# The list of input devices in the transferred state. The recipient
|
10376
|
+
# hasn't yet accepted or rejected the transfer.
|
10377
|
+
#
|
10378
|
+
# @!attribute [rw] input_device_transfers
|
10379
|
+
# The list of devices that you are transferring or are being
|
10380
|
+
# transferred to you.
|
10381
|
+
# @return [Array<Types::TransferringInputDeviceSummary>]
|
10382
|
+
#
|
10383
|
+
# @!attribute [rw] next_token
|
10384
|
+
# A token to get additional list results.
|
10385
|
+
# @return [String]
|
10386
|
+
#
|
10387
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersResultModel AWS API Documentation
|
10388
|
+
#
|
10389
|
+
class ListInputDeviceTransfersResultModel < Struct.new(
|
10390
|
+
:input_device_transfers,
|
10391
|
+
:next_token)
|
10392
|
+
SENSITIVE = []
|
10393
|
+
include Aws::Structure
|
10394
|
+
end
|
10395
|
+
|
9645
10396
|
# @note When making an API call, you may pass ListInputDevicesRequest
|
9646
10397
|
# data as a hash:
|
9647
10398
|
#
|
@@ -10277,10 +11028,12 @@ module Aws::MediaLive
|
|
10277
11028
|
# @return [Integer]
|
10278
11029
|
#
|
10279
11030
|
# @!attribute [rw] buffer_model
|
10280
|
-
#
|
10281
|
-
#
|
10282
|
-
#
|
10283
|
-
#
|
11031
|
+
# Controls the timing accuracy for output network traffic. Leave as
|
11032
|
+
# MULTIPLEX to ensure accurate network packet timing. Or set to NONE,
|
11033
|
+
# which might result in lower latency but will result in more
|
11034
|
+
# variability in output network packet timing. This variability might
|
11035
|
+
# cause interruptions, jitter, or bursty behavior in your playback or
|
11036
|
+
# receiving devices.
|
10284
11037
|
# @return [String]
|
10285
11038
|
#
|
10286
11039
|
# @!attribute [rw] cc_descriptor
|
@@ -10793,42 +11546,233 @@ module Aws::MediaLive
|
|
10793
11546
|
|
10794
11547
|
# Media Package Output Settings
|
10795
11548
|
#
|
10796
|
-
# @api private
|
11549
|
+
# @api private
|
11550
|
+
#
|
11551
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MediaPackageOutputSettings AWS API Documentation
|
11552
|
+
#
|
11553
|
+
class MediaPackageOutputSettings < Aws::EmptyStructure; end
|
11554
|
+
|
11555
|
+
# Mp2 Settings
|
11556
|
+
#
|
11557
|
+
# @note When making an API call, you may pass Mp2Settings
|
11558
|
+
# data as a hash:
|
11559
|
+
#
|
11560
|
+
# {
|
11561
|
+
# bitrate: 1.0,
|
11562
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0
|
11563
|
+
# sample_rate: 1.0,
|
11564
|
+
# }
|
11565
|
+
#
|
11566
|
+
# @!attribute [rw] bitrate
|
11567
|
+
# Average bitrate in bits/second.
|
11568
|
+
# @return [Float]
|
11569
|
+
#
|
11570
|
+
# @!attribute [rw] coding_mode
|
11571
|
+
# The MPEG2 Audio coding mode. Valid values are codingMode10 (for
|
11572
|
+
# mono) or codingMode20 (for stereo).
|
11573
|
+
# @return [String]
|
11574
|
+
#
|
11575
|
+
# @!attribute [rw] sample_rate
|
11576
|
+
# Sample rate in Hz.
|
11577
|
+
# @return [Float]
|
11578
|
+
#
|
11579
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mp2Settings AWS API Documentation
|
11580
|
+
#
|
11581
|
+
class Mp2Settings < Struct.new(
|
11582
|
+
:bitrate,
|
11583
|
+
:coding_mode,
|
11584
|
+
:sample_rate)
|
11585
|
+
SENSITIVE = []
|
11586
|
+
include Aws::Structure
|
11587
|
+
end
|
11588
|
+
|
11589
|
+
# Mpeg2 Filter Settings
|
11590
|
+
#
|
11591
|
+
# @note When making an API call, you may pass Mpeg2FilterSettings
|
11592
|
+
# data as a hash:
|
11593
|
+
#
|
11594
|
+
# {
|
11595
|
+
# temporal_filter_settings: {
|
11596
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
11597
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
11598
|
+
# },
|
11599
|
+
# }
|
11600
|
+
#
|
11601
|
+
# @!attribute [rw] temporal_filter_settings
|
11602
|
+
# Temporal Filter Settings
|
11603
|
+
# @return [Types::TemporalFilterSettings]
|
11604
|
+
#
|
11605
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mpeg2FilterSettings AWS API Documentation
|
11606
|
+
#
|
11607
|
+
class Mpeg2FilterSettings < Struct.new(
|
11608
|
+
:temporal_filter_settings)
|
11609
|
+
SENSITIVE = []
|
11610
|
+
include Aws::Structure
|
11611
|
+
end
|
11612
|
+
|
11613
|
+
# Mpeg2 Settings
|
11614
|
+
#
|
11615
|
+
# @note When making an API call, you may pass Mpeg2Settings
|
11616
|
+
# data as a hash:
|
11617
|
+
#
|
11618
|
+
# {
|
11619
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
11620
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
11621
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
11622
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
11623
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
11624
|
+
# filter_settings: {
|
11625
|
+
# temporal_filter_settings: {
|
11626
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
11627
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
11628
|
+
# },
|
11629
|
+
# },
|
11630
|
+
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
11631
|
+
# framerate_denominator: 1, # required
|
11632
|
+
# framerate_numerator: 1, # required
|
11633
|
+
# gop_closed_cadence: 1,
|
11634
|
+
# gop_num_b_frames: 1,
|
11635
|
+
# gop_size: 1.0,
|
11636
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
11637
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
11638
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
11639
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
11640
|
+
# }
|
11641
|
+
#
|
11642
|
+
# @!attribute [rw] adaptive_quantization
|
11643
|
+
# Choose Off to disable adaptive quantization. Or choose another value
|
11644
|
+
# to enable the quantizer and set its strength. The strengths are:
|
11645
|
+
# Auto, Off, Low, Medium, High. When you enable this field, MediaLive
|
11646
|
+
# allows intra-frame quantizers to vary, which might improve visual
|
11647
|
+
# quality.
|
11648
|
+
# @return [String]
|
11649
|
+
#
|
11650
|
+
# @!attribute [rw] afd_signaling
|
11651
|
+
# Indicates the AFD values that MediaLive will write into the video
|
11652
|
+
# encode. If you do not know what AFD signaling is, or if your
|
11653
|
+
# downstream system has not given you guidance, choose AUTO. AUTO:
|
11654
|
+
# MediaLive will try to preserve the input AFD value (in cases where
|
11655
|
+
# multiple AFD values are valid). FIXED: MediaLive will use the value
|
11656
|
+
# you specify in fixedAFD.
|
11657
|
+
# @return [String]
|
11658
|
+
#
|
11659
|
+
# @!attribute [rw] color_metadata
|
11660
|
+
# Specifies whether to include the color space metadata. The metadata
|
11661
|
+
# describes the color space that applies to the video (the colorSpace
|
11662
|
+
# field). We recommend that you insert the metadata.
|
11663
|
+
# @return [String]
|
11664
|
+
#
|
11665
|
+
# @!attribute [rw] color_space
|
11666
|
+
# Choose the type of color space conversion to apply to the output.
|
11667
|
+
# For detailed information on setting up both the input and the output
|
11668
|
+
# to obtain the desired color space in the output, see the section on
|
11669
|
+
# \\"MediaLive Features - Video - color space\\" in the MediaLive
|
11670
|
+
# User Guide. PASSTHROUGH: Keep the color space of the input content -
|
11671
|
+
# do not convert it. AUTO:Convert all content that is SD to rec 601,
|
11672
|
+
# and convert all content that is HD to rec 709.
|
11673
|
+
# @return [String]
|
11674
|
+
#
|
11675
|
+
# @!attribute [rw] display_aspect_ratio
|
11676
|
+
# Sets the pixel aspect ratio for the encode.
|
11677
|
+
# @return [String]
|
11678
|
+
#
|
11679
|
+
# @!attribute [rw] filter_settings
|
11680
|
+
# Optionally specify a noise reduction filter, which can improve
|
11681
|
+
# quality of compressed content. If you do not choose a filter, no
|
11682
|
+
# filter will be applied. TEMPORAL: This filter is useful for both
|
11683
|
+
# source content that is noisy (when it has excessive digital
|
11684
|
+
# artifacts) and source content that is clean. When the content is
|
11685
|
+
# noisy, the filter cleans up the source content before the encoding
|
11686
|
+
# phase, with these two effects: First, it improves the output video
|
11687
|
+
# quality because the content has been cleaned up. Secondly, it
|
11688
|
+
# decreases the bandwidth because MediaLive does not waste bits on
|
11689
|
+
# encoding noise. When the content is reasonably clean, the filter
|
11690
|
+
# tends to decrease the bitrate.
|
11691
|
+
# @return [Types::Mpeg2FilterSettings]
|
10797
11692
|
#
|
10798
|
-
#
|
11693
|
+
# @!attribute [rw] fixed_afd
|
11694
|
+
# Complete this field only when afdSignaling is set to FIXED. Enter
|
11695
|
+
# the AFD value (4 bits) to write on all frames of the video encode.
|
11696
|
+
# @return [String]
|
10799
11697
|
#
|
10800
|
-
|
10801
|
-
|
10802
|
-
#
|
11698
|
+
# @!attribute [rw] framerate_denominator
|
11699
|
+
# description": "The framerate denominator. For example, 1001. The
|
11700
|
+
# framerate is the numerator divided by the denominator. For example,
|
11701
|
+
# 24000 / 1001 = 23.976 FPS.
|
11702
|
+
# @return [Integer]
|
10803
11703
|
#
|
10804
|
-
#
|
10805
|
-
#
|
11704
|
+
# @!attribute [rw] framerate_numerator
|
11705
|
+
# The framerate numerator. For example, 24000. The framerate is the
|
11706
|
+
# numerator divided by the denominator. For example, 24000 / 1001 =
|
11707
|
+
# 23.976 FPS.
|
11708
|
+
# @return [Integer]
|
10806
11709
|
#
|
10807
|
-
#
|
10808
|
-
#
|
10809
|
-
#
|
10810
|
-
# sample_rate: 1.0,
|
10811
|
-
# }
|
11710
|
+
# @!attribute [rw] gop_closed_cadence
|
11711
|
+
# MPEG2: default is open GOP.
|
11712
|
+
# @return [Integer]
|
10812
11713
|
#
|
10813
|
-
# @!attribute [rw]
|
10814
|
-
#
|
11714
|
+
# @!attribute [rw] gop_num_b_frames
|
11715
|
+
# Relates to the GOP structure. The number of B-frames between
|
11716
|
+
# reference frames. If you do not know what a B-frame is, use the
|
11717
|
+
# default.
|
11718
|
+
# @return [Integer]
|
11719
|
+
#
|
11720
|
+
# @!attribute [rw] gop_size
|
11721
|
+
# Relates to the GOP structure. The GOP size (keyframe interval) in
|
11722
|
+
# the units specified in gopSizeUnits. If you do not know what GOP is,
|
11723
|
+
# use the default. If gopSizeUnits is frames, then the gopSize must be
|
11724
|
+
# an integer and must be greater than or equal to 1. If gopSizeUnits
|
11725
|
+
# is seconds, the gopSize must be greater than 0, but does not need to
|
11726
|
+
# be an integer.
|
10815
11727
|
# @return [Float]
|
10816
11728
|
#
|
10817
|
-
# @!attribute [rw]
|
10818
|
-
#
|
10819
|
-
#
|
11729
|
+
# @!attribute [rw] gop_size_units
|
11730
|
+
# Relates to the GOP structure. Specifies whether the gopSize is
|
11731
|
+
# specified in frames or seconds. If you do not plan to change the
|
11732
|
+
# default gopSize, leave the default. If you specify SECONDS,
|
11733
|
+
# MediaLive will internally convert the gop size to a frame count.
|
10820
11734
|
# @return [String]
|
10821
11735
|
#
|
10822
|
-
# @!attribute [rw]
|
10823
|
-
#
|
10824
|
-
#
|
11736
|
+
# @!attribute [rw] scan_type
|
11737
|
+
# Set the scan type of the output to PROGRESSIVE or INTERLACED (top
|
11738
|
+
# field first).
|
11739
|
+
# @return [String]
|
10825
11740
|
#
|
10826
|
-
#
|
11741
|
+
# @!attribute [rw] subgop_length
|
11742
|
+
# Relates to the GOP structure. If you do not know what GOP is, use
|
11743
|
+
# the default. FIXED: Set the number of B-frames in each sub-GOP to
|
11744
|
+
# the value in gopNumBFrames. DYNAMIC: Let MediaLive optimize the
|
11745
|
+
# number of B-frames in each sub-GOP, to improve visual quality.
|
11746
|
+
# @return [String]
|
10827
11747
|
#
|
10828
|
-
|
10829
|
-
|
10830
|
-
|
10831
|
-
|
11748
|
+
# @!attribute [rw] timecode_insertion
|
11749
|
+
# Determines how MediaLive inserts timecodes in the output video. For
|
11750
|
+
# detailed information about setting up the input and the output for a
|
11751
|
+
# timecode, see the section on \\"MediaLive Features - Timecode
|
11752
|
+
# configuration\\" in the MediaLive User Guide. DISABLED: do not
|
11753
|
+
# include timecodes. GOP\_TIMECODE: Include timecode metadata in the
|
11754
|
+
# GOP header.
|
11755
|
+
# @return [String]
|
11756
|
+
#
|
11757
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mpeg2Settings AWS API Documentation
|
11758
|
+
#
|
11759
|
+
class Mpeg2Settings < Struct.new(
|
11760
|
+
:adaptive_quantization,
|
11761
|
+
:afd_signaling,
|
11762
|
+
:color_metadata,
|
11763
|
+
:color_space,
|
11764
|
+
:display_aspect_ratio,
|
11765
|
+
:filter_settings,
|
11766
|
+
:fixed_afd,
|
11767
|
+
:framerate_denominator,
|
11768
|
+
:framerate_numerator,
|
11769
|
+
:gop_closed_cadence,
|
11770
|
+
:gop_num_b_frames,
|
11771
|
+
:gop_size,
|
11772
|
+
:gop_size_units,
|
11773
|
+
:scan_type,
|
11774
|
+
:subgop_length,
|
11775
|
+
:timecode_insertion)
|
10832
11776
|
SENSITIVE = []
|
10833
11777
|
include Aws::Structure
|
10834
11778
|
end
|
@@ -11174,6 +12118,14 @@ module Aws::MediaLive
|
|
11174
12118
|
# The packet identifier map for this multiplex program.
|
11175
12119
|
# @return [Types::MultiplexProgramPacketIdentifiersMap]
|
11176
12120
|
#
|
12121
|
+
# @!attribute [rw] pipeline_details
|
12122
|
+
# Contains information about the current sources for the specified
|
12123
|
+
# program in the specified multiplex. Keep in mind that each multiplex
|
12124
|
+
# pipeline connects to both pipelines in a given source channel (the
|
12125
|
+
# channel identified by the program). But only one of those channel
|
12126
|
+
# pipelines is ever active at one time.
|
12127
|
+
# @return [Array<Types::MultiplexProgramPipelineDetail>]
|
12128
|
+
#
|
11177
12129
|
# @!attribute [rw] program_name
|
11178
12130
|
# The name of the multiplex program.
|
11179
12131
|
# @return [String]
|
@@ -11184,6 +12136,7 @@ module Aws::MediaLive
|
|
11184
12136
|
:channel_id,
|
11185
12137
|
:multiplex_program_settings,
|
11186
12138
|
:packet_identifiers_map,
|
12139
|
+
:pipeline_details,
|
11187
12140
|
:program_name)
|
11188
12141
|
SENSITIVE = []
|
11189
12142
|
include Aws::Structure
|
@@ -11283,6 +12236,26 @@ module Aws::MediaLive
|
|
11283
12236
|
include Aws::Structure
|
11284
12237
|
end
|
11285
12238
|
|
12239
|
+
# The current source for one of the pipelines in the multiplex.
|
12240
|
+
#
|
12241
|
+
# @!attribute [rw] active_channel_pipeline
|
12242
|
+
# Identifies the channel pipeline that is currently active for the
|
12243
|
+
# pipeline (identified by PipelineId) in the multiplex.
|
12244
|
+
# @return [String]
|
12245
|
+
#
|
12246
|
+
# @!attribute [rw] pipeline_id
|
12247
|
+
# Identifies a specific pipeline in the multiplex.
|
12248
|
+
# @return [String]
|
12249
|
+
#
|
12250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexProgramPipelineDetail AWS API Documentation
|
12251
|
+
#
|
12252
|
+
class MultiplexProgramPipelineDetail < Struct.new(
|
12253
|
+
:active_channel_pipeline,
|
12254
|
+
:pipeline_id)
|
12255
|
+
SENSITIVE = []
|
12256
|
+
include Aws::Structure
|
12257
|
+
end
|
12258
|
+
|
11286
12259
|
# Transport stream service descriptor configuration for the Multiplex
|
11287
12260
|
# program.
|
11288
12261
|
#
|
@@ -11328,6 +12301,7 @@ module Aws::MediaLive
|
|
11328
12301
|
# statmux_settings: {
|
11329
12302
|
# maximum_bitrate: 1,
|
11330
12303
|
# minimum_bitrate: 1,
|
12304
|
+
# priority: 1,
|
11331
12305
|
# },
|
11332
12306
|
# },
|
11333
12307
|
# }
|
@@ -11439,6 +12413,7 @@ module Aws::MediaLive
|
|
11439
12413
|
# {
|
11440
12414
|
# maximum_bitrate: 1,
|
11441
12415
|
# minimum_bitrate: 1,
|
12416
|
+
# priority: 1,
|
11442
12417
|
# }
|
11443
12418
|
#
|
11444
12419
|
# @!attribute [rw] maximum_bitrate
|
@@ -11449,11 +12424,21 @@ module Aws::MediaLive
|
|
11449
12424
|
# Minimum statmux bitrate.
|
11450
12425
|
# @return [Integer]
|
11451
12426
|
#
|
12427
|
+
# @!attribute [rw] priority
|
12428
|
+
# The purpose of the priority is to use a combination of
|
12429
|
+
# the\\nmultiplex rate control algorithm and the QVBR capability of
|
12430
|
+
# the\\nencoder to prioritize the video quality of some channels in
|
12431
|
+
# a\\nmultiplex over others. Channels that have a higher priority
|
12432
|
+
# will\\nget higher video quality at the expense of the video quality
|
12433
|
+
# of\\nother channels in the multiplex with lower priority.
|
12434
|
+
# @return [Integer]
|
12435
|
+
#
|
11452
12436
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexStatmuxVideoSettings AWS API Documentation
|
11453
12437
|
#
|
11454
12438
|
class MultiplexStatmuxVideoSettings < Struct.new(
|
11455
12439
|
:maximum_bitrate,
|
11456
|
-
:minimum_bitrate
|
12440
|
+
:minimum_bitrate,
|
12441
|
+
:priority)
|
11457
12442
|
SENSITIVE = []
|
11458
12443
|
include Aws::Structure
|
11459
12444
|
end
|
@@ -11520,6 +12505,7 @@ module Aws::MediaLive
|
|
11520
12505
|
# statmux_settings: {
|
11521
12506
|
# maximum_bitrate: 1,
|
11522
12507
|
# minimum_bitrate: 1,
|
12508
|
+
# priority: 1,
|
11523
12509
|
# },
|
11524
12510
|
# }
|
11525
12511
|
#
|
@@ -11759,6 +12745,8 @@ module Aws::MediaLive
|
|
11759
12745
|
# transport_stream_id: 1,
|
11760
12746
|
# video_pid: "__string",
|
11761
12747
|
# },
|
12748
|
+
# raw_settings: {
|
12749
|
+
# },
|
11762
12750
|
# },
|
11763
12751
|
# extension: "__string",
|
11764
12752
|
# name_modifier: "__string",
|
@@ -12072,6 +13060,7 @@ module Aws::MediaLive
|
|
12072
13060
|
# destination_ref_id: "__string",
|
12073
13061
|
# },
|
12074
13062
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
13063
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
12075
13064
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
12076
13065
|
# hls_cdn_settings: {
|
12077
13066
|
# hls_akamai_settings: {
|
@@ -12106,6 +13095,7 @@ module Aws::MediaLive
|
|
12106
13095
|
# },
|
12107
13096
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
12108
13097
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
13098
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
12109
13099
|
# index_n_segments: 1,
|
12110
13100
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
12111
13101
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -12252,6 +13242,8 @@ module Aws::MediaLive
|
|
12252
13242
|
# transport_stream_id: 1,
|
12253
13243
|
# video_pid: "__string",
|
12254
13244
|
# },
|
13245
|
+
# raw_settings: {
|
13246
|
+
# },
|
12255
13247
|
# },
|
12256
13248
|
# extension: "__string",
|
12257
13249
|
# name_modifier: "__string",
|
@@ -12462,6 +13454,7 @@ module Aws::MediaLive
|
|
12462
13454
|
# destination_ref_id: "__string",
|
12463
13455
|
# },
|
12464
13456
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
13457
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
12465
13458
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
12466
13459
|
# hls_cdn_settings: {
|
12467
13460
|
# hls_akamai_settings: {
|
@@ -12496,6 +13489,7 @@ module Aws::MediaLive
|
|
12496
13489
|
# },
|
12497
13490
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
12498
13491
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
13492
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
12499
13493
|
# index_n_segments: 1,
|
12500
13494
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
12501
13495
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -12710,6 +13704,8 @@ module Aws::MediaLive
|
|
12710
13704
|
# transport_stream_id: 1,
|
12711
13705
|
# video_pid: "__string",
|
12712
13706
|
# },
|
13707
|
+
# raw_settings: {
|
13708
|
+
# },
|
12713
13709
|
# },
|
12714
13710
|
# extension: "__string",
|
12715
13711
|
# name_modifier: "__string",
|
@@ -13092,6 +14088,14 @@ module Aws::MediaLive
|
|
13092
14088
|
include Aws::Structure
|
13093
14089
|
end
|
13094
14090
|
|
14091
|
+
# Raw Settings
|
14092
|
+
#
|
14093
|
+
# @api private
|
14094
|
+
#
|
14095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RawSettings AWS API Documentation
|
14096
|
+
#
|
14097
|
+
class RawSettings < Aws::EmptyStructure; end
|
14098
|
+
|
13095
14099
|
# Rec601 Settings
|
13096
14100
|
#
|
13097
14101
|
# @api private
|
@@ -13108,6 +14112,28 @@ module Aws::MediaLive
|
|
13108
14112
|
#
|
13109
14113
|
class Rec709Settings < Aws::EmptyStructure; end
|
13110
14114
|
|
14115
|
+
# @note When making an API call, you may pass RejectInputDeviceTransferRequest
|
14116
|
+
# data as a hash:
|
14117
|
+
#
|
14118
|
+
# {
|
14119
|
+
# input_device_id: "__string", # required
|
14120
|
+
# }
|
14121
|
+
#
|
14122
|
+
# @!attribute [rw] input_device_id
|
14123
|
+
# @return [String]
|
14124
|
+
#
|
14125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransferRequest AWS API Documentation
|
14126
|
+
#
|
14127
|
+
class RejectInputDeviceTransferRequest < Struct.new(
|
14128
|
+
:input_device_id)
|
14129
|
+
SENSITIVE = []
|
14130
|
+
include Aws::Structure
|
14131
|
+
end
|
14132
|
+
|
14133
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransferResponse AWS API Documentation
|
14134
|
+
#
|
14135
|
+
class RejectInputDeviceTransferResponse < Aws::EmptyStructure; end
|
14136
|
+
|
13111
14137
|
# Remix Settings
|
13112
14138
|
#
|
13113
14139
|
# @note When making an API call, you may pass RemixSettings
|
@@ -14373,6 +15399,9 @@ module Aws::MediaLive
|
|
14373
15399
|
# @!attribute [rw] arn
|
14374
15400
|
# @return [String]
|
14375
15401
|
#
|
15402
|
+
# @!attribute [rw] cdi_input_specification
|
15403
|
+
# @return [Types::CdiInputSpecification]
|
15404
|
+
#
|
14376
15405
|
# @!attribute [rw] channel_class
|
14377
15406
|
# A standard channel has two encoding pipelines and a single pipeline
|
14378
15407
|
# channel only has one.
|
@@ -14423,6 +15452,7 @@ module Aws::MediaLive
|
|
14423
15452
|
#
|
14424
15453
|
class StartChannelResponse < Struct.new(
|
14425
15454
|
:arn,
|
15455
|
+
:cdi_input_specification,
|
14426
15456
|
:channel_class,
|
14427
15457
|
:destinations,
|
14428
15458
|
:egress_endpoints,
|
@@ -14715,6 +15745,9 @@ module Aws::MediaLive
|
|
14715
15745
|
# @!attribute [rw] arn
|
14716
15746
|
# @return [String]
|
14717
15747
|
#
|
15748
|
+
# @!attribute [rw] cdi_input_specification
|
15749
|
+
# @return [Types::CdiInputSpecification]
|
15750
|
+
#
|
14718
15751
|
# @!attribute [rw] channel_class
|
14719
15752
|
# A standard channel has two encoding pipelines and a single pipeline
|
14720
15753
|
# channel only has one.
|
@@ -14765,6 +15798,7 @@ module Aws::MediaLive
|
|
14765
15798
|
#
|
14766
15799
|
class StopChannelResponse < Struct.new(
|
14767
15800
|
:arn,
|
15801
|
+
:cdi_input_specification,
|
14768
15802
|
:channel_class,
|
14769
15803
|
:destinations,
|
14770
15804
|
:egress_endpoints,
|
@@ -14957,6 +15991,22 @@ module Aws::MediaLive
|
|
14957
15991
|
include Aws::Structure
|
14958
15992
|
end
|
14959
15993
|
|
15994
|
+
# The binary data for the thumbnail that the Link device has most
|
15995
|
+
# recently sent to MediaLive.
|
15996
|
+
#
|
15997
|
+
# @!attribute [rw] body
|
15998
|
+
# The binary data for the thumbnail that the Link device has most
|
15999
|
+
# recently sent to MediaLive.
|
16000
|
+
# @return [String]
|
16001
|
+
#
|
16002
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ThumbnailData AWS API Documentation
|
16003
|
+
#
|
16004
|
+
class ThumbnailData < Struct.new(
|
16005
|
+
:body)
|
16006
|
+
SENSITIVE = []
|
16007
|
+
include Aws::Structure
|
16008
|
+
end
|
16009
|
+
|
14960
16010
|
# Timecode Config
|
14961
16011
|
#
|
14962
16012
|
# @note When making an API call, you may pass TimecodeConfig
|
@@ -15004,6 +16054,87 @@ module Aws::MediaLive
|
|
15004
16054
|
include Aws::Structure
|
15005
16055
|
end
|
15006
16056
|
|
16057
|
+
# The transfer details of the input device.
|
16058
|
+
#
|
16059
|
+
# @!attribute [rw] target_customer_id
|
16060
|
+
# The AWS account ID (12 digits) for the recipient of the device
|
16061
|
+
# transfer.
|
16062
|
+
# @return [String]
|
16063
|
+
#
|
16064
|
+
# @!attribute [rw] transfer_message
|
16065
|
+
# An optional message for the recipient. Maximum 280 characters.
|
16066
|
+
# @return [String]
|
16067
|
+
#
|
16068
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDevice AWS API Documentation
|
16069
|
+
#
|
16070
|
+
class TransferInputDevice < Struct.new(
|
16071
|
+
:target_customer_id,
|
16072
|
+
:transfer_message)
|
16073
|
+
SENSITIVE = []
|
16074
|
+
include Aws::Structure
|
16075
|
+
end
|
16076
|
+
|
16077
|
+
# @note When making an API call, you may pass TransferInputDeviceRequest
|
16078
|
+
# data as a hash:
|
16079
|
+
#
|
16080
|
+
# {
|
16081
|
+
# input_device_id: "__string", # required
|
16082
|
+
# target_customer_id: "__string",
|
16083
|
+
# transfer_message: "__string",
|
16084
|
+
# }
|
16085
|
+
#
|
16086
|
+
# @!attribute [rw] input_device_id
|
16087
|
+
# @return [String]
|
16088
|
+
#
|
16089
|
+
# @!attribute [rw] target_customer_id
|
16090
|
+
# @return [String]
|
16091
|
+
#
|
16092
|
+
# @!attribute [rw] transfer_message
|
16093
|
+
# @return [String]
|
16094
|
+
#
|
16095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDeviceRequest AWS API Documentation
|
16096
|
+
#
|
16097
|
+
class TransferInputDeviceRequest < Struct.new(
|
16098
|
+
:input_device_id,
|
16099
|
+
:target_customer_id,
|
16100
|
+
:transfer_message)
|
16101
|
+
SENSITIVE = []
|
16102
|
+
include Aws::Structure
|
16103
|
+
end
|
16104
|
+
|
16105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDeviceResponse AWS API Documentation
|
16106
|
+
#
|
16107
|
+
class TransferInputDeviceResponse < Aws::EmptyStructure; end
|
16108
|
+
|
16109
|
+
# Details about the input device that is being transferred.
|
16110
|
+
#
|
16111
|
+
# @!attribute [rw] id
|
16112
|
+
# The unique ID of the input device.
|
16113
|
+
# @return [String]
|
16114
|
+
#
|
16115
|
+
# @!attribute [rw] message
|
16116
|
+
# The optional message that the sender has attached to the transfer.
|
16117
|
+
# @return [String]
|
16118
|
+
#
|
16119
|
+
# @!attribute [rw] target_customer_id
|
16120
|
+
# The AWS account ID for the recipient of the input device transfer.
|
16121
|
+
# @return [String]
|
16122
|
+
#
|
16123
|
+
# @!attribute [rw] transfer_type
|
16124
|
+
# The type (direction) of the input device transfer.
|
16125
|
+
# @return [String]
|
16126
|
+
#
|
16127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferringInputDeviceSummary AWS API Documentation
|
16128
|
+
#
|
16129
|
+
class TransferringInputDeviceSummary < Struct.new(
|
16130
|
+
:id,
|
16131
|
+
:message,
|
16132
|
+
:target_customer_id,
|
16133
|
+
:transfer_type)
|
16134
|
+
SENSITIVE = []
|
16135
|
+
include Aws::Structure
|
16136
|
+
end
|
16137
|
+
|
15007
16138
|
# Ttml Destination Settings
|
15008
16139
|
#
|
15009
16140
|
# @note When making an API call, you may pass TtmlDestinationSettings
|
@@ -15275,6 +16406,10 @@ module Aws::MediaLive
|
|
15275
16406
|
include Aws::Structure
|
15276
16407
|
end
|
15277
16408
|
|
16409
|
+
# @!attribute [rw] cdi_input_specification
|
16410
|
+
# Specification of CDI inputs for this channel
|
16411
|
+
# @return [Types::CdiInputSpecification]
|
16412
|
+
#
|
15278
16413
|
# @!attribute [rw] destinations
|
15279
16414
|
# A list of output destinations for this channel.
|
15280
16415
|
# @return [Array<Types::OutputDestination>]
|
@@ -15287,8 +16422,7 @@ module Aws::MediaLive
|
|
15287
16422
|
# @return [Array<Types::InputAttachment>]
|
15288
16423
|
#
|
15289
16424
|
# @!attribute [rw] input_specification
|
15290
|
-
# Specification of
|
15291
|
-
# codec, etc.)
|
16425
|
+
# Specification of network and file inputs for this channel
|
15292
16426
|
# @return [Types::InputSpecification]
|
15293
16427
|
#
|
15294
16428
|
# @!attribute [rw] log_level
|
@@ -15308,6 +16442,7 @@ module Aws::MediaLive
|
|
15308
16442
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
|
15309
16443
|
#
|
15310
16444
|
class UpdateChannel < Struct.new(
|
16445
|
+
:cdi_input_specification,
|
15311
16446
|
:destinations,
|
15312
16447
|
:encoder_settings,
|
15313
16448
|
:input_attachments,
|
@@ -15402,6 +16537,9 @@ module Aws::MediaLive
|
|
15402
16537
|
# data as a hash:
|
15403
16538
|
#
|
15404
16539
|
# {
|
16540
|
+
# cdi_input_specification: {
|
16541
|
+
# resolution: "SD", # accepts SD, HD, FHD, UHD
|
16542
|
+
# },
|
15405
16543
|
# channel_id: "__string", # required
|
15406
16544
|
# destinations: [
|
15407
16545
|
# {
|
@@ -15486,6 +16624,11 @@ module Aws::MediaLive
|
|
15486
16624
|
# },
|
15487
16625
|
# pass_through_settings: {
|
15488
16626
|
# },
|
16627
|
+
# wav_settings: {
|
16628
|
+
# bit_depth: 1.0,
|
16629
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
16630
|
+
# sample_rate: 1.0,
|
16631
|
+
# },
|
15489
16632
|
# },
|
15490
16633
|
# language_code: "__stringMin1Max35",
|
15491
16634
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
@@ -15688,6 +16831,7 @@ module Aws::MediaLive
|
|
15688
16831
|
# destination_ref_id: "__string",
|
15689
16832
|
# },
|
15690
16833
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
16834
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
15691
16835
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
15692
16836
|
# hls_cdn_settings: {
|
15693
16837
|
# hls_akamai_settings: {
|
@@ -15722,6 +16866,7 @@ module Aws::MediaLive
|
|
15722
16866
|
# },
|
15723
16867
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
15724
16868
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
16869
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
15725
16870
|
# index_n_segments: 1,
|
15726
16871
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
15727
16872
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -15868,6 +17013,8 @@ module Aws::MediaLive
|
|
15868
17013
|
# transport_stream_id: 1,
|
15869
17014
|
# video_pid: "__string",
|
15870
17015
|
# },
|
17016
|
+
# raw_settings: {
|
17017
|
+
# },
|
15871
17018
|
# },
|
15872
17019
|
# extension: "__string",
|
15873
17020
|
# name_modifier: "__string",
|
@@ -16130,6 +17277,29 @@ module Aws::MediaLive
|
|
16130
17277
|
# tier: "HIGH", # accepts HIGH, MAIN
|
16131
17278
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
16132
17279
|
# },
|
17280
|
+
# mpeg_2_settings: {
|
17281
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
17282
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
17283
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
17284
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
17285
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
17286
|
+
# filter_settings: {
|
17287
|
+
# temporal_filter_settings: {
|
17288
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
17289
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
17290
|
+
# },
|
17291
|
+
# },
|
17292
|
+
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
17293
|
+
# framerate_denominator: 1, # required
|
17294
|
+
# framerate_numerator: 1, # required
|
17295
|
+
# gop_closed_cadence: 1,
|
17296
|
+
# gop_num_b_frames: 1,
|
17297
|
+
# gop_size: 1.0,
|
17298
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
17299
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
17300
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
17301
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
17302
|
+
# },
|
16133
17303
|
# },
|
16134
17304
|
# height: 1,
|
16135
17305
|
# name: "__string", # required
|
@@ -16143,6 +17313,16 @@ module Aws::MediaLive
|
|
16143
17313
|
# input_attachments: [
|
16144
17314
|
# {
|
16145
17315
|
# automatic_input_failover_settings: {
|
17316
|
+
# error_clear_time_msec: 1,
|
17317
|
+
# failover_conditions: [
|
17318
|
+
# {
|
17319
|
+
# failover_condition_settings: {
|
17320
|
+
# input_loss_settings: {
|
17321
|
+
# input_loss_threshold_msec: 1,
|
17322
|
+
# },
|
17323
|
+
# },
|
17324
|
+
# },
|
17325
|
+
# ],
|
16146
17326
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
16147
17327
|
# secondary_input_id: "__string", # required
|
16148
17328
|
# },
|
@@ -16175,6 +17355,9 @@ module Aws::MediaLive
|
|
16175
17355
|
# language_code: "__string",
|
16176
17356
|
# name: "__stringMin1", # required
|
16177
17357
|
# selector_settings: {
|
17358
|
+
# ancillary_source_settings: {
|
17359
|
+
# source_ancillary_channel_number: 1,
|
17360
|
+
# },
|
16178
17361
|
# arib_source_settings: {
|
16179
17362
|
# },
|
16180
17363
|
# dvb_sub_source_settings: {
|
@@ -16239,6 +17422,9 @@ module Aws::MediaLive
|
|
16239
17422
|
# role_arn: "__string",
|
16240
17423
|
# }
|
16241
17424
|
#
|
17425
|
+
# @!attribute [rw] cdi_input_specification
|
17426
|
+
# @return [Types::CdiInputSpecification]
|
17427
|
+
#
|
16242
17428
|
# @!attribute [rw] channel_id
|
16243
17429
|
# @return [String]
|
16244
17430
|
#
|
@@ -16268,6 +17454,7 @@ module Aws::MediaLive
|
|
16268
17454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelRequest AWS API Documentation
|
16269
17455
|
#
|
16270
17456
|
class UpdateChannelRequest < Struct.new(
|
17457
|
+
:cdi_input_specification,
|
16271
17458
|
:channel_id,
|
16272
17459
|
:destinations,
|
16273
17460
|
:encoder_settings,
|
@@ -16660,6 +17847,7 @@ module Aws::MediaLive
|
|
16660
17847
|
# statmux_settings: {
|
16661
17848
|
# maximum_bitrate: 1,
|
16662
17849
|
# minimum_bitrate: 1,
|
17850
|
+
# priority: 1,
|
16663
17851
|
# },
|
16664
17852
|
# },
|
16665
17853
|
# },
|
@@ -16960,6 +18148,29 @@ module Aws::MediaLive
|
|
16960
18148
|
# tier: "HIGH", # accepts HIGH, MAIN
|
16961
18149
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
16962
18150
|
# },
|
18151
|
+
# mpeg_2_settings: {
|
18152
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
18153
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
18154
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
18155
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
18156
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
18157
|
+
# filter_settings: {
|
18158
|
+
# temporal_filter_settings: {
|
18159
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
18160
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
18161
|
+
# },
|
18162
|
+
# },
|
18163
|
+
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
18164
|
+
# framerate_denominator: 1, # required
|
18165
|
+
# framerate_numerator: 1, # required
|
18166
|
+
# gop_closed_cadence: 1,
|
18167
|
+
# gop_num_b_frames: 1,
|
18168
|
+
# gop_size: 1.0,
|
18169
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
18170
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
18171
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
18172
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
18173
|
+
# },
|
16963
18174
|
# }
|
16964
18175
|
#
|
16965
18176
|
# @!attribute [rw] frame_capture_settings
|
@@ -16974,12 +18185,17 @@ module Aws::MediaLive
|
|
16974
18185
|
# H265 Settings
|
16975
18186
|
# @return [Types::H265Settings]
|
16976
18187
|
#
|
18188
|
+
# @!attribute [rw] mpeg_2_settings
|
18189
|
+
# Mpeg2 Settings
|
18190
|
+
# @return [Types::Mpeg2Settings]
|
18191
|
+
#
|
16977
18192
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoCodecSettings AWS API Documentation
|
16978
18193
|
#
|
16979
18194
|
class VideoCodecSettings < Struct.new(
|
16980
18195
|
:frame_capture_settings,
|
16981
18196
|
:h264_settings,
|
16982
|
-
:h265_settings
|
18197
|
+
:h265_settings,
|
18198
|
+
:mpeg_2_settings)
|
16983
18199
|
SENSITIVE = []
|
16984
18200
|
include Aws::Structure
|
16985
18201
|
end
|
@@ -17097,6 +18313,29 @@ module Aws::MediaLive
|
|
17097
18313
|
# tier: "HIGH", # accepts HIGH, MAIN
|
17098
18314
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
17099
18315
|
# },
|
18316
|
+
# mpeg_2_settings: {
|
18317
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
|
18318
|
+
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
18319
|
+
# color_metadata: "IGNORE", # accepts IGNORE, INSERT
|
18320
|
+
# color_space: "AUTO", # accepts AUTO, PASSTHROUGH
|
18321
|
+
# display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
|
18322
|
+
# filter_settings: {
|
18323
|
+
# temporal_filter_settings: {
|
18324
|
+
# post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
|
18325
|
+
# strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
|
18326
|
+
# },
|
18327
|
+
# },
|
18328
|
+
# fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
|
18329
|
+
# framerate_denominator: 1, # required
|
18330
|
+
# framerate_numerator: 1, # required
|
18331
|
+
# gop_closed_cadence: 1,
|
18332
|
+
# gop_num_b_frames: 1,
|
18333
|
+
# gop_size: 1.0,
|
18334
|
+
# gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
|
18335
|
+
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
18336
|
+
# subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
|
18337
|
+
# timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
|
18338
|
+
# },
|
17100
18339
|
# },
|
17101
18340
|
# height: 1,
|
17102
18341
|
# name: "__string", # required
|
@@ -17125,14 +18364,17 @@ module Aws::MediaLive
|
|
17125
18364
|
# @return [String]
|
17126
18365
|
#
|
17127
18366
|
# @!attribute [rw] respond_to_afd
|
17128
|
-
# Indicates how
|
17129
|
-
#
|
17130
|
-
#
|
17131
|
-
#
|
17132
|
-
#
|
17133
|
-
#
|
17134
|
-
#
|
17135
|
-
#
|
18367
|
+
# Indicates how MediaLive will respond to the AFD values that might be
|
18368
|
+
# in the input video. If you do not know what AFD signaling is, or if
|
18369
|
+
# your downstream system has not given you guidance, choose
|
18370
|
+
# PASSTHROUGH. RESPOND: MediaLive clips the input video using a
|
18371
|
+
# formula that uses the AFD values (configured in afdSignaling ), the
|
18372
|
+
# input display aspect ratio, and the output display aspect ratio.
|
18373
|
+
# MediaLive also includes the AFD values in the output, unless the
|
18374
|
+
# codec for this encode is FRAME\_CAPTURE. PASSTHROUGH: MediaLive
|
18375
|
+
# ignores the AFD values and does not clip the video. But MediaLive
|
18376
|
+
# does include the values in the output. NONE: MediaLive does not clip
|
18377
|
+
# the input video and does not include the AFD values in the output
|
17136
18378
|
# @return [String]
|
17137
18379
|
#
|
17138
18380
|
# @!attribute [rw] scaling_behavior
|
@@ -17298,6 +18540,40 @@ module Aws::MediaLive
|
|
17298
18540
|
include Aws::Structure
|
17299
18541
|
end
|
17300
18542
|
|
18543
|
+
# Wav Settings
|
18544
|
+
#
|
18545
|
+
# @note When making an API call, you may pass WavSettings
|
18546
|
+
# data as a hash:
|
18547
|
+
#
|
18548
|
+
# {
|
18549
|
+
# bit_depth: 1.0,
|
18550
|
+
# coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
|
18551
|
+
# sample_rate: 1.0,
|
18552
|
+
# }
|
18553
|
+
#
|
18554
|
+
# @!attribute [rw] bit_depth
|
18555
|
+
# Bits per sample.
|
18556
|
+
# @return [Float]
|
18557
|
+
#
|
18558
|
+
# @!attribute [rw] coding_mode
|
18559
|
+
# The audio coding mode for the WAV audio. The mode determines the
|
18560
|
+
# number of channels in the audio.
|
18561
|
+
# @return [String]
|
18562
|
+
#
|
18563
|
+
# @!attribute [rw] sample_rate
|
18564
|
+
# Sample rate in Hz.
|
18565
|
+
# @return [Float]
|
18566
|
+
#
|
18567
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/WavSettings AWS API Documentation
|
18568
|
+
#
|
18569
|
+
class WavSettings < Struct.new(
|
18570
|
+
:bit_depth,
|
18571
|
+
:coding_mode,
|
18572
|
+
:sample_rate)
|
18573
|
+
SENSITIVE = []
|
18574
|
+
include Aws::Structure
|
18575
|
+
end
|
18576
|
+
|
17301
18577
|
# Webvtt Destination Settings
|
17302
18578
|
#
|
17303
18579
|
# @api private
|