aws-sdk-medialive 1.138.0 → 1.140.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d654e386a66c61034c3c7ce0ffe39c0dbb87188ef8f8ac5a6bec305695a5c29
4
- data.tar.gz: fca0e0a3e7fd6fb881def1dcf1e7f5703bab81d3e00f58a19bacb3e0a277e487
3
+ metadata.gz: 394e0a67cf284af395368e3b5ee7ea5397a92facba2d25719a4f061b34f87a3e
4
+ data.tar.gz: 30a3308d7c858f8dc2645831afb6913e18009c58b449aabdad86df703bec01d8
5
5
  SHA512:
6
- metadata.gz: 2bcc95ae06873400161571475ef2e9c5802cedc222b99e433a70334ea5af8e33f22e844d9042ddf068d69d6ca6b70774b790093fac234671d31a8792b2deb6fb
7
- data.tar.gz: ae9530aca90ba0f58a23dd292dd92074ee98de6d664ae1606951b5c53666091b722571d9a11f1db74bed56bcbee5aec5d0e7871190ffb8c4f484831b995f6b63
6
+ metadata.gz: 68132d1da75907abb38b34e84c2558994600597c39a63af742f1230a9c3f0417292b07fff119a2ee383c30ee975d4b72c73194fe1ad4554551073c9c930fd948
7
+ data.tar.gz: 8c1e75ad0fce2103a9e08d8603459c291e3d435dd9773b7782a1b10a712c853639b27a98d3181574e6eaab1fe2062d4c1ca6c1593fc164a520837482d66e8a81
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.140.0 (2024-12-16)
5
+ ------------------
6
+
7
+ * Feature - AWS Elemental MediaLive adds three new features: MediaPackage v2 endpoint support for live stream delivery, KLV metadata passthrough in CMAF Ingest output groups, and Metadata Name Modifier in CMAF Ingest output groups for customizing metadata track names in output streams.
8
+
9
+ 1.139.0 (2024-12-09)
10
+ ------------------
11
+
12
+ * Feature - H265 outputs now support disabling the deblocking filter.
13
+
4
14
  1.138.0 (2024-11-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.138.0
1
+ 1.140.0
@@ -1037,6 +1037,8 @@ module Aws::MediaLive
1037
1037
  # resp.channel.destinations[0].id #=> String
1038
1038
  # resp.channel.destinations[0].media_package_settings #=> Array
1039
1039
  # resp.channel.destinations[0].media_package_settings[0].channel_id #=> String
1040
+ # resp.channel.destinations[0].media_package_settings[0].channel_group #=> String
1041
+ # resp.channel.destinations[0].media_package_settings[0].channel_name #=> String
1040
1042
  # resp.channel.destinations[0].multiplex_settings.multiplex_id #=> String
1041
1043
  # resp.channel.destinations[0].multiplex_settings.program_name #=> String
1042
1044
  # resp.channel.destinations[0].settings #=> Array
@@ -1342,6 +1344,10 @@ module Aws::MediaLive
1342
1344
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length #=> Integer
1343
1345
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length_units #=> String, one of "MILLISECONDS", "SECONDS"
1344
1346
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.send_delay_ms #=> Integer
1347
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
1348
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
1349
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
1350
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
1345
1351
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
1346
1352
  # resp.channel.encoder_settings.output_groups[0].outputs #=> Array
1347
1353
  # resp.channel.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -1673,6 +1679,7 @@ module Aws::MediaLive
1673
1679
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
1674
1680
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
1675
1681
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
1682
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.deblocking #=> String, one of "DISABLED", "ENABLED"
1676
1683
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
1677
1684
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
1678
1685
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
@@ -2349,6 +2356,8 @@ module Aws::MediaLive
2349
2356
  # resp.destinations[0].id #=> String
2350
2357
  # resp.destinations[0].media_package_settings #=> Array
2351
2358
  # resp.destinations[0].media_package_settings[0].channel_id #=> String
2359
+ # resp.destinations[0].media_package_settings[0].channel_group #=> String
2360
+ # resp.destinations[0].media_package_settings[0].channel_name #=> String
2352
2361
  # resp.destinations[0].multiplex_settings.multiplex_id #=> String
2353
2362
  # resp.destinations[0].multiplex_settings.program_name #=> String
2354
2363
  # resp.destinations[0].settings #=> Array
@@ -2654,6 +2663,10 @@ module Aws::MediaLive
2654
2663
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length #=> Integer
2655
2664
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length_units #=> String, one of "MILLISECONDS", "SECONDS"
2656
2665
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.send_delay_ms #=> Integer
2666
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
2667
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
2668
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
2669
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
2657
2670
  # resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
2658
2671
  # resp.encoder_settings.output_groups[0].outputs #=> Array
2659
2672
  # resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -2985,6 +2998,7 @@ module Aws::MediaLive
2985
2998
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
2986
2999
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
2987
3000
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
3001
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.deblocking #=> String, one of "DISABLED", "ENABLED"
2988
3002
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
2989
3003
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
2990
3004
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
@@ -3478,6 +3492,8 @@ module Aws::MediaLive
3478
3492
  # resp.destinations[0].id #=> String
3479
3493
  # resp.destinations[0].media_package_settings #=> Array
3480
3494
  # resp.destinations[0].media_package_settings[0].channel_id #=> String
3495
+ # resp.destinations[0].media_package_settings[0].channel_group #=> String
3496
+ # resp.destinations[0].media_package_settings[0].channel_name #=> String
3481
3497
  # resp.destinations[0].multiplex_settings.multiplex_id #=> String
3482
3498
  # resp.destinations[0].multiplex_settings.program_name #=> String
3483
3499
  # resp.destinations[0].settings #=> Array
@@ -3783,6 +3799,10 @@ module Aws::MediaLive
3783
3799
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length #=> Integer
3784
3800
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length_units #=> String, one of "MILLISECONDS", "SECONDS"
3785
3801
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.send_delay_ms #=> Integer
3802
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
3803
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
3804
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
3805
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
3786
3806
  # resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
3787
3807
  # resp.encoder_settings.output_groups[0].outputs #=> Array
3788
3808
  # resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -4114,6 +4134,7 @@ module Aws::MediaLive
4114
4134
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
4115
4135
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
4116
4136
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
4137
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.deblocking #=> String, one of "DISABLED", "ENABLED"
4117
4138
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
4118
4139
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
4119
4140
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
@@ -4978,6 +4999,8 @@ module Aws::MediaLive
4978
4999
  # resp.channels[0].destinations[0].id #=> String
4979
5000
  # resp.channels[0].destinations[0].media_package_settings #=> Array
4980
5001
  # resp.channels[0].destinations[0].media_package_settings[0].channel_id #=> String
5002
+ # resp.channels[0].destinations[0].media_package_settings[0].channel_group #=> String
5003
+ # resp.channels[0].destinations[0].media_package_settings[0].channel_name #=> String
4981
5004
  # resp.channels[0].destinations[0].multiplex_settings.multiplex_id #=> String
4982
5005
  # resp.channels[0].destinations[0].multiplex_settings.program_name #=> String
4983
5006
  # resp.channels[0].destinations[0].settings #=> Array
@@ -5786,6 +5809,8 @@ module Aws::MediaLive
5786
5809
  # resp.destinations[0].id #=> String
5787
5810
  # resp.destinations[0].media_package_settings #=> Array
5788
5811
  # resp.destinations[0].media_package_settings[0].channel_id #=> String
5812
+ # resp.destinations[0].media_package_settings[0].channel_group #=> String
5813
+ # resp.destinations[0].media_package_settings[0].channel_name #=> String
5789
5814
  # resp.destinations[0].multiplex_settings.multiplex_id #=> String
5790
5815
  # resp.destinations[0].multiplex_settings.program_name #=> String
5791
5816
  # resp.destinations[0].settings #=> Array
@@ -6091,6 +6116,10 @@ module Aws::MediaLive
6091
6116
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length #=> Integer
6092
6117
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length_units #=> String, one of "MILLISECONDS", "SECONDS"
6093
6118
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.send_delay_ms #=> Integer
6119
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
6120
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
6121
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
6122
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
6094
6123
  # resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
6095
6124
  # resp.encoder_settings.output_groups[0].outputs #=> Array
6096
6125
  # resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -6422,6 +6451,7 @@ module Aws::MediaLive
6422
6451
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
6423
6452
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
6424
6453
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
6454
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.deblocking #=> String, one of "DISABLED", "ENABLED"
6425
6455
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
6426
6456
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
6427
6457
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
@@ -6722,6 +6752,8 @@ module Aws::MediaLive
6722
6752
  # resp.destinations[0].id #=> String
6723
6753
  # resp.destinations[0].media_package_settings #=> Array
6724
6754
  # resp.destinations[0].media_package_settings[0].channel_id #=> String
6755
+ # resp.destinations[0].media_package_settings[0].channel_group #=> String
6756
+ # resp.destinations[0].media_package_settings[0].channel_name #=> String
6725
6757
  # resp.destinations[0].multiplex_settings.multiplex_id #=> String
6726
6758
  # resp.destinations[0].multiplex_settings.program_name #=> String
6727
6759
  # resp.destinations[0].settings #=> Array
@@ -7027,6 +7059,10 @@ module Aws::MediaLive
7027
7059
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length #=> Integer
7028
7060
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length_units #=> String, one of "MILLISECONDS", "SECONDS"
7029
7061
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.send_delay_ms #=> Integer
7062
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
7063
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
7064
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
7065
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
7030
7066
  # resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
7031
7067
  # resp.encoder_settings.output_groups[0].outputs #=> Array
7032
7068
  # resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -7358,6 +7394,7 @@ module Aws::MediaLive
7358
7394
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
7359
7395
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
7360
7396
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
7397
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.deblocking #=> String, one of "DISABLED", "ENABLED"
7361
7398
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
7362
7399
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
7363
7400
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
@@ -7685,6 +7722,8 @@ module Aws::MediaLive
7685
7722
  # resp.channel.destinations[0].id #=> String
7686
7723
  # resp.channel.destinations[0].media_package_settings #=> Array
7687
7724
  # resp.channel.destinations[0].media_package_settings[0].channel_id #=> String
7725
+ # resp.channel.destinations[0].media_package_settings[0].channel_group #=> String
7726
+ # resp.channel.destinations[0].media_package_settings[0].channel_name #=> String
7688
7727
  # resp.channel.destinations[0].multiplex_settings.multiplex_id #=> String
7689
7728
  # resp.channel.destinations[0].multiplex_settings.program_name #=> String
7690
7729
  # resp.channel.destinations[0].settings #=> Array
@@ -7990,6 +8029,10 @@ module Aws::MediaLive
7990
8029
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length #=> Integer
7991
8030
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length_units #=> String, one of "MILLISECONDS", "SECONDS"
7992
8031
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.send_delay_ms #=> Integer
8032
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
8033
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
8034
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
8035
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
7993
8036
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
7994
8037
  # resp.channel.encoder_settings.output_groups[0].outputs #=> Array
7995
8038
  # resp.channel.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -8321,6 +8364,7 @@ module Aws::MediaLive
8321
8364
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
8322
8365
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
8323
8366
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
8367
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.deblocking #=> String, one of "DISABLED", "ENABLED"
8324
8368
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
8325
8369
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
8326
8370
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
@@ -8501,6 +8545,8 @@ module Aws::MediaLive
8501
8545
  # media_package_settings: [
8502
8546
  # {
8503
8547
  # channel_id: "__stringMin1",
8548
+ # channel_group: "__stringMin1",
8549
+ # channel_name: "__stringMin1",
8504
8550
  # },
8505
8551
  # ],
8506
8552
  # multiplex_settings: {
@@ -8535,6 +8581,8 @@ module Aws::MediaLive
8535
8581
  # resp.channel.destinations[0].id #=> String
8536
8582
  # resp.channel.destinations[0].media_package_settings #=> Array
8537
8583
  # resp.channel.destinations[0].media_package_settings[0].channel_id #=> String
8584
+ # resp.channel.destinations[0].media_package_settings[0].channel_group #=> String
8585
+ # resp.channel.destinations[0].media_package_settings[0].channel_name #=> String
8538
8586
  # resp.channel.destinations[0].multiplex_settings.multiplex_id #=> String
8539
8587
  # resp.channel.destinations[0].multiplex_settings.program_name #=> String
8540
8588
  # resp.channel.destinations[0].settings #=> Array
@@ -8840,6 +8888,10 @@ module Aws::MediaLive
8840
8888
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length #=> Integer
8841
8889
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length_units #=> String, one of "MILLISECONDS", "SECONDS"
8842
8890
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.send_delay_ms #=> Integer
8891
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
8892
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
8893
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
8894
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
8843
8895
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
8844
8896
  # resp.channel.encoder_settings.output_groups[0].outputs #=> Array
8845
8897
  # resp.channel.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -9171,6 +9223,7 @@ module Aws::MediaLive
9171
9223
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
9172
9224
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
9173
9225
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
9226
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.deblocking #=> String, one of "DISABLED", "ENABLED"
9174
9227
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
9175
9228
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
9176
9229
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
@@ -9929,6 +9982,8 @@ module Aws::MediaLive
9929
9982
  # resp.destinations[0].id #=> String
9930
9983
  # resp.destinations[0].media_package_settings #=> Array
9931
9984
  # resp.destinations[0].media_package_settings[0].channel_id #=> String
9985
+ # resp.destinations[0].media_package_settings[0].channel_group #=> String
9986
+ # resp.destinations[0].media_package_settings[0].channel_name #=> String
9932
9987
  # resp.destinations[0].multiplex_settings.multiplex_id #=> String
9933
9988
  # resp.destinations[0].multiplex_settings.program_name #=> String
9934
9989
  # resp.destinations[0].settings #=> Array
@@ -10234,6 +10289,10 @@ module Aws::MediaLive
10234
10289
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length #=> Integer
10235
10290
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.segment_length_units #=> String, one of "MILLISECONDS", "SECONDS"
10236
10291
  # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.send_delay_ms #=> Integer
10292
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_behavior #=> String, one of "NO_PASSTHROUGH", "PASSTHROUGH"
10293
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.klv_name_modifier #=> String
10294
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.nielsen_id_3_name_modifier #=> String
10295
+ # resp.encoder_settings.output_groups[0].output_group_settings.cmaf_ingest_group_settings.scte_35_name_modifier #=> String
10237
10296
  # resp.encoder_settings.output_groups[0].output_group_settings.srt_group_settings.input_loss_action #=> String, one of "DROP_PROGRAM", "DROP_TS", "EMIT_PROGRAM"
10238
10297
  # resp.encoder_settings.output_groups[0].outputs #=> Array
10239
10298
  # resp.encoder_settings.output_groups[0].outputs[0].audio_description_names #=> Array
@@ -10565,6 +10624,7 @@ module Aws::MediaLive
10565
10624
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tile_width #=> Integer
10566
10625
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.treeblock_size #=> String, one of "AUTO", "TREE_SIZE_32X32"
10567
10626
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.min_qp #=> Integer
10627
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.deblocking #=> String, one of "DISABLED", "ENABLED"
10568
10628
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "LOW", "MEDIUM", "OFF"
10569
10629
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
10570
10630
  # resp.encoder_settings.video_descriptions[0].codec_settings.mpeg_2_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
@@ -13579,7 +13639,7 @@ module Aws::MediaLive
13579
13639
  tracer: tracer
13580
13640
  )
13581
13641
  context[:gem_name] = 'aws-sdk-medialive'
13582
- context[:gem_version] = '1.138.0'
13642
+ context[:gem_version] = '1.140.0'
13583
13643
  Seahorse::Client::Request.new(handlers, context)
13584
13644
  end
13585
13645
 
@@ -153,6 +153,7 @@ module Aws::MediaLive
153
153
  CmafIngestGroupSettings = Shapes::StructureShape.new(name: 'CmafIngestGroupSettings')
154
154
  CmafIngestOutputSettings = Shapes::StructureShape.new(name: 'CmafIngestOutputSettings')
155
155
  CmafIngestSegmentLengthUnits = Shapes::StringShape.new(name: 'CmafIngestSegmentLengthUnits')
156
+ CmafKLVBehavior = Shapes::StringShape.new(name: 'CmafKLVBehavior')
156
157
  CmafNielsenId3Behavior = Shapes::StringShape.new(name: 'CmafNielsenId3Behavior')
157
158
  ColorCorrection = Shapes::StructureShape.new(name: 'ColorCorrection')
158
159
  ColorCorrectionSettings = Shapes::StructureShape.new(name: 'ColorCorrectionSettings')
@@ -416,6 +417,7 @@ module Aws::MediaLive
416
417
  H265AlternativeTransferFunction = Shapes::StringShape.new(name: 'H265AlternativeTransferFunction')
417
418
  H265ColorMetadata = Shapes::StringShape.new(name: 'H265ColorMetadata')
418
419
  H265ColorSpaceSettings = Shapes::StructureShape.new(name: 'H265ColorSpaceSettings')
420
+ H265Deblocking = Shapes::StringShape.new(name: 'H265Deblocking')
419
421
  H265FilterSettings = Shapes::StructureShape.new(name: 'H265FilterSettings')
420
422
  H265FlickerAq = Shapes::StringShape.new(name: 'H265FlickerAq')
421
423
  H265GopSizeUnits = Shapes::StringShape.new(name: 'H265GopSizeUnits')
@@ -1156,6 +1158,7 @@ module Aws::MediaLive
1156
1158
  __longMin0Max8589934591 = Shapes::IntegerShape.new(name: '__longMin0Max8589934591')
1157
1159
  __longMin0Max86400000 = Shapes::IntegerShape.new(name: '__longMin0Max86400000')
1158
1160
  __string = Shapes::StringShape.new(name: '__string')
1161
+ __stringMax100 = Shapes::StringShape.new(name: '__stringMax100')
1159
1162
  __stringMax1000 = Shapes::StringShape.new(name: '__stringMax1000')
1160
1163
  __stringMax2048 = Shapes::StringShape.new(name: '__stringMax2048')
1161
1164
  __stringMax255 = Shapes::StringShape.new(name: '__stringMax255')
@@ -1656,6 +1659,10 @@ module Aws::MediaLive
1656
1659
  CmafIngestGroupSettings.add_member(:segment_length, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "segmentLength"))
1657
1660
  CmafIngestGroupSettings.add_member(:segment_length_units, Shapes::ShapeRef.new(shape: CmafIngestSegmentLengthUnits, location_name: "segmentLengthUnits"))
1658
1661
  CmafIngestGroupSettings.add_member(:send_delay_ms, Shapes::ShapeRef.new(shape: __integerMin0Max2000, location_name: "sendDelayMs"))
1662
+ CmafIngestGroupSettings.add_member(:klv_behavior, Shapes::ShapeRef.new(shape: CmafKLVBehavior, location_name: "klvBehavior"))
1663
+ CmafIngestGroupSettings.add_member(:klv_name_modifier, Shapes::ShapeRef.new(shape: __stringMax100, location_name: "klvNameModifier"))
1664
+ CmafIngestGroupSettings.add_member(:nielsen_id_3_name_modifier, Shapes::ShapeRef.new(shape: __stringMax100, location_name: "nielsenId3NameModifier"))
1665
+ CmafIngestGroupSettings.add_member(:scte_35_name_modifier, Shapes::ShapeRef.new(shape: __stringMax100, location_name: "scte35NameModifier"))
1659
1666
  CmafIngestGroupSettings.struct_class = Types::CmafIngestGroupSettings
1660
1667
 
1661
1668
  CmafIngestOutputSettings.add_member(:name_modifier, Shapes::ShapeRef.new(shape: __string, location_name: "nameModifier"))
@@ -3079,6 +3086,7 @@ module Aws::MediaLive
3079
3086
  H265Settings.add_member(:tile_width, Shapes::ShapeRef.new(shape: __integerMin256Max3840, location_name: "tileWidth"))
3080
3087
  H265Settings.add_member(:treeblock_size, Shapes::ShapeRef.new(shape: H265TreeblockSize, location_name: "treeblockSize"))
3081
3088
  H265Settings.add_member(:min_qp, Shapes::ShapeRef.new(shape: __integerMin1Max51, location_name: "minQp"))
3089
+ H265Settings.add_member(:deblocking, Shapes::ShapeRef.new(shape: H265Deblocking, location_name: "deblocking"))
3082
3090
  H265Settings.struct_class = Types::H265Settings
3083
3091
 
3084
3092
  Hdr10Settings.add_member(:max_cll, Shapes::ShapeRef.new(shape: __integerMin0Max32768, location_name: "maxCll"))
@@ -3832,6 +3840,8 @@ module Aws::MediaLive
3832
3840
  MediaPackageGroupSettings.struct_class = Types::MediaPackageGroupSettings
3833
3841
 
3834
3842
  MediaPackageOutputDestinationSettings.add_member(:channel_id, Shapes::ShapeRef.new(shape: __stringMin1, location_name: "channelId"))
3843
+ MediaPackageOutputDestinationSettings.add_member(:channel_group, Shapes::ShapeRef.new(shape: __stringMin1, location_name: "channelGroup"))
3844
+ MediaPackageOutputDestinationSettings.add_member(:channel_name, Shapes::ShapeRef.new(shape: __stringMin1, location_name: "channelName"))
3835
3845
  MediaPackageOutputDestinationSettings.struct_class = Types::MediaPackageOutputDestinationSettings
3836
3846
 
3837
3847
  MediaPackageOutputSettings.struct_class = Types::MediaPackageOutputSettings
@@ -5189,7 +5199,7 @@ module Aws::MediaLive
5189
5199
  UpdateInputResultModel.struct_class = Types::UpdateInputResultModel
5190
5200
 
5191
5201
  UpdateInputSecurityGroupRequest.add_member(:input_security_group_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputSecurityGroupId"))
5192
- UpdateInputSecurityGroupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
5202
+ UpdateInputSecurityGroupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, deprecated: true, location_name: "tags", metadata: {"deprecatedMessage"=>"This API is deprecated. You must use UpdateTagsForResource instead.", "deprecatedSince"=>"2024-11-20"}))
5193
5203
  UpdateInputSecurityGroupRequest.add_member(:whitelist_rules, Shapes::ShapeRef.new(shape: __listOfInputWhitelistRuleCidr, location_name: "whitelistRules"))
5194
5204
  UpdateInputSecurityGroupRequest.struct_class = Types::UpdateInputSecurityGroupRequest
5195
5205
 
@@ -4727,8 +4727,10 @@ module Aws::MediaLive
4727
4727
  # @return [String]
4728
4728
  #
4729
4729
  # @!attribute [rw] timed_metadata_behavior
4730
- # When set to passthrough, timed metadata is passed through from input
4731
- # to output.
4730
+ # Set to PASSTHROUGH to enable ID3 metadata insertion. To include
4731
+ # metadata, you configure other parameters in the output group or
4732
+ # individual outputs, or you add an ID3 action to the channel
4733
+ # schedule.
4732
4734
  # @return [String]
4733
4735
  #
4734
4736
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Fmp4HlsSettings AWS API Documentation
@@ -5638,6 +5640,13 @@ module Aws::MediaLive
5638
5640
  # appropriate value.
5639
5641
  # @return [Integer]
5640
5642
  #
5643
+ # @!attribute [rw] deblocking
5644
+ # Enable or disable the deblocking filter for this codec. The filter
5645
+ # reduces blocking artifacts at block boundaries, which improves
5646
+ # overall video quality. If the filter is disabled, visible block
5647
+ # edges might appear in the output, especially at lower bitrates.
5648
+ # @return [String]
5649
+ #
5641
5650
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/H265Settings AWS API Documentation
5642
5651
  #
5643
5652
  class H265Settings < Struct.new(
@@ -5677,7 +5686,8 @@ module Aws::MediaLive
5677
5686
  :tile_padding,
5678
5687
  :tile_width,
5679
5688
  :treeblock_size,
5680
- :min_qp)
5689
+ :min_qp,
5690
+ :deblocking)
5681
5691
  SENSITIVE = []
5682
5692
  include Aws::Structure
5683
5693
  end
@@ -6167,18 +6177,20 @@ module Aws::MediaLive
6167
6177
  include Aws::Structure
6168
6178
  end
6169
6179
 
6170
- # Settings for the action to insert a user-defined ID3 tag in each HLS
6171
- # segment
6180
+ # Settings for the action to insert ID3 metadata in every segment, in
6181
+ # HLS output groups.
6172
6182
  #
6173
6183
  # @!attribute [rw] tag
6174
- # ID3 tag to insert into each segment. Supports special keyword
6175
- # identifiers to substitute in segment-related values.\\nSupported
6176
- # keyword identifiers:
6177
- # https://docs.aws.amazon.com/medialive/latest/ug/variable-data-identifiers.html
6184
+ # Complete this parameter if you want to specify only the metadata,
6185
+ # not the entire frame. MediaLive will insert the metadata in a TXXX
6186
+ # frame. Enter the value as plain text. You can include standard
6187
+ # MediaLive variable data such as the current segment number.
6178
6188
  # @return [String]
6179
6189
  #
6180
6190
  # @!attribute [rw] id_3
6181
- # Base64 string formatted according to the ID3 specification:
6191
+ # Complete this parameter if you want to specify the entire ID3
6192
+ # metadata. Enter a base64 string that contains one or more fully
6193
+ # formed ID3 tags, according to the ID3 specification:
6182
6194
  # http://id3.org/id3v2.4.0-structure
6183
6195
  # @return [String]
6184
6196
  #
@@ -6353,11 +6365,12 @@ module Aws::MediaLive
6353
6365
  include Aws::Structure
6354
6366
  end
6355
6367
 
6356
- # Settings for the action to emit HLS metadata
6368
+ # Settings for the action to insert ID3 metadata (as a one-time action)
6369
+ # in HLS output groups.
6357
6370
  #
6358
6371
  # @!attribute [rw] id_3
6359
- # Base64 string formatted according to the ID3 specification:
6360
- # http://id3.org/id3v2.4.0-structure
6372
+ # Enter a base64 string that contains one or more fully formed ID3
6373
+ # tags.See the ID3 specification: http://id3.org/id3v2.4.0-structure
6361
6374
  # @return [String]
6362
6375
  #
6363
6376
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsTimedMetadataScheduleActionSettings AWS API Documentation
@@ -8684,8 +8697,10 @@ module Aws::MediaLive
8684
8697
  # @return [String]
8685
8698
  #
8686
8699
  # @!attribute [rw] timed_metadata_behavior
8687
- # When set to passthrough, timed metadata is passed through from input
8688
- # to output.
8700
+ # Set to PASSTHROUGH to enable ID3 metadata insertion. To include
8701
+ # metadata, you configure other parameters in the output group or
8702
+ # individual outputs, or you add an ID3 action to the channel
8703
+ # schedule.
8689
8704
  # @return [String]
8690
8705
  #
8691
8706
  # @!attribute [rw] timed_metadata_pid
@@ -8867,10 +8882,24 @@ module Aws::MediaLive
8867
8882
  # channel and MediaLive channel must be in the same region.
8868
8883
  # @return [String]
8869
8884
  #
8885
+ # @!attribute [rw] channel_group
8886
+ # Name of the channel group in MediaPackageV2. Only use if you are
8887
+ # sending CMAF Ingest output to a CMAF ingest endpoint on a
8888
+ # MediaPackage channel that uses MediaPackage v2.
8889
+ # @return [String]
8890
+ #
8891
+ # @!attribute [rw] channel_name
8892
+ # Name of the channel in MediaPackageV2. Only use if you are sending
8893
+ # CMAF Ingest output to a CMAF ingest endpoint on a MediaPackage
8894
+ # channel that uses MediaPackage v2.
8895
+ # @return [String]
8896
+ #
8870
8897
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MediaPackageOutputDestinationSettings AWS API Documentation
8871
8898
  #
8872
8899
  class MediaPackageOutputDestinationSettings < Struct.new(
8873
- :channel_id)
8900
+ :channel_id,
8901
+ :channel_group,
8902
+ :channel_name)
8874
8903
  SENSITIVE = []
8875
8904
  include Aws::Structure
8876
8905
  end
@@ -10922,11 +10951,11 @@ module Aws::MediaLive
10922
10951
  # Holds the settings for a single schedule action.
10923
10952
  #
10924
10953
  # @!attribute [rw] hls_id_3_segment_tagging_settings
10925
- # Action to insert HLS ID3 segment tagging
10954
+ # Action to insert ID3 metadata in every segment, in HLS output groups
10926
10955
  # @return [Types::HlsId3SegmentTaggingScheduleActionSettings]
10927
10956
  #
10928
10957
  # @!attribute [rw] hls_timed_metadata_settings
10929
- # Action to insert HLS metadata
10958
+ # Action to insert ID3 metadata once, in HLS output groups
10930
10959
  # @return [Types::HlsTimedMetadataScheduleActionSettings]
10931
10960
  #
10932
10961
  # @!attribute [rw] input_prepare_settings
@@ -13767,6 +13796,39 @@ module Aws::MediaLive
13767
13796
  # Number of milliseconds to delay the output from the second pipeline.
13768
13797
  # @return [Integer]
13769
13798
  #
13799
+ # @!attribute [rw] klv_behavior
13800
+ # If set to passthrough, passes any KLV data from the input source to
13801
+ # this output.
13802
+ # @return [String]
13803
+ #
13804
+ # @!attribute [rw] klv_name_modifier
13805
+ # Change the modifier that MediaLive automatically adds to the
13806
+ # Streams() name that identifies a KLV track. The default is "klv",
13807
+ # which means the default name will be Streams(klv.cmfm). Any string
13808
+ # you enter here will replace the "klv" string.\\nThe modifier can
13809
+ # only contain: numbers, letters, plus (+), minus (-), underscore (\_)
13810
+ # and period (.) and has a maximum length of 100 characters.
13811
+ # @return [String]
13812
+ #
13813
+ # @!attribute [rw] nielsen_id_3_name_modifier
13814
+ # Change the modifier that MediaLive automatically adds to the
13815
+ # Streams() name that identifies a Nielsen ID3 track. The default is
13816
+ # "nid3", which means the default name will be Streams(nid3.cmfm).
13817
+ # Any string you enter here will replace the "nid3" string.\\nThe
13818
+ # modifier can only contain: numbers, letters, plus (+), minus (-),
13819
+ # underscore (\_) and period (.) and has a maximum length of 100
13820
+ # characters.
13821
+ # @return [String]
13822
+ #
13823
+ # @!attribute [rw] scte_35_name_modifier
13824
+ # Change the modifier that MediaLive automatically adds to the
13825
+ # Streams() name for a SCTE 35 track. The default is "scte", which
13826
+ # means the default name will be Streams(scte.cmfm). Any string you
13827
+ # enter here will replace the "scte" string.\\nThe modifier can only
13828
+ # contain: numbers, letters, plus (+), minus (-), underscore (\_) and
13829
+ # period (.) and has a maximum length of 100 characters.
13830
+ # @return [String]
13831
+ #
13770
13832
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CmafIngestGroupSettings AWS API Documentation
13771
13833
  #
13772
13834
  class CmafIngestGroupSettings < Struct.new(
@@ -13775,7 +13837,11 @@ module Aws::MediaLive
13775
13837
  :scte_35_type,
13776
13838
  :segment_length,
13777
13839
  :segment_length_units,
13778
- :send_delay_ms)
13840
+ :send_delay_ms,
13841
+ :klv_behavior,
13842
+ :klv_name_modifier,
13843
+ :nielsen_id_3_name_modifier,
13844
+ :scte_35_name_modifier)
13779
13845
  SENSITIVE = []
13780
13846
  include Aws::Structure
13781
13847
  end
@@ -55,7 +55,7 @@ module Aws::MediaLive
55
55
  autoload :EndpointProvider, 'aws-sdk-medialive/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-medialive/endpoints'
57
57
 
58
- GEM_VERSION = '1.138.0'
58
+ GEM_VERSION = '1.140.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -318,7 +318,9 @@ module Aws
318
318
  id: ::String?,
319
319
  media_package_settings: Array[
320
320
  {
321
- channel_id: ::String?
321
+ channel_id: ::String?,
322
+ channel_group: ::String?,
323
+ channel_name: ::String?
322
324
  },
323
325
  ]?,
324
326
  multiplex_settings: {
@@ -804,7 +806,11 @@ module Aws
804
806
  scte_35_type: ("NONE" | "SCTE_35_WITHOUT_SEGMENTATION")?,
805
807
  segment_length: ::Integer?,
806
808
  segment_length_units: ("MILLISECONDS" | "SECONDS")?,
807
- send_delay_ms: ::Integer?
809
+ send_delay_ms: ::Integer?,
810
+ klv_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
811
+ klv_name_modifier: ::String?,
812
+ nielsen_id_3_name_modifier: ::String?,
813
+ scte_35_name_modifier: ::String?
808
814
  }?,
809
815
  srt_group_settings: {
810
816
  input_loss_action: ("DROP_PROGRAM" | "DROP_TS" | "EMIT_PROGRAM")?
@@ -1271,7 +1277,8 @@ module Aws
1271
1277
  tile_padding: ("NONE" | "PADDED")?,
1272
1278
  tile_width: ::Integer?,
1273
1279
  treeblock_size: ("AUTO" | "TREE_SIZE_32X32")?,
1274
- min_qp: ::Integer?
1280
+ min_qp: ::Integer?,
1281
+ deblocking: ("DISABLED" | "ENABLED")?
1275
1282
  }?,
1276
1283
  mpeg_2_settings: {
1277
1284
  adaptive_quantization: ("AUTO" | "HIGH" | "LOW" | "MEDIUM" | "OFF")?,
@@ -2361,7 +2368,9 @@ module Aws
2361
2368
  id: ::String?,
2362
2369
  media_package_settings: Array[
2363
2370
  {
2364
- channel_id: ::String?
2371
+ channel_id: ::String?,
2372
+ channel_group: ::String?,
2373
+ channel_name: ::String?
2365
2374
  },
2366
2375
  ]?,
2367
2376
  multiplex_settings: {
@@ -2847,7 +2856,11 @@ module Aws
2847
2856
  scte_35_type: ("NONE" | "SCTE_35_WITHOUT_SEGMENTATION")?,
2848
2857
  segment_length: ::Integer?,
2849
2858
  segment_length_units: ("MILLISECONDS" | "SECONDS")?,
2850
- send_delay_ms: ::Integer?
2859
+ send_delay_ms: ::Integer?,
2860
+ klv_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")?,
2861
+ klv_name_modifier: ::String?,
2862
+ nielsen_id_3_name_modifier: ::String?,
2863
+ scte_35_name_modifier: ::String?
2851
2864
  }?,
2852
2865
  srt_group_settings: {
2853
2866
  input_loss_action: ("DROP_PROGRAM" | "DROP_TS" | "EMIT_PROGRAM")?
@@ -3314,7 +3327,8 @@ module Aws
3314
3327
  tile_padding: ("NONE" | "PADDED")?,
3315
3328
  tile_width: ::Integer?,
3316
3329
  treeblock_size: ("AUTO" | "TREE_SIZE_32X32")?,
3317
- min_qp: ::Integer?
3330
+ min_qp: ::Integer?,
3331
+ deblocking: ("DISABLED" | "ENABLED")?
3318
3332
  }?,
3319
3333
  mpeg_2_settings: {
3320
3334
  adaptive_quantization: ("AUTO" | "HIGH" | "LOW" | "MEDIUM" | "OFF")?,
@@ -3566,7 +3580,9 @@ module Aws
3566
3580
  id: ::String?,
3567
3581
  media_package_settings: Array[
3568
3582
  {
3569
- channel_id: ::String?
3583
+ channel_id: ::String?,
3584
+ channel_group: ::String?,
3585
+ channel_name: ::String?
3570
3586
  },
3571
3587
  ]?,
3572
3588
  multiplex_settings: {
data/sig/types.rbs CHANGED
@@ -1454,6 +1454,7 @@ module Aws::MediaLive
1454
1454
  attr_accessor tile_width: ::Integer
1455
1455
  attr_accessor treeblock_size: ("AUTO" | "TREE_SIZE_32X32")
1456
1456
  attr_accessor min_qp: ::Integer
1457
+ attr_accessor deblocking: ("DISABLED" | "ENABLED")
1457
1458
  SENSITIVE: []
1458
1459
  end
1459
1460
 
@@ -2225,6 +2226,8 @@ module Aws::MediaLive
2225
2226
 
2226
2227
  class MediaPackageOutputDestinationSettings
2227
2228
  attr_accessor channel_id: ::String
2229
+ attr_accessor channel_group: ::String
2230
+ attr_accessor channel_name: ::String
2228
2231
  SENSITIVE: []
2229
2232
  end
2230
2233
 
@@ -3559,6 +3562,10 @@ module Aws::MediaLive
3559
3562
  attr_accessor segment_length: ::Integer
3560
3563
  attr_accessor segment_length_units: ("MILLISECONDS" | "SECONDS")
3561
3564
  attr_accessor send_delay_ms: ::Integer
3565
+ attr_accessor klv_behavior: ("NO_PASSTHROUGH" | "PASSTHROUGH")
3566
+ attr_accessor klv_name_modifier: ::String
3567
+ attr_accessor nielsen_id_3_name_modifier: ::String
3568
+ attr_accessor scte_35_name_modifier: ::String
3562
3569
  SENSITIVE: []
3563
3570
  end
3564
3571
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-medialive
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.138.0
4
+ version: 1.140.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-06 00:00:00.000000000 Z
11
+ date: 2024-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core