aws-sdk-medialive 1.51.0 → 1.56.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -170,6 +170,32 @@ module Aws::MediaLive
170
170
  include Aws::Structure
171
171
  end
172
172
 
173
+ # Ancillary Source Settings
174
+ #
175
+ # @note When making an API call, you may pass AncillarySourceSettings
176
+ # data as a hash:
177
+ #
178
+ # {
179
+ # source_ancillary_channel_number: 1,
180
+ # }
181
+ #
182
+ # @!attribute [rw] source_ancillary_channel_number
183
+ # Specifies the number (1 to 4) of the captions channel you want to
184
+ # extract from the ancillary captions. If you plan to convert the
185
+ # ancillary captions to another format, complete this field. If you
186
+ # plan to choose Embedded as the captions destination in the output
187
+ # (to pass through all the channels in the ancillary captions), leave
188
+ # this field blank because MediaLive ignores the field.
189
+ # @return [Integer]
190
+ #
191
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AncillarySourceSettings AWS API Documentation
192
+ #
193
+ class AncillarySourceSettings < Struct.new(
194
+ :source_ancillary_channel_number)
195
+ SENSITIVE = []
196
+ include Aws::Structure
197
+ end
198
+
173
199
  # Archive Container Settings
174
200
  #
175
201
  # @note When making an API call, you may pass ArchiveContainerSettings
@@ -236,16 +262,23 @@ module Aws::MediaLive
236
262
  # transport_stream_id: 1,
237
263
  # video_pid: "__string",
238
264
  # },
265
+ # raw_settings: {
266
+ # },
239
267
  # }
240
268
  #
241
269
  # @!attribute [rw] m2ts_settings
242
270
  # M2ts Settings
243
271
  # @return [Types::M2tsSettings]
244
272
  #
273
+ # @!attribute [rw] raw_settings
274
+ # Raw Settings
275
+ # @return [Types::RawSettings]
276
+ #
245
277
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ArchiveContainerSettings AWS API Documentation
246
278
  #
247
279
  class ArchiveContainerSettings < Struct.new(
248
- :m2ts_settings)
280
+ :m2ts_settings,
281
+ :raw_settings)
249
282
  SENSITIVE = []
250
283
  include Aws::Structure
251
284
  end
@@ -347,6 +380,8 @@ module Aws::MediaLive
347
380
  # transport_stream_id: 1,
348
381
  # video_pid: "__string",
349
382
  # },
383
+ # raw_settings: {
384
+ # },
350
385
  # },
351
386
  # extension: "__string",
352
387
  # name_modifier: "__string",
@@ -480,6 +515,11 @@ module Aws::MediaLive
480
515
  # },
481
516
  # pass_through_settings: {
482
517
  # },
518
+ # wav_settings: {
519
+ # bit_depth: 1.0,
520
+ # coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
521
+ # sample_rate: 1.0,
522
+ # },
483
523
  # }
484
524
  #
485
525
  # @!attribute [rw] aac_settings
@@ -502,6 +542,10 @@ module Aws::MediaLive
502
542
  # Pass Through Settings
503
543
  # @return [Types::PassThroughSettings]
504
544
  #
545
+ # @!attribute [rw] wav_settings
546
+ # Wav Settings
547
+ # @return [Types::WavSettings]
548
+ #
505
549
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioCodecSettings AWS API Documentation
506
550
  #
507
551
  class AudioCodecSettings < Struct.new(
@@ -509,7 +553,8 @@ module Aws::MediaLive
509
553
  :ac_3_settings,
510
554
  :eac_3_settings,
511
555
  :mp_2_settings,
512
- :pass_through_settings)
556
+ :pass_through_settings,
557
+ :wav_settings)
513
558
  SENSITIVE = []
514
559
  include Aws::Structure
515
560
  end
@@ -578,6 +623,11 @@ module Aws::MediaLive
578
623
  # },
579
624
  # pass_through_settings: {
580
625
  # },
626
+ # wav_settings: {
627
+ # bit_depth: 1.0,
628
+ # coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
629
+ # sample_rate: 1.0,
630
+ # },
581
631
  # },
582
632
  # language_code: "__stringMin1Max35",
583
633
  # language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
@@ -949,7 +999,7 @@ module Aws::MediaLive
949
999
  # }
950
1000
  #
951
1001
  # @!attribute [rw] tracks
952
- # Selects one or more unique audio tracks from within an mp4 source.
1002
+ # Selects one or more unique audio tracks from within a source.
953
1003
  # @return [Array<Types::AudioTrack>]
954
1004
  #
955
1005
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioTrackSelection AWS API Documentation
@@ -1111,6 +1161,131 @@ module Aws::MediaLive
1111
1161
  include Aws::Structure
1112
1162
  end
1113
1163
 
1164
+ # Batch delete resource request
1165
+ #
1166
+ # @!attribute [rw] channel_ids
1167
+ # List of channel IDs
1168
+ # @return [Array<String>]
1169
+ #
1170
+ # @!attribute [rw] input_ids
1171
+ # List of input IDs
1172
+ # @return [Array<String>]
1173
+ #
1174
+ # @!attribute [rw] input_security_group_ids
1175
+ # List of input security group IDs
1176
+ # @return [Array<String>]
1177
+ #
1178
+ # @!attribute [rw] multiplex_ids
1179
+ # List of multiplex IDs
1180
+ # @return [Array<String>]
1181
+ #
1182
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDelete AWS API Documentation
1183
+ #
1184
+ class BatchDelete < Struct.new(
1185
+ :channel_ids,
1186
+ :input_ids,
1187
+ :input_security_group_ids,
1188
+ :multiplex_ids)
1189
+ SENSITIVE = []
1190
+ include Aws::Structure
1191
+ end
1192
+
1193
+ # @note When making an API call, you may pass BatchDeleteRequest
1194
+ # data as a hash:
1195
+ #
1196
+ # {
1197
+ # channel_ids: ["__string"],
1198
+ # input_ids: ["__string"],
1199
+ # input_security_group_ids: ["__string"],
1200
+ # multiplex_ids: ["__string"],
1201
+ # }
1202
+ #
1203
+ # @!attribute [rw] channel_ids
1204
+ # @return [Array<String>]
1205
+ #
1206
+ # @!attribute [rw] input_ids
1207
+ # @return [Array<String>]
1208
+ #
1209
+ # @!attribute [rw] input_security_group_ids
1210
+ # @return [Array<String>]
1211
+ #
1212
+ # @!attribute [rw] multiplex_ids
1213
+ # @return [Array<String>]
1214
+ #
1215
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDeleteRequest AWS API Documentation
1216
+ #
1217
+ class BatchDeleteRequest < Struct.new(
1218
+ :channel_ids,
1219
+ :input_ids,
1220
+ :input_security_group_ids,
1221
+ :multiplex_ids)
1222
+ SENSITIVE = []
1223
+ include Aws::Structure
1224
+ end
1225
+
1226
+ # @!attribute [rw] failed
1227
+ # @return [Array<Types::BatchFailedResultModel>]
1228
+ #
1229
+ # @!attribute [rw] successful
1230
+ # @return [Array<Types::BatchSuccessfulResultModel>]
1231
+ #
1232
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDeleteResponse AWS API Documentation
1233
+ #
1234
+ class BatchDeleteResponse < Struct.new(
1235
+ :failed,
1236
+ :successful)
1237
+ SENSITIVE = []
1238
+ include Aws::Structure
1239
+ end
1240
+
1241
+ # Batch delete resource results
1242
+ #
1243
+ # @!attribute [rw] failed
1244
+ # List of failed operations
1245
+ # @return [Array<Types::BatchFailedResultModel>]
1246
+ #
1247
+ # @!attribute [rw] successful
1248
+ # List of successful operations
1249
+ # @return [Array<Types::BatchSuccessfulResultModel>]
1250
+ #
1251
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDeleteResultModel AWS API Documentation
1252
+ #
1253
+ class BatchDeleteResultModel < Struct.new(
1254
+ :failed,
1255
+ :successful)
1256
+ SENSITIVE = []
1257
+ include Aws::Structure
1258
+ end
1259
+
1260
+ # Details from a failed operation
1261
+ #
1262
+ # @!attribute [rw] arn
1263
+ # ARN of the resource
1264
+ # @return [String]
1265
+ #
1266
+ # @!attribute [rw] code
1267
+ # Error code for the failed operation
1268
+ # @return [String]
1269
+ #
1270
+ # @!attribute [rw] id
1271
+ # ID of the resource
1272
+ # @return [String]
1273
+ #
1274
+ # @!attribute [rw] message
1275
+ # Error message for the failed operation
1276
+ # @return [String]
1277
+ #
1278
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchFailedResultModel AWS API Documentation
1279
+ #
1280
+ class BatchFailedResultModel < Struct.new(
1281
+ :arn,
1282
+ :code,
1283
+ :id,
1284
+ :message)
1285
+ SENSITIVE = []
1286
+ include Aws::Structure
1287
+ end
1288
+
1114
1289
  # A list of schedule actions to create (in a request) or that have been
1115
1290
  # created (in a response).
1116
1291
  #
@@ -1293,6 +1468,182 @@ module Aws::MediaLive
1293
1468
  include Aws::Structure
1294
1469
  end
1295
1470
 
1471
+ # Batch start resource request
1472
+ #
1473
+ # @!attribute [rw] channel_ids
1474
+ # List of channel IDs
1475
+ # @return [Array<String>]
1476
+ #
1477
+ # @!attribute [rw] multiplex_ids
1478
+ # List of multiplex IDs
1479
+ # @return [Array<String>]
1480
+ #
1481
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStart AWS API Documentation
1482
+ #
1483
+ class BatchStart < Struct.new(
1484
+ :channel_ids,
1485
+ :multiplex_ids)
1486
+ SENSITIVE = []
1487
+ include Aws::Structure
1488
+ end
1489
+
1490
+ # @note When making an API call, you may pass BatchStartRequest
1491
+ # data as a hash:
1492
+ #
1493
+ # {
1494
+ # channel_ids: ["__string"],
1495
+ # multiplex_ids: ["__string"],
1496
+ # }
1497
+ #
1498
+ # @!attribute [rw] channel_ids
1499
+ # @return [Array<String>]
1500
+ #
1501
+ # @!attribute [rw] multiplex_ids
1502
+ # @return [Array<String>]
1503
+ #
1504
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStartRequest AWS API Documentation
1505
+ #
1506
+ class BatchStartRequest < Struct.new(
1507
+ :channel_ids,
1508
+ :multiplex_ids)
1509
+ SENSITIVE = []
1510
+ include Aws::Structure
1511
+ end
1512
+
1513
+ # @!attribute [rw] failed
1514
+ # @return [Array<Types::BatchFailedResultModel>]
1515
+ #
1516
+ # @!attribute [rw] successful
1517
+ # @return [Array<Types::BatchSuccessfulResultModel>]
1518
+ #
1519
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStartResponse AWS API Documentation
1520
+ #
1521
+ class BatchStartResponse < Struct.new(
1522
+ :failed,
1523
+ :successful)
1524
+ SENSITIVE = []
1525
+ include Aws::Structure
1526
+ end
1527
+
1528
+ # Batch start resource results
1529
+ #
1530
+ # @!attribute [rw] failed
1531
+ # List of failed operations
1532
+ # @return [Array<Types::BatchFailedResultModel>]
1533
+ #
1534
+ # @!attribute [rw] successful
1535
+ # List of successful operations
1536
+ # @return [Array<Types::BatchSuccessfulResultModel>]
1537
+ #
1538
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStartResultModel AWS API Documentation
1539
+ #
1540
+ class BatchStartResultModel < Struct.new(
1541
+ :failed,
1542
+ :successful)
1543
+ SENSITIVE = []
1544
+ include Aws::Structure
1545
+ end
1546
+
1547
+ # Batch stop resource request
1548
+ #
1549
+ # @!attribute [rw] channel_ids
1550
+ # List of channel IDs
1551
+ # @return [Array<String>]
1552
+ #
1553
+ # @!attribute [rw] multiplex_ids
1554
+ # List of multiplex IDs
1555
+ # @return [Array<String>]
1556
+ #
1557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStop AWS API Documentation
1558
+ #
1559
+ class BatchStop < Struct.new(
1560
+ :channel_ids,
1561
+ :multiplex_ids)
1562
+ SENSITIVE = []
1563
+ include Aws::Structure
1564
+ end
1565
+
1566
+ # @note When making an API call, you may pass BatchStopRequest
1567
+ # data as a hash:
1568
+ #
1569
+ # {
1570
+ # channel_ids: ["__string"],
1571
+ # multiplex_ids: ["__string"],
1572
+ # }
1573
+ #
1574
+ # @!attribute [rw] channel_ids
1575
+ # @return [Array<String>]
1576
+ #
1577
+ # @!attribute [rw] multiplex_ids
1578
+ # @return [Array<String>]
1579
+ #
1580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStopRequest AWS API Documentation
1581
+ #
1582
+ class BatchStopRequest < Struct.new(
1583
+ :channel_ids,
1584
+ :multiplex_ids)
1585
+ SENSITIVE = []
1586
+ include Aws::Structure
1587
+ end
1588
+
1589
+ # @!attribute [rw] failed
1590
+ # @return [Array<Types::BatchFailedResultModel>]
1591
+ #
1592
+ # @!attribute [rw] successful
1593
+ # @return [Array<Types::BatchSuccessfulResultModel>]
1594
+ #
1595
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStopResponse AWS API Documentation
1596
+ #
1597
+ class BatchStopResponse < Struct.new(
1598
+ :failed,
1599
+ :successful)
1600
+ SENSITIVE = []
1601
+ include Aws::Structure
1602
+ end
1603
+
1604
+ # Batch stop resource results
1605
+ #
1606
+ # @!attribute [rw] failed
1607
+ # List of failed operations
1608
+ # @return [Array<Types::BatchFailedResultModel>]
1609
+ #
1610
+ # @!attribute [rw] successful
1611
+ # List of successful operations
1612
+ # @return [Array<Types::BatchSuccessfulResultModel>]
1613
+ #
1614
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStopResultModel AWS API Documentation
1615
+ #
1616
+ class BatchStopResultModel < Struct.new(
1617
+ :failed,
1618
+ :successful)
1619
+ SENSITIVE = []
1620
+ include Aws::Structure
1621
+ end
1622
+
1623
+ # Details from a successful operation
1624
+ #
1625
+ # @!attribute [rw] arn
1626
+ # ARN of the resource
1627
+ # @return [String]
1628
+ #
1629
+ # @!attribute [rw] id
1630
+ # ID of the resource
1631
+ # @return [String]
1632
+ #
1633
+ # @!attribute [rw] state
1634
+ # Current state of the resource
1635
+ # @return [String]
1636
+ #
1637
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchSuccessfulResultModel AWS API Documentation
1638
+ #
1639
+ class BatchSuccessfulResultModel < Struct.new(
1640
+ :arn,
1641
+ :id,
1642
+ :state)
1643
+ SENSITIVE = []
1644
+ include Aws::Structure
1645
+ end
1646
+
1296
1647
  # A request to create actions (add actions to the schedule), delete
1297
1648
  # actions (remove actions from the schedule), or both create and delete
1298
1649
  # actions.
@@ -2035,6 +2386,9 @@ module Aws::MediaLive
2035
2386
  # language_code: "__string",
2036
2387
  # name: "__stringMin1", # required
2037
2388
  # selector_settings: {
2389
+ # ancillary_source_settings: {
2390
+ # source_ancillary_channel_number: 1,
2391
+ # },
2038
2392
  # arib_source_settings: {
2039
2393
  # },
2040
2394
  # dvb_sub_source_settings: {
@@ -2090,6 +2444,9 @@ module Aws::MediaLive
2090
2444
  # data as a hash:
2091
2445
  #
2092
2446
  # {
2447
+ # ancillary_source_settings: {
2448
+ # source_ancillary_channel_number: 1,
2449
+ # },
2093
2450
  # arib_source_settings: {
2094
2451
  # },
2095
2452
  # dvb_sub_source_settings: {
@@ -2113,6 +2470,10 @@ module Aws::MediaLive
2113
2470
  # },
2114
2471
  # }
2115
2472
  #
2473
+ # @!attribute [rw] ancillary_source_settings
2474
+ # Ancillary Source Settings
2475
+ # @return [Types::AncillarySourceSettings]
2476
+ #
2116
2477
  # @!attribute [rw] arib_source_settings
2117
2478
  # Arib Source Settings
2118
2479
  # @return [Types::AribSourceSettings]
@@ -2140,6 +2501,7 @@ module Aws::MediaLive
2140
2501
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CaptionSelectorSettings AWS API Documentation
2141
2502
  #
2142
2503
  class CaptionSelectorSettings < Struct.new(
2504
+ :ancillary_source_settings,
2143
2505
  :arib_source_settings,
2144
2506
  :dvb_sub_source_settings,
2145
2507
  :embedded_source_settings,
@@ -2150,10 +2512,33 @@ module Aws::MediaLive
2150
2512
  include Aws::Structure
2151
2513
  end
2152
2514
 
2515
+ # @note When making an API call, you may pass CdiInputSpecification
2516
+ # data as a hash:
2517
+ #
2518
+ # {
2519
+ # resolution: "SD", # accepts SD, HD, FHD, UHD
2520
+ # }
2521
+ #
2522
+ # @!attribute [rw] resolution
2523
+ # Maximum CDI input resolution
2524
+ # @return [String]
2525
+ #
2526
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CdiInputSpecification AWS API Documentation
2527
+ #
2528
+ class CdiInputSpecification < Struct.new(
2529
+ :resolution)
2530
+ SENSITIVE = []
2531
+ include Aws::Structure
2532
+ end
2533
+
2153
2534
  # @!attribute [rw] arn
2154
2535
  # The unique arn of the channel.
2155
2536
  # @return [String]
2156
2537
  #
2538
+ # @!attribute [rw] cdi_input_specification
2539
+ # Specification of CDI inputs for this channel
2540
+ # @return [Types::CdiInputSpecification]
2541
+ #
2157
2542
  # @!attribute [rw] channel_class
2158
2543
  # The class for this channel. STANDARD for a channel with two
2159
2544
  # pipelines or SINGLE\_PIPELINE for a channel with one pipeline.
@@ -2182,6 +2567,7 @@ module Aws::MediaLive
2182
2567
  # @return [Array<Types::InputAttachment>]
2183
2568
  #
2184
2569
  # @!attribute [rw] input_specification
2570
+ # Specification of network and file inputs for this channel
2185
2571
  # @return [Types::InputSpecification]
2186
2572
  #
2187
2573
  # @!attribute [rw] log_level
@@ -2216,6 +2602,7 @@ module Aws::MediaLive
2216
2602
  #
2217
2603
  class Channel < Struct.new(
2218
2604
  :arn,
2605
+ :cdi_input_specification,
2219
2606
  :channel_class,
2220
2607
  :destinations,
2221
2608
  :egress_endpoints,
@@ -2266,6 +2653,10 @@ module Aws::MediaLive
2266
2653
  # The unique arn of the channel.
2267
2654
  # @return [String]
2268
2655
  #
2656
+ # @!attribute [rw] cdi_input_specification
2657
+ # Specification of CDI inputs for this channel
2658
+ # @return [Types::CdiInputSpecification]
2659
+ #
2269
2660
  # @!attribute [rw] channel_class
2270
2661
  # The class for this channel. STANDARD for a channel with two
2271
2662
  # pipelines or SINGLE\_PIPELINE for a channel with one pipeline.
@@ -2290,6 +2681,7 @@ module Aws::MediaLive
2290
2681
  # @return [Array<Types::InputAttachment>]
2291
2682
  #
2292
2683
  # @!attribute [rw] input_specification
2684
+ # Specification of network and file inputs for this channel
2293
2685
  # @return [Types::InputSpecification]
2294
2686
  #
2295
2687
  # @!attribute [rw] log_level
@@ -2320,6 +2712,7 @@ module Aws::MediaLive
2320
2712
  #
2321
2713
  class ChannelSummary < Struct.new(
2322
2714
  :arn,
2715
+ :cdi_input_specification,
2323
2716
  :channel_class,
2324
2717
  :destinations,
2325
2718
  :egress_endpoints,
@@ -2355,6 +2748,10 @@ module Aws::MediaLive
2355
2748
  include Aws::Structure
2356
2749
  end
2357
2750
 
2751
+ # @!attribute [rw] cdi_input_specification
2752
+ # Specification of CDI inputs for this channel
2753
+ # @return [Types::CdiInputSpecification]
2754
+ #
2358
2755
  # @!attribute [rw] channel_class
2359
2756
  # The class for this channel. STANDARD for a channel with two
2360
2757
  # pipelines or SINGLE\_PIPELINE for a channel with one pipeline.
@@ -2372,8 +2769,7 @@ module Aws::MediaLive
2372
2769
  # @return [Array<Types::InputAttachment>]
2373
2770
  #
2374
2771
  # @!attribute [rw] input_specification
2375
- # Specification of input for this channel (max. bitrate, resolution,
2376
- # codec, etc.)
2772
+ # Specification of network and file inputs for this channel
2377
2773
  # @return [Types::InputSpecification]
2378
2774
  #
2379
2775
  # @!attribute [rw] log_level
@@ -2405,6 +2801,7 @@ module Aws::MediaLive
2405
2801
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannel AWS API Documentation
2406
2802
  #
2407
2803
  class CreateChannel < Struct.new(
2804
+ :cdi_input_specification,
2408
2805
  :channel_class,
2409
2806
  :destinations,
2410
2807
  :encoder_settings,
@@ -2424,6 +2821,9 @@ module Aws::MediaLive
2424
2821
  # data as a hash:
2425
2822
  #
2426
2823
  # {
2824
+ # cdi_input_specification: {
2825
+ # resolution: "SD", # accepts SD, HD, FHD, UHD
2826
+ # },
2427
2827
  # channel_class: "STANDARD", # accepts STANDARD, SINGLE_PIPELINE
2428
2828
  # destinations: [
2429
2829
  # {
@@ -2508,6 +2908,11 @@ module Aws::MediaLive
2508
2908
  # },
2509
2909
  # pass_through_settings: {
2510
2910
  # },
2911
+ # wav_settings: {
2912
+ # bit_depth: 1.0,
2913
+ # coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
2914
+ # sample_rate: 1.0,
2915
+ # },
2511
2916
  # },
2512
2917
  # language_code: "__stringMin1Max35",
2513
2918
  # language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
@@ -2890,6 +3295,8 @@ module Aws::MediaLive
2890
3295
  # transport_stream_id: 1,
2891
3296
  # video_pid: "__string",
2892
3297
  # },
3298
+ # raw_settings: {
3299
+ # },
2893
3300
  # },
2894
3301
  # extension: "__string",
2895
3302
  # name_modifier: "__string",
@@ -3152,6 +3559,29 @@ module Aws::MediaLive
3152
3559
  # tier: "HIGH", # accepts HIGH, MAIN
3153
3560
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
3154
3561
  # },
3562
+ # mpeg_2_settings: {
3563
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
3564
+ # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
3565
+ # color_metadata: "IGNORE", # accepts IGNORE, INSERT
3566
+ # color_space: "AUTO", # accepts AUTO, PASSTHROUGH
3567
+ # display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
3568
+ # filter_settings: {
3569
+ # temporal_filter_settings: {
3570
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
3571
+ # 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
3572
+ # },
3573
+ # },
3574
+ # 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
3575
+ # framerate_denominator: 1, # required
3576
+ # framerate_numerator: 1, # required
3577
+ # gop_closed_cadence: 1,
3578
+ # gop_num_b_frames: 1,
3579
+ # gop_size: 1.0,
3580
+ # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
3581
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
3582
+ # subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
3583
+ # timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
3584
+ # },
3155
3585
  # },
3156
3586
  # height: 1,
3157
3587
  # name: "__string", # required
@@ -3197,6 +3627,9 @@ module Aws::MediaLive
3197
3627
  # language_code: "__string",
3198
3628
  # name: "__stringMin1", # required
3199
3629
  # selector_settings: {
3630
+ # ancillary_source_settings: {
3631
+ # source_ancillary_channel_number: 1,
3632
+ # },
3200
3633
  # arib_source_settings: {
3201
3634
  # },
3202
3635
  # dvb_sub_source_settings: {
@@ -3266,6 +3699,9 @@ module Aws::MediaLive
3266
3699
  # },
3267
3700
  # }
3268
3701
  #
3702
+ # @!attribute [rw] cdi_input_specification
3703
+ # @return [Types::CdiInputSpecification]
3704
+ #
3269
3705
  # @!attribute [rw] channel_class
3270
3706
  # A standard channel has two encoding pipelines and a single pipeline
3271
3707
  # channel only has one.
@@ -3308,6 +3744,7 @@ module Aws::MediaLive
3308
3744
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateChannelRequest AWS API Documentation
3309
3745
  #
3310
3746
  class CreateChannelRequest < Struct.new(
3747
+ :cdi_input_specification,
3311
3748
  :channel_class,
3312
3749
  :destinations,
3313
3750
  :encoder_settings,
@@ -3451,7 +3888,7 @@ module Aws::MediaLive
3451
3888
  # tags: {
3452
3889
  # "__string" => "__string",
3453
3890
  # },
3454
- # type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE
3891
+ # type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI
3455
3892
  # vpc: {
3456
3893
  # security_group_ids: ["__string"],
3457
3894
  # subnet_ids: ["__string"], # required
@@ -3665,6 +4102,7 @@ module Aws::MediaLive
3665
4102
  # statmux_settings: {
3666
4103
  # maximum_bitrate: 1,
3667
4104
  # minimum_bitrate: 1,
4105
+ # priority: 1,
3668
4106
  # },
3669
4107
  # },
3670
4108
  # },
@@ -3840,6 +4278,9 @@ module Aws::MediaLive
3840
4278
  # @!attribute [rw] arn
3841
4279
  # @return [String]
3842
4280
  #
4281
+ # @!attribute [rw] cdi_input_specification
4282
+ # @return [Types::CdiInputSpecification]
4283
+ #
3843
4284
  # @!attribute [rw] channel_class
3844
4285
  # A standard channel has two encoding pipelines and a single pipeline
3845
4286
  # channel only has one.
@@ -3890,6 +4331,7 @@ module Aws::MediaLive
3890
4331
  #
3891
4332
  class DeleteChannelResponse < Struct.new(
3892
4333
  :arn,
4334
+ :cdi_input_specification,
3893
4335
  :channel_class,
3894
4336
  :destinations,
3895
4337
  :egress_endpoints,
@@ -3986,6 +4428,9 @@ module Aws::MediaLive
3986
4428
  # Packet identifiers map for a given Multiplex program.
3987
4429
  # @return [Types::MultiplexProgramPacketIdentifiersMap]
3988
4430
  #
4431
+ # @!attribute [rw] pipeline_details
4432
+ # @return [Array<Types::MultiplexProgramPipelineDetail>]
4433
+ #
3989
4434
  # @!attribute [rw] program_name
3990
4435
  # @return [String]
3991
4436
  #
@@ -3995,6 +4440,7 @@ module Aws::MediaLive
3995
4440
  :channel_id,
3996
4441
  :multiplex_program_settings,
3997
4442
  :packet_identifiers_map,
4443
+ :pipeline_details,
3998
4444
  :program_name)
3999
4445
  SENSITIVE = []
4000
4446
  include Aws::Structure
@@ -4234,6 +4680,9 @@ module Aws::MediaLive
4234
4680
  # @!attribute [rw] arn
4235
4681
  # @return [String]
4236
4682
  #
4683
+ # @!attribute [rw] cdi_input_specification
4684
+ # @return [Types::CdiInputSpecification]
4685
+ #
4237
4686
  # @!attribute [rw] channel_class
4238
4687
  # A standard channel has two encoding pipelines and a single pipeline
4239
4688
  # channel only has one.
@@ -4284,6 +4733,7 @@ module Aws::MediaLive
4284
4733
  #
4285
4734
  class DescribeChannelResponse < Struct.new(
4286
4735
  :arn,
4736
+ :cdi_input_specification,
4287
4737
  :channel_class,
4288
4738
  :destinations,
4289
4739
  :egress_endpoints,
@@ -4391,7 +4841,6 @@ module Aws::MediaLive
4391
4841
  # @return [String]
4392
4842
  #
4393
4843
  # @!attribute [rw] accept
4394
- # Accept Header
4395
4844
  # @return [String]
4396
4845
  #
4397
4846
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDeviceThumbnailRequest AWS API Documentation
@@ -4605,6 +5054,9 @@ module Aws::MediaLive
4605
5054
  # Packet identifiers map for a given Multiplex program.
4606
5055
  # @return [Types::MultiplexProgramPacketIdentifiersMap]
4607
5056
  #
5057
+ # @!attribute [rw] pipeline_details
5058
+ # @return [Array<Types::MultiplexProgramPipelineDetail>]
5059
+ #
4608
5060
  # @!attribute [rw] program_name
4609
5061
  # @return [String]
4610
5062
  #
@@ -4614,6 +5066,7 @@ module Aws::MediaLive
4614
5066
  :channel_id,
4615
5067
  :multiplex_program_settings,
4616
5068
  :packet_identifiers_map,
5069
+ :pipeline_details,
4617
5070
  :program_name)
4618
5071
  SENSITIVE = []
4619
5072
  include Aws::Structure
@@ -5551,6 +6004,11 @@ module Aws::MediaLive
5551
6004
  # },
5552
6005
  # pass_through_settings: {
5553
6006
  # },
6007
+ # wav_settings: {
6008
+ # bit_depth: 1.0,
6009
+ # coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
6010
+ # sample_rate: 1.0,
6011
+ # },
5554
6012
  # },
5555
6013
  # language_code: "__stringMin1Max35",
5556
6014
  # language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
@@ -5933,6 +6391,8 @@ module Aws::MediaLive
5933
6391
  # transport_stream_id: 1,
5934
6392
  # video_pid: "__string",
5935
6393
  # },
6394
+ # raw_settings: {
6395
+ # },
5936
6396
  # },
5937
6397
  # extension: "__string",
5938
6398
  # name_modifier: "__string",
@@ -6195,6 +6655,29 @@ module Aws::MediaLive
6195
6655
  # tier: "HIGH", # accepts HIGH, MAIN
6196
6656
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
6197
6657
  # },
6658
+ # mpeg_2_settings: {
6659
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
6660
+ # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
6661
+ # color_metadata: "IGNORE", # accepts IGNORE, INSERT
6662
+ # color_space: "AUTO", # accepts AUTO, PASSTHROUGH
6663
+ # display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
6664
+ # filter_settings: {
6665
+ # temporal_filter_settings: {
6666
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
6667
+ # 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
6668
+ # },
6669
+ # },
6670
+ # 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
6671
+ # framerate_denominator: 1, # required
6672
+ # framerate_numerator: 1, # required
6673
+ # gop_closed_cadence: 1,
6674
+ # gop_num_b_frames: 1,
6675
+ # gop_size: 1.0,
6676
+ # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
6677
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
6678
+ # subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
6679
+ # timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
6680
+ # },
6198
6681
  # },
6199
6682
  # height: 1,
6200
6683
  # name: "__string", # required
@@ -6447,13 +6930,13 @@ module Aws::MediaLive
6447
6930
  # @!attribute [rw] destination
6448
6931
  # The destination for the frame capture files. Either the URI for an
6449
6932
  # Amazon S3 bucket and object, plus a file name prefix (for example,
6450
- # s3ssl://sportsDelivery/highlights/20180820/curling\_) or the URI for
6933
+ # s3ssl://sportsDelivery/highlights/20180820/curling-) or the URI for
6451
6934
  # a MediaStore container, plus a file name prefix (for example,
6452
- # mediastoressl://sportsDelivery/20180820/curling\_). The final file
6935
+ # mediastoressl://sportsDelivery/20180820/curling-). The final file
6453
6936
  # names consist of the prefix from the destination field (for example,
6454
- # "curling\_") + name modifier + the counter (5 digits, starting
6455
- # from 00001) + extension (which is always .jpg). For example,
6456
- # curlingLow.00001.jpg
6937
+ # "curling-") + name modifier + the counter (5 digits, starting from
6938
+ # 00001) + extension (which is always .jpg). For example,
6939
+ # curling-low.00001.jpg
6457
6940
  # @return [Types::OutputLocationRef]
6458
6941
  #
6459
6942
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FrameCaptureGroupSettings AWS API Documentation
@@ -7747,7 +8230,7 @@ module Aws::MediaLive
7747
8230
  # Applies only if Mode field is LIVE. Specifies the maximum number of
7748
8231
  # segments in the media manifest file. After this maximum, older
7749
8232
  # segments are removed from the media manifest. This number must be
7750
- # less than or equal to the Keep Segments field.
8233
+ # smaller than the number in the Keep Segments field.
7751
8234
  # @return [Integer]
7752
8235
  #
7753
8236
  # @!attribute [rw] input_loss_action
@@ -7771,7 +8254,14 @@ module Aws::MediaLive
7771
8254
  #
7772
8255
  # @!attribute [rw] keep_segments
7773
8256
  # Applies only if Mode field is LIVE. Specifies the number of media
7774
- # segments (.ts files) to retain in the destination directory.
8257
+ # segments to retain in the destination directory. This number should
8258
+ # be bigger than indexNSegments (Num segments). We recommend (value =
8259
+ # (2 x indexNsegments) + 1). If this "keep segments" number is too
8260
+ # low, the following might happen: the player is still reading a media
8261
+ # manifest file that lists this segment, but that segment has been
8262
+ # removed from the destination directory (as directed by
8263
+ # indexNSegments). This situation would result in a 404 HTTP error on
8264
+ # the player.
7775
8265
  # @return [Integer]
7776
8266
  #
7777
8267
  # @!attribute [rw] key_format
@@ -8419,6 +8909,9 @@ module Aws::MediaLive
8419
8909
  # language_code: "__string",
8420
8910
  # name: "__stringMin1", # required
8421
8911
  # selector_settings: {
8912
+ # ancillary_source_settings: {
8913
+ # source_ancillary_channel_number: 1,
8914
+ # },
8422
8915
  # arib_source_settings: {
8423
8916
  # },
8424
8917
  # dvb_sub_source_settings: {
@@ -9186,6 +9679,9 @@ module Aws::MediaLive
9186
9679
  # language_code: "__string",
9187
9680
  # name: "__stringMin1", # required
9188
9681
  # selector_settings: {
9682
+ # ancillary_source_settings: {
9683
+ # source_ancillary_channel_number: 1,
9684
+ # },
9189
9685
  # arib_source_settings: {
9190
9686
  # },
9191
9687
  # dvb_sub_source_settings: {
@@ -10277,10 +10773,12 @@ module Aws::MediaLive
10277
10773
  # @return [Integer]
10278
10774
  #
10279
10775
  # @!attribute [rw] buffer_model
10280
- # If set to multiplex, use multiplex buffer model for accurate
10281
- # interleaving. Setting to bufferModel to none can lead to lower
10282
- # latency, but low-memory devices may not be able to play back the
10283
- # stream without interruptions.
10776
+ # Controls the timing accuracy for output network traffic. Leave as
10777
+ # MULTIPLEX to ensure accurate network packet timing. Or set to NONE,
10778
+ # which might result in lower latency but will result in more
10779
+ # variability in output network packet timing. This variability might
10780
+ # cause interruptions, jitter, or bursty behavior in your playback or
10781
+ # receiving devices.
10284
10782
  # @return [String]
10285
10783
  #
10286
10784
  # @!attribute [rw] cc_descriptor
@@ -10833,6 +11331,197 @@ module Aws::MediaLive
10833
11331
  include Aws::Structure
10834
11332
  end
10835
11333
 
11334
+ # Mpeg2 Filter Settings
11335
+ #
11336
+ # @note When making an API call, you may pass Mpeg2FilterSettings
11337
+ # data as a hash:
11338
+ #
11339
+ # {
11340
+ # temporal_filter_settings: {
11341
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
11342
+ # 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
11343
+ # },
11344
+ # }
11345
+ #
11346
+ # @!attribute [rw] temporal_filter_settings
11347
+ # Temporal Filter Settings
11348
+ # @return [Types::TemporalFilterSettings]
11349
+ #
11350
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mpeg2FilterSettings AWS API Documentation
11351
+ #
11352
+ class Mpeg2FilterSettings < Struct.new(
11353
+ :temporal_filter_settings)
11354
+ SENSITIVE = []
11355
+ include Aws::Structure
11356
+ end
11357
+
11358
+ # Mpeg2 Settings
11359
+ #
11360
+ # @note When making an API call, you may pass Mpeg2Settings
11361
+ # data as a hash:
11362
+ #
11363
+ # {
11364
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
11365
+ # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
11366
+ # color_metadata: "IGNORE", # accepts IGNORE, INSERT
11367
+ # color_space: "AUTO", # accepts AUTO, PASSTHROUGH
11368
+ # display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
11369
+ # filter_settings: {
11370
+ # temporal_filter_settings: {
11371
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
11372
+ # 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
11373
+ # },
11374
+ # },
11375
+ # 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
11376
+ # framerate_denominator: 1, # required
11377
+ # framerate_numerator: 1, # required
11378
+ # gop_closed_cadence: 1,
11379
+ # gop_num_b_frames: 1,
11380
+ # gop_size: 1.0,
11381
+ # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
11382
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
11383
+ # subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
11384
+ # timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
11385
+ # }
11386
+ #
11387
+ # @!attribute [rw] adaptive_quantization
11388
+ # Choose Off to disable adaptive quantization. Or choose another value
11389
+ # to enable the quantizer and set its strength. The strengths are:
11390
+ # Auto, Off, Low, Medium, High. When you enable this field, MediaLive
11391
+ # allows intra-frame quantizers to vary, which might improve visual
11392
+ # quality.
11393
+ # @return [String]
11394
+ #
11395
+ # @!attribute [rw] afd_signaling
11396
+ # Indicates the AFD values that MediaLive will write into the video
11397
+ # encode. If you do not know what AFD signaling is, or if your
11398
+ # downstream system has not given you guidance, choose AUTO. AUTO:
11399
+ # MediaLive will try to preserve the input AFD value (in cases where
11400
+ # multiple AFD values are valid). FIXED: MediaLive will use the value
11401
+ # you specify in fixedAFD.
11402
+ # @return [String]
11403
+ #
11404
+ # @!attribute [rw] color_metadata
11405
+ # Specifies whether to include the color space metadata. The metadata
11406
+ # describes the color space that applies to the video (the colorSpace
11407
+ # field). We recommend that you insert the metadata.
11408
+ # @return [String]
11409
+ #
11410
+ # @!attribute [rw] color_space
11411
+ # Choose the type of color space conversion to apply to the output.
11412
+ # For detailed information on setting up both the input and the output
11413
+ # to obtain the desired color space in the output, see the section on
11414
+ # \\"MediaLive Features - Video - color space\\" in the MediaLive
11415
+ # User Guide. PASSTHROUGH: Keep the color space of the input content -
11416
+ # do not convert it. AUTO:Convert all content that is SD to rec 601,
11417
+ # and convert all content that is HD to rec 709.
11418
+ # @return [String]
11419
+ #
11420
+ # @!attribute [rw] display_aspect_ratio
11421
+ # Sets the pixel aspect ratio for the encode.
11422
+ # @return [String]
11423
+ #
11424
+ # @!attribute [rw] filter_settings
11425
+ # Optionally specify a noise reduction filter, which can improve
11426
+ # quality of compressed content. If you do not choose a filter, no
11427
+ # filter will be applied. TEMPORAL: This filter is useful for both
11428
+ # source content that is noisy (when it has excessive digital
11429
+ # artifacts) and source content that is clean. When the content is
11430
+ # noisy, the filter cleans up the source content before the encoding
11431
+ # phase, with these two effects: First, it improves the output video
11432
+ # quality because the content has been cleaned up. Secondly, it
11433
+ # decreases the bandwidth because MediaLive does not waste bits on
11434
+ # encoding noise. When the content is reasonably clean, the filter
11435
+ # tends to decrease the bitrate.
11436
+ # @return [Types::Mpeg2FilterSettings]
11437
+ #
11438
+ # @!attribute [rw] fixed_afd
11439
+ # Complete this field only when afdSignaling is set to FIXED. Enter
11440
+ # the AFD value (4 bits) to write on all frames of the video encode.
11441
+ # @return [String]
11442
+ #
11443
+ # @!attribute [rw] framerate_denominator
11444
+ # description": "The framerate denominator. For example, 1001. The
11445
+ # framerate is the numerator divided by the denominator. For example,
11446
+ # 24000 / 1001 = 23.976 FPS.
11447
+ # @return [Integer]
11448
+ #
11449
+ # @!attribute [rw] framerate_numerator
11450
+ # The framerate numerator. For example, 24000. The framerate is the
11451
+ # numerator divided by the denominator. For example, 24000 / 1001 =
11452
+ # 23.976 FPS.
11453
+ # @return [Integer]
11454
+ #
11455
+ # @!attribute [rw] gop_closed_cadence
11456
+ # MPEG2: default is open GOP.
11457
+ # @return [Integer]
11458
+ #
11459
+ # @!attribute [rw] gop_num_b_frames
11460
+ # Relates to the GOP structure. The number of B-frames between
11461
+ # reference frames. If you do not know what a B-frame is, use the
11462
+ # default.
11463
+ # @return [Integer]
11464
+ #
11465
+ # @!attribute [rw] gop_size
11466
+ # Relates to the GOP structure. The GOP size (keyframe interval) in
11467
+ # the units specified in gopSizeUnits. If you do not know what GOP is,
11468
+ # use the default. If gopSizeUnits is frames, then the gopSize must be
11469
+ # an integer and must be greater than or equal to 1. If gopSizeUnits
11470
+ # is seconds, the gopSize must be greater than 0, but does not need to
11471
+ # be an integer.
11472
+ # @return [Float]
11473
+ #
11474
+ # @!attribute [rw] gop_size_units
11475
+ # Relates to the GOP structure. Specifies whether the gopSize is
11476
+ # specified in frames or seconds. If you do not plan to change the
11477
+ # default gopSize, leave the default. If you specify SECONDS,
11478
+ # MediaLive will internally convert the gop size to a frame count.
11479
+ # @return [String]
11480
+ #
11481
+ # @!attribute [rw] scan_type
11482
+ # Set the scan type of the output to PROGRESSIVE or INTERLACED (top
11483
+ # field first).
11484
+ # @return [String]
11485
+ #
11486
+ # @!attribute [rw] subgop_length
11487
+ # Relates to the GOP structure. If you do not know what GOP is, use
11488
+ # the default. FIXED: Set the number of B-frames in each sub-GOP to
11489
+ # the value in gopNumBFrames. DYNAMIC: Let MediaLive optimize the
11490
+ # number of B-frames in each sub-GOP, to improve visual quality.
11491
+ # @return [String]
11492
+ #
11493
+ # @!attribute [rw] timecode_insertion
11494
+ # Determines how MediaLive inserts timecodes in the output video. For
11495
+ # detailed information about setting up the input and the output for a
11496
+ # timecode, see the section on \\"MediaLive Features - Timecode
11497
+ # configuration\\" in the MediaLive User Guide. DISABLED: do not
11498
+ # include timecodes. GOP\_TIMECODE: Include timecode metadata in the
11499
+ # GOP header.
11500
+ # @return [String]
11501
+ #
11502
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Mpeg2Settings AWS API Documentation
11503
+ #
11504
+ class Mpeg2Settings < Struct.new(
11505
+ :adaptive_quantization,
11506
+ :afd_signaling,
11507
+ :color_metadata,
11508
+ :color_space,
11509
+ :display_aspect_ratio,
11510
+ :filter_settings,
11511
+ :fixed_afd,
11512
+ :framerate_denominator,
11513
+ :framerate_numerator,
11514
+ :gop_closed_cadence,
11515
+ :gop_num_b_frames,
11516
+ :gop_size,
11517
+ :gop_size_units,
11518
+ :scan_type,
11519
+ :subgop_length,
11520
+ :timecode_insertion)
11521
+ SENSITIVE = []
11522
+ include Aws::Structure
11523
+ end
11524
+
10836
11525
  # Ms Smooth Group Settings
10837
11526
  #
10838
11527
  # @note When making an API call, you may pass MsSmoothGroupSettings
@@ -11174,6 +11863,14 @@ module Aws::MediaLive
11174
11863
  # The packet identifier map for this multiplex program.
11175
11864
  # @return [Types::MultiplexProgramPacketIdentifiersMap]
11176
11865
  #
11866
+ # @!attribute [rw] pipeline_details
11867
+ # Contains information about the current sources for the specified
11868
+ # program in the specified multiplex. Keep in mind that each multiplex
11869
+ # pipeline connects to both pipelines in a given source channel (the
11870
+ # channel identified by the program). But only one of those channel
11871
+ # pipelines is ever active at one time.
11872
+ # @return [Array<Types::MultiplexProgramPipelineDetail>]
11873
+ #
11177
11874
  # @!attribute [rw] program_name
11178
11875
  # The name of the multiplex program.
11179
11876
  # @return [String]
@@ -11184,6 +11881,7 @@ module Aws::MediaLive
11184
11881
  :channel_id,
11185
11882
  :multiplex_program_settings,
11186
11883
  :packet_identifiers_map,
11884
+ :pipeline_details,
11187
11885
  :program_name)
11188
11886
  SENSITIVE = []
11189
11887
  include Aws::Structure
@@ -11283,6 +11981,26 @@ module Aws::MediaLive
11283
11981
  include Aws::Structure
11284
11982
  end
11285
11983
 
11984
+ # The current source for one of the pipelines in the multiplex.
11985
+ #
11986
+ # @!attribute [rw] active_channel_pipeline
11987
+ # Identifies the channel pipeline that is currently active for the
11988
+ # pipeline (identified by PipelineId) in the multiplex.
11989
+ # @return [String]
11990
+ #
11991
+ # @!attribute [rw] pipeline_id
11992
+ # Identifies a specific pipeline in the multiplex.
11993
+ # @return [String]
11994
+ #
11995
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexProgramPipelineDetail AWS API Documentation
11996
+ #
11997
+ class MultiplexProgramPipelineDetail < Struct.new(
11998
+ :active_channel_pipeline,
11999
+ :pipeline_id)
12000
+ SENSITIVE = []
12001
+ include Aws::Structure
12002
+ end
12003
+
11286
12004
  # Transport stream service descriptor configuration for the Multiplex
11287
12005
  # program.
11288
12006
  #
@@ -11328,6 +12046,7 @@ module Aws::MediaLive
11328
12046
  # statmux_settings: {
11329
12047
  # maximum_bitrate: 1,
11330
12048
  # minimum_bitrate: 1,
12049
+ # priority: 1,
11331
12050
  # },
11332
12051
  # },
11333
12052
  # }
@@ -11439,6 +12158,7 @@ module Aws::MediaLive
11439
12158
  # {
11440
12159
  # maximum_bitrate: 1,
11441
12160
  # minimum_bitrate: 1,
12161
+ # priority: 1,
11442
12162
  # }
11443
12163
  #
11444
12164
  # @!attribute [rw] maximum_bitrate
@@ -11449,11 +12169,21 @@ module Aws::MediaLive
11449
12169
  # Minimum statmux bitrate.
11450
12170
  # @return [Integer]
11451
12171
  #
12172
+ # @!attribute [rw] priority
12173
+ # The purpose of the priority is to use a combination of
12174
+ # the\\nmultiplex rate control algorithm and the QVBR capability of
12175
+ # the\\nencoder to prioritize the video quality of some channels in
12176
+ # a\\nmultiplex over others. Channels that have a higher priority
12177
+ # will\\nget higher video quality at the expense of the video quality
12178
+ # of\\nother channels in the multiplex with lower priority.
12179
+ # @return [Integer]
12180
+ #
11452
12181
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexStatmuxVideoSettings AWS API Documentation
11453
12182
  #
11454
12183
  class MultiplexStatmuxVideoSettings < Struct.new(
11455
12184
  :maximum_bitrate,
11456
- :minimum_bitrate)
12185
+ :minimum_bitrate,
12186
+ :priority)
11457
12187
  SENSITIVE = []
11458
12188
  include Aws::Structure
11459
12189
  end
@@ -11520,6 +12250,7 @@ module Aws::MediaLive
11520
12250
  # statmux_settings: {
11521
12251
  # maximum_bitrate: 1,
11522
12252
  # minimum_bitrate: 1,
12253
+ # priority: 1,
11523
12254
  # },
11524
12255
  # }
11525
12256
  #
@@ -11759,6 +12490,8 @@ module Aws::MediaLive
11759
12490
  # transport_stream_id: 1,
11760
12491
  # video_pid: "__string",
11761
12492
  # },
12493
+ # raw_settings: {
12494
+ # },
11762
12495
  # },
11763
12496
  # extension: "__string",
11764
12497
  # name_modifier: "__string",
@@ -12252,6 +12985,8 @@ module Aws::MediaLive
12252
12985
  # transport_stream_id: 1,
12253
12986
  # video_pid: "__string",
12254
12987
  # },
12988
+ # raw_settings: {
12989
+ # },
12255
12990
  # },
12256
12991
  # extension: "__string",
12257
12992
  # name_modifier: "__string",
@@ -12710,6 +13445,8 @@ module Aws::MediaLive
12710
13445
  # transport_stream_id: 1,
12711
13446
  # video_pid: "__string",
12712
13447
  # },
13448
+ # raw_settings: {
13449
+ # },
12713
13450
  # },
12714
13451
  # extension: "__string",
12715
13452
  # name_modifier: "__string",
@@ -13092,6 +13829,14 @@ module Aws::MediaLive
13092
13829
  include Aws::Structure
13093
13830
  end
13094
13831
 
13832
+ # Raw Settings
13833
+ #
13834
+ # @api private
13835
+ #
13836
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RawSettings AWS API Documentation
13837
+ #
13838
+ class RawSettings < Aws::EmptyStructure; end
13839
+
13095
13840
  # Rec601 Settings
13096
13841
  #
13097
13842
  # @api private
@@ -14373,6 +15118,9 @@ module Aws::MediaLive
14373
15118
  # @!attribute [rw] arn
14374
15119
  # @return [String]
14375
15120
  #
15121
+ # @!attribute [rw] cdi_input_specification
15122
+ # @return [Types::CdiInputSpecification]
15123
+ #
14376
15124
  # @!attribute [rw] channel_class
14377
15125
  # A standard channel has two encoding pipelines and a single pipeline
14378
15126
  # channel only has one.
@@ -14423,6 +15171,7 @@ module Aws::MediaLive
14423
15171
  #
14424
15172
  class StartChannelResponse < Struct.new(
14425
15173
  :arn,
15174
+ :cdi_input_specification,
14426
15175
  :channel_class,
14427
15176
  :destinations,
14428
15177
  :egress_endpoints,
@@ -14715,6 +15464,9 @@ module Aws::MediaLive
14715
15464
  # @!attribute [rw] arn
14716
15465
  # @return [String]
14717
15466
  #
15467
+ # @!attribute [rw] cdi_input_specification
15468
+ # @return [Types::CdiInputSpecification]
15469
+ #
14718
15470
  # @!attribute [rw] channel_class
14719
15471
  # A standard channel has two encoding pipelines and a single pipeline
14720
15472
  # channel only has one.
@@ -14765,6 +15517,7 @@ module Aws::MediaLive
14765
15517
  #
14766
15518
  class StopChannelResponse < Struct.new(
14767
15519
  :arn,
15520
+ :cdi_input_specification,
14768
15521
  :channel_class,
14769
15522
  :destinations,
14770
15523
  :egress_endpoints,
@@ -15275,6 +16028,10 @@ module Aws::MediaLive
15275
16028
  include Aws::Structure
15276
16029
  end
15277
16030
 
16031
+ # @!attribute [rw] cdi_input_specification
16032
+ # Specification of CDI inputs for this channel
16033
+ # @return [Types::CdiInputSpecification]
16034
+ #
15278
16035
  # @!attribute [rw] destinations
15279
16036
  # A list of output destinations for this channel.
15280
16037
  # @return [Array<Types::OutputDestination>]
@@ -15287,8 +16044,7 @@ module Aws::MediaLive
15287
16044
  # @return [Array<Types::InputAttachment>]
15288
16045
  #
15289
16046
  # @!attribute [rw] input_specification
15290
- # Specification of input for this channel (max. bitrate, resolution,
15291
- # codec, etc.)
16047
+ # Specification of network and file inputs for this channel
15292
16048
  # @return [Types::InputSpecification]
15293
16049
  #
15294
16050
  # @!attribute [rw] log_level
@@ -15308,6 +16064,7 @@ module Aws::MediaLive
15308
16064
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannel AWS API Documentation
15309
16065
  #
15310
16066
  class UpdateChannel < Struct.new(
16067
+ :cdi_input_specification,
15311
16068
  :destinations,
15312
16069
  :encoder_settings,
15313
16070
  :input_attachments,
@@ -15402,6 +16159,9 @@ module Aws::MediaLive
15402
16159
  # data as a hash:
15403
16160
  #
15404
16161
  # {
16162
+ # cdi_input_specification: {
16163
+ # resolution: "SD", # accepts SD, HD, FHD, UHD
16164
+ # },
15405
16165
  # channel_id: "__string", # required
15406
16166
  # destinations: [
15407
16167
  # {
@@ -15486,6 +16246,11 @@ module Aws::MediaLive
15486
16246
  # },
15487
16247
  # pass_through_settings: {
15488
16248
  # },
16249
+ # wav_settings: {
16250
+ # bit_depth: 1.0,
16251
+ # coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
16252
+ # sample_rate: 1.0,
16253
+ # },
15489
16254
  # },
15490
16255
  # language_code: "__stringMin1Max35",
15491
16256
  # language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
@@ -15868,6 +16633,8 @@ module Aws::MediaLive
15868
16633
  # transport_stream_id: 1,
15869
16634
  # video_pid: "__string",
15870
16635
  # },
16636
+ # raw_settings: {
16637
+ # },
15871
16638
  # },
15872
16639
  # extension: "__string",
15873
16640
  # name_modifier: "__string",
@@ -16130,6 +16897,29 @@ module Aws::MediaLive
16130
16897
  # tier: "HIGH", # accepts HIGH, MAIN
16131
16898
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
16132
16899
  # },
16900
+ # mpeg_2_settings: {
16901
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
16902
+ # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
16903
+ # color_metadata: "IGNORE", # accepts IGNORE, INSERT
16904
+ # color_space: "AUTO", # accepts AUTO, PASSTHROUGH
16905
+ # display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
16906
+ # filter_settings: {
16907
+ # temporal_filter_settings: {
16908
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
16909
+ # 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
16910
+ # },
16911
+ # },
16912
+ # 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
16913
+ # framerate_denominator: 1, # required
16914
+ # framerate_numerator: 1, # required
16915
+ # gop_closed_cadence: 1,
16916
+ # gop_num_b_frames: 1,
16917
+ # gop_size: 1.0,
16918
+ # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
16919
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
16920
+ # subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
16921
+ # timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
16922
+ # },
16133
16923
  # },
16134
16924
  # height: 1,
16135
16925
  # name: "__string", # required
@@ -16175,6 +16965,9 @@ module Aws::MediaLive
16175
16965
  # language_code: "__string",
16176
16966
  # name: "__stringMin1", # required
16177
16967
  # selector_settings: {
16968
+ # ancillary_source_settings: {
16969
+ # source_ancillary_channel_number: 1,
16970
+ # },
16178
16971
  # arib_source_settings: {
16179
16972
  # },
16180
16973
  # dvb_sub_source_settings: {
@@ -16239,6 +17032,9 @@ module Aws::MediaLive
16239
17032
  # role_arn: "__string",
16240
17033
  # }
16241
17034
  #
17035
+ # @!attribute [rw] cdi_input_specification
17036
+ # @return [Types::CdiInputSpecification]
17037
+ #
16242
17038
  # @!attribute [rw] channel_id
16243
17039
  # @return [String]
16244
17040
  #
@@ -16268,6 +17064,7 @@ module Aws::MediaLive
16268
17064
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateChannelRequest AWS API Documentation
16269
17065
  #
16270
17066
  class UpdateChannelRequest < Struct.new(
17067
+ :cdi_input_specification,
16271
17068
  :channel_id,
16272
17069
  :destinations,
16273
17070
  :encoder_settings,
@@ -16660,6 +17457,7 @@ module Aws::MediaLive
16660
17457
  # statmux_settings: {
16661
17458
  # maximum_bitrate: 1,
16662
17459
  # minimum_bitrate: 1,
17460
+ # priority: 1,
16663
17461
  # },
16664
17462
  # },
16665
17463
  # },
@@ -16960,6 +17758,29 @@ module Aws::MediaLive
16960
17758
  # tier: "HIGH", # accepts HIGH, MAIN
16961
17759
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
16962
17760
  # },
17761
+ # mpeg_2_settings: {
17762
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
17763
+ # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
17764
+ # color_metadata: "IGNORE", # accepts IGNORE, INSERT
17765
+ # color_space: "AUTO", # accepts AUTO, PASSTHROUGH
17766
+ # display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
17767
+ # filter_settings: {
17768
+ # temporal_filter_settings: {
17769
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
17770
+ # 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
17771
+ # },
17772
+ # },
17773
+ # 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
17774
+ # framerate_denominator: 1, # required
17775
+ # framerate_numerator: 1, # required
17776
+ # gop_closed_cadence: 1,
17777
+ # gop_num_b_frames: 1,
17778
+ # gop_size: 1.0,
17779
+ # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
17780
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
17781
+ # subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
17782
+ # timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
17783
+ # },
16963
17784
  # }
16964
17785
  #
16965
17786
  # @!attribute [rw] frame_capture_settings
@@ -16974,12 +17795,17 @@ module Aws::MediaLive
16974
17795
  # H265 Settings
16975
17796
  # @return [Types::H265Settings]
16976
17797
  #
17798
+ # @!attribute [rw] mpeg_2_settings
17799
+ # Mpeg2 Settings
17800
+ # @return [Types::Mpeg2Settings]
17801
+ #
16977
17802
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoCodecSettings AWS API Documentation
16978
17803
  #
16979
17804
  class VideoCodecSettings < Struct.new(
16980
17805
  :frame_capture_settings,
16981
17806
  :h264_settings,
16982
- :h265_settings)
17807
+ :h265_settings,
17808
+ :mpeg_2_settings)
16983
17809
  SENSITIVE = []
16984
17810
  include Aws::Structure
16985
17811
  end
@@ -17097,6 +17923,29 @@ module Aws::MediaLive
17097
17923
  # tier: "HIGH", # accepts HIGH, MAIN
17098
17924
  # timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
17099
17925
  # },
17926
+ # mpeg_2_settings: {
17927
+ # adaptive_quantization: "AUTO", # accepts AUTO, HIGH, LOW, MEDIUM, OFF
17928
+ # afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
17929
+ # color_metadata: "IGNORE", # accepts IGNORE, INSERT
17930
+ # color_space: "AUTO", # accepts AUTO, PASSTHROUGH
17931
+ # display_aspect_ratio: "DISPLAYRATIO16X9", # accepts DISPLAYRATIO16X9, DISPLAYRATIO4X3
17932
+ # filter_settings: {
17933
+ # temporal_filter_settings: {
17934
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
17935
+ # 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
17936
+ # },
17937
+ # },
17938
+ # 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
17939
+ # framerate_denominator: 1, # required
17940
+ # framerate_numerator: 1, # required
17941
+ # gop_closed_cadence: 1,
17942
+ # gop_num_b_frames: 1,
17943
+ # gop_size: 1.0,
17944
+ # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
17945
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
17946
+ # subgop_length: "DYNAMIC", # accepts DYNAMIC, FIXED
17947
+ # timecode_insertion: "DISABLED", # accepts DISABLED, GOP_TIMECODE
17948
+ # },
17100
17949
  # },
17101
17950
  # height: 1,
17102
17951
  # name: "__string", # required
@@ -17125,14 +17974,17 @@ module Aws::MediaLive
17125
17974
  # @return [String]
17126
17975
  #
17127
17976
  # @!attribute [rw] respond_to_afd
17128
- # Indicates how to respond to the AFD values in the input stream.
17129
- # RESPOND causes input video to be clipped, depending on the AFD
17130
- # value, input display aspect ratio, and output display aspect ratio,
17131
- # and (except for FRAME\_CAPTURE codec) includes the values in the
17132
- # output. PASSTHROUGH (does not apply to FRAME\_CAPTURE codec) ignores
17133
- # the AFD values and includes the values in the output, so input video
17134
- # is not clipped. NONE ignores the AFD values and does not include the
17135
- # values through to the output, so input video is not clipped.
17977
+ # Indicates how MediaLive will respond to the AFD values that might be
17978
+ # in the input video. If you do not know what AFD signaling is, or if
17979
+ # your downstream system has not given you guidance, choose
17980
+ # PASSTHROUGH. RESPOND: MediaLive clips the input video using a
17981
+ # formula that uses the AFD values (configured in afdSignaling ), the
17982
+ # input display aspect ratio, and the output display aspect ratio.
17983
+ # MediaLive also includes the AFD values in the output, unless the
17984
+ # codec for this encode is FRAME\_CAPTURE. PASSTHROUGH: MediaLive
17985
+ # ignores the AFD values and does not clip the video. But MediaLive
17986
+ # does include the values in the output. NONE: MediaLive does not clip
17987
+ # the input video and does not include the AFD values in the output
17136
17988
  # @return [String]
17137
17989
  #
17138
17990
  # @!attribute [rw] scaling_behavior
@@ -17298,6 +18150,40 @@ module Aws::MediaLive
17298
18150
  include Aws::Structure
17299
18151
  end
17300
18152
 
18153
+ # Wav Settings
18154
+ #
18155
+ # @note When making an API call, you may pass WavSettings
18156
+ # data as a hash:
18157
+ #
18158
+ # {
18159
+ # bit_depth: 1.0,
18160
+ # coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
18161
+ # sample_rate: 1.0,
18162
+ # }
18163
+ #
18164
+ # @!attribute [rw] bit_depth
18165
+ # Bits per sample.
18166
+ # @return [Float]
18167
+ #
18168
+ # @!attribute [rw] coding_mode
18169
+ # The audio coding mode for the WAV audio. The mode determines the
18170
+ # number of channels in the audio.
18171
+ # @return [String]
18172
+ #
18173
+ # @!attribute [rw] sample_rate
18174
+ # Sample rate in Hz.
18175
+ # @return [Float]
18176
+ #
18177
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/WavSettings AWS API Documentation
18178
+ #
18179
+ class WavSettings < Struct.new(
18180
+ :bit_depth,
18181
+ :coding_mode,
18182
+ :sample_rate)
18183
+ SENSITIVE = []
18184
+ include Aws::Structure
18185
+ end
18186
+
17301
18187
  # Webvtt Destination Settings
17302
18188
  #
17303
18189
  # @api private