aws-sdk-mediaconvert 1.187.0 → 1.189.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +53 -8
- data/lib/aws-sdk-mediaconvert/client_api.rb +78 -2
- data/lib/aws-sdk-mediaconvert/types.rb +455 -44
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- data/sig/params.rbs +46 -4
- data/sig/types.rbs +79 -6
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e428c536a5fac4e5cc76bef47989717c48067844dfd97732db49976f12f2234
|
|
4
|
+
data.tar.gz: 4a86e92718c9a31ec37b20f3c4e1003d65dc0eb485da2eae4274df278166dd1e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cfdfe511ce7ff699861ed30dceacae09946e0a417d09f04a6e422adf44627629b7e3445969c09d787d7526e4aab87cecf797f3c3a1b8a297e42655bd779ccb27
|
|
7
|
+
data.tar.gz: 1976c314fcb87c6021c253a6adb7be1065e3e49193535aa4fcf3ceb9ff4216d95d04f33b1da2d4e4bacb3f6b2523db573d5686ab76471a61092a9a4ffcde8ffa
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.189.0 (2026-07-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for integer-second duration normalization and the option to disable explicit weighted prediction.
|
|
8
|
+
|
|
9
|
+
1.188.0 (2026-06-05)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for configurable number of Clear Lead segments at the beginning of encrypted output. Adds support for multiple trickplay variants.
|
|
13
|
+
|
|
4
14
|
1.187.0 (2026-06-02)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.189.0
|
|
@@ -1194,6 +1194,7 @@ module Aws::MediaConvert
|
|
|
1194
1194
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
1195
1195
|
# end_of_stream_markers: "INCLUDE", # accepts INCLUDE, SUPPRESS
|
|
1196
1196
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
1197
|
+
# explicit_weighted_prediction: "DISABLED", # accepts DISABLED, ENABLED
|
|
1197
1198
|
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
1198
1199
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
1199
1200
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
@@ -1518,6 +1519,11 @@ module Aws::MediaConvert
|
|
|
1518
1519
|
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
|
1519
1520
|
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
|
1520
1521
|
# },
|
|
1522
|
+
# duration_control: {
|
|
1523
|
+
# integer_duration_maximum_compression_denominator: 1,
|
|
1524
|
+
# integer_duration_maximum_compression_numerator: 1,
|
|
1525
|
+
# integer_duration_trim_threshold_milliseconds: 1,
|
|
1526
|
+
# },
|
|
1521
1527
|
# hdr_10_plus: {
|
|
1522
1528
|
# mastering_monitor_nits: 1,
|
|
1523
1529
|
# target_monitor_nits: 1,
|
|
@@ -1964,6 +1970,7 @@ module Aws::MediaConvert
|
|
|
1964
1970
|
# resp.preset.settings.video_description.codec_settings.h264_settings.dynamic_sub_gop #=> String, one of "ADAPTIVE", "STATIC"
|
|
1965
1971
|
# resp.preset.settings.video_description.codec_settings.h264_settings.end_of_stream_markers #=> String, one of "INCLUDE", "SUPPRESS"
|
|
1966
1972
|
# resp.preset.settings.video_description.codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
|
|
1973
|
+
# resp.preset.settings.video_description.codec_settings.h264_settings.explicit_weighted_prediction #=> String, one of "DISABLED", "ENABLED"
|
|
1967
1974
|
# resp.preset.settings.video_description.codec_settings.h264_settings.field_encoding #=> String, one of "PAFF", "FORCE_FIELD", "MBAFF"
|
|
1968
1975
|
# resp.preset.settings.video_description.codec_settings.h264_settings.flicker_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
|
|
1969
1976
|
# resp.preset.settings.video_description.codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
|
|
@@ -2240,6 +2247,9 @@ module Aws::MediaConvert
|
|
|
2240
2247
|
# resp.preset.settings.video_description.video_preprocessors.dolby_vision.l6_mode #=> String, one of "PASSTHROUGH", "RECALCULATE", "SPECIFY"
|
|
2241
2248
|
# resp.preset.settings.video_description.video_preprocessors.dolby_vision.mapping #=> String, one of "HDR10_NOMAP", "HDR10_1000"
|
|
2242
2249
|
# resp.preset.settings.video_description.video_preprocessors.dolby_vision.profile #=> String, one of "PROFILE_5", "PROFILE_8_1"
|
|
2250
|
+
# resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_denominator #=> Integer
|
|
2251
|
+
# resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_numerator #=> Integer
|
|
2252
|
+
# resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_trim_threshold_milliseconds #=> Integer
|
|
2243
2253
|
# resp.preset.settings.video_description.video_preprocessors.hdr_10_plus.mastering_monitor_nits #=> Integer
|
|
2244
2254
|
# resp.preset.settings.video_description.video_preprocessors.hdr_10_plus.target_monitor_nits #=> Integer
|
|
2245
2255
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images #=> Array
|
|
@@ -3060,6 +3070,7 @@ module Aws::MediaConvert
|
|
|
3060
3070
|
# resp.preset.settings.video_description.codec_settings.h264_settings.dynamic_sub_gop #=> String, one of "ADAPTIVE", "STATIC"
|
|
3061
3071
|
# resp.preset.settings.video_description.codec_settings.h264_settings.end_of_stream_markers #=> String, one of "INCLUDE", "SUPPRESS"
|
|
3062
3072
|
# resp.preset.settings.video_description.codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
|
|
3073
|
+
# resp.preset.settings.video_description.codec_settings.h264_settings.explicit_weighted_prediction #=> String, one of "DISABLED", "ENABLED"
|
|
3063
3074
|
# resp.preset.settings.video_description.codec_settings.h264_settings.field_encoding #=> String, one of "PAFF", "FORCE_FIELD", "MBAFF"
|
|
3064
3075
|
# resp.preset.settings.video_description.codec_settings.h264_settings.flicker_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
|
|
3065
3076
|
# resp.preset.settings.video_description.codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
|
|
@@ -3336,6 +3347,9 @@ module Aws::MediaConvert
|
|
|
3336
3347
|
# resp.preset.settings.video_description.video_preprocessors.dolby_vision.l6_mode #=> String, one of "PASSTHROUGH", "RECALCULATE", "SPECIFY"
|
|
3337
3348
|
# resp.preset.settings.video_description.video_preprocessors.dolby_vision.mapping #=> String, one of "HDR10_NOMAP", "HDR10_1000"
|
|
3338
3349
|
# resp.preset.settings.video_description.video_preprocessors.dolby_vision.profile #=> String, one of "PROFILE_5", "PROFILE_8_1"
|
|
3350
|
+
# resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_denominator #=> Integer
|
|
3351
|
+
# resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_numerator #=> Integer
|
|
3352
|
+
# resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_trim_threshold_milliseconds #=> Integer
|
|
3339
3353
|
# resp.preset.settings.video_description.video_preprocessors.hdr_10_plus.mastering_monitor_nits #=> Integer
|
|
3340
3354
|
# resp.preset.settings.video_description.video_preprocessors.hdr_10_plus.target_monitor_nits #=> Integer
|
|
3341
3355
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images #=> Array
|
|
@@ -3965,6 +3979,7 @@ module Aws::MediaConvert
|
|
|
3965
3979
|
# resp.presets[0].settings.video_description.codec_settings.h264_settings.dynamic_sub_gop #=> String, one of "ADAPTIVE", "STATIC"
|
|
3966
3980
|
# resp.presets[0].settings.video_description.codec_settings.h264_settings.end_of_stream_markers #=> String, one of "INCLUDE", "SUPPRESS"
|
|
3967
3981
|
# resp.presets[0].settings.video_description.codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
|
|
3982
|
+
# resp.presets[0].settings.video_description.codec_settings.h264_settings.explicit_weighted_prediction #=> String, one of "DISABLED", "ENABLED"
|
|
3968
3983
|
# resp.presets[0].settings.video_description.codec_settings.h264_settings.field_encoding #=> String, one of "PAFF", "FORCE_FIELD", "MBAFF"
|
|
3969
3984
|
# resp.presets[0].settings.video_description.codec_settings.h264_settings.flicker_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
|
|
3970
3985
|
# resp.presets[0].settings.video_description.codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
|
|
@@ -4241,6 +4256,9 @@ module Aws::MediaConvert
|
|
|
4241
4256
|
# resp.presets[0].settings.video_description.video_preprocessors.dolby_vision.l6_mode #=> String, one of "PASSTHROUGH", "RECALCULATE", "SPECIFY"
|
|
4242
4257
|
# resp.presets[0].settings.video_description.video_preprocessors.dolby_vision.mapping #=> String, one of "HDR10_NOMAP", "HDR10_1000"
|
|
4243
4258
|
# resp.presets[0].settings.video_description.video_preprocessors.dolby_vision.profile #=> String, one of "PROFILE_5", "PROFILE_8_1"
|
|
4259
|
+
# resp.presets[0].settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_denominator #=> Integer
|
|
4260
|
+
# resp.presets[0].settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_numerator #=> Integer
|
|
4261
|
+
# resp.presets[0].settings.video_description.video_preprocessors.duration_control.integer_duration_trim_threshold_milliseconds #=> Integer
|
|
4244
4262
|
# resp.presets[0].settings.video_description.video_preprocessors.hdr_10_plus.mastering_monitor_nits #=> Integer
|
|
4245
4263
|
# resp.presets[0].settings.video_description.video_preprocessors.hdr_10_plus.target_monitor_nits #=> Integer
|
|
4246
4264
|
# resp.presets[0].settings.video_description.video_preprocessors.image_inserter.insertable_images #=> Array
|
|
@@ -4463,7 +4481,7 @@ module Aws::MediaConvert
|
|
|
4463
4481
|
#
|
|
4464
4482
|
# resp.probe_results #=> Array
|
|
4465
4483
|
# resp.probe_results[0].container.duration #=> Float
|
|
4466
|
-
# resp.probe_results[0].container.format #=> String, one of "mp4", "quicktime", "matroska", "webm", "mxf", "wave", "avi", "mpegts"
|
|
4484
|
+
# resp.probe_results[0].container.format #=> String, one of "mp4", "quicktime", "matroska", "webm", "mxf", "wave", "avi", "mpegts", "mpegps", "mp3"
|
|
4467
4485
|
# resp.probe_results[0].container.start_timecode #=> String
|
|
4468
4486
|
# resp.probe_results[0].container.tracks #=> Array
|
|
4469
4487
|
# resp.probe_results[0].container.tracks[0].audio_properties.bit_depth #=> Integer
|
|
@@ -4472,8 +4490,9 @@ module Aws::MediaConvert
|
|
|
4472
4490
|
# resp.probe_results[0].container.tracks[0].audio_properties.frame_rate.denominator #=> Integer
|
|
4473
4491
|
# resp.probe_results[0].container.tracks[0].audio_properties.frame_rate.numerator #=> Integer
|
|
4474
4492
|
# resp.probe_results[0].container.tracks[0].audio_properties.language_code #=> String
|
|
4493
|
+
# resp.probe_results[0].container.tracks[0].audio_properties.object_count #=> Integer
|
|
4475
4494
|
# resp.probe_results[0].container.tracks[0].audio_properties.sample_rate #=> Integer
|
|
4476
|
-
# resp.probe_results[0].container.tracks[0].codec #=> String, one of "UNKNOWN", "AAC", "AC3", "EAC3", "FLAC", "MP3", "OPUS", "PCM", "VORBIS", "AV1", "AVC", "HEVC", "JPEG2000", "MJPEG", "MPEG1", "MP4V", "MPEG2", "PRORES", "QTRLE", "THEORA", "UNCOMPRESSED", "VFW", "VP8", "VP9", "C608", "C708", "WEBVTT"
|
|
4495
|
+
# resp.probe_results[0].container.tracks[0].codec #=> String, one of "UNKNOWN", "AAC", "AC3", "EAC3", "FLAC", "MP2", "MP3", "OPUS", "PCM", "VORBIS", "AV1", "AVC", "HEVC", "JPEG2000", "MJPEG", "MPEG1", "MP4V", "MPEG2", "PRORES", "QTRLE", "THEORA", "UNCOMPRESSED", "VFW", "VP8", "VP9", "C608", "C708", "WEBVTT"
|
|
4477
4496
|
# resp.probe_results[0].container.tracks[0].data_properties.language_code #=> String
|
|
4478
4497
|
# resp.probe_results[0].container.tracks[0].duration #=> Float
|
|
4479
4498
|
# resp.probe_results[0].container.tracks[0].index #=> Integer
|
|
@@ -4485,18 +4504,34 @@ module Aws::MediaConvert
|
|
|
4485
4504
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.coded_frame_rate.denominator #=> Integer
|
|
4486
4505
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.coded_frame_rate.numerator #=> Integer
|
|
4487
4506
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.color_primaries #=> String, one of "ITU_709", "UNSPECIFIED", "RESERVED", "ITU_470M", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "GENERIC_FILM", "ITU_2020", "SMPTE_428_1", "SMPTE_431_2", "SMPTE_EG_432_1", "IPT", "SMPTE_2067XYZ", "EBU_3213_E", "LAST"
|
|
4507
|
+
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.content_light_level.max_content_light_level #=> Integer
|
|
4508
|
+
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.content_light_level.max_frame_average_light_level #=> Integer
|
|
4488
4509
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.height #=> Integer
|
|
4489
4510
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.level #=> String
|
|
4490
4511
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.matrix_coefficients #=> String, one of "RGB", "ITU_709", "UNSPECIFIED", "RESERVED", "FCC", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "YCgCo", "ITU_2020_NCL", "ITU_2020_CL", "SMPTE_2085", "CD_NCL", "CD_CL", "ITU_2100ICtCp", "IPT", "EBU3213", "LAST"
|
|
4491
4512
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.profile #=> String
|
|
4513
|
+
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.rotation #=> Integer
|
|
4492
4514
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.scan_type #=> String
|
|
4493
4515
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.transfer_characteristics #=> String, one of "ITU_709", "UNSPECIFIED", "RESERVED", "ITU_470M", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "LINEAR", "LOG10_2", "LOC10_2_5", "IEC_61966_2_4", "ITU_1361", "IEC_61966_2_1", "ITU_2020_10bit", "ITU_2020_12bit", "SMPTE_2084", "SMPTE_428_1", "ARIB_B67", "LAST"
|
|
4494
4516
|
# resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.width #=> Integer
|
|
4495
4517
|
# resp.probe_results[0].container.tracks[0].video_properties.color_primaries #=> String, one of "ITU_709", "UNSPECIFIED", "RESERVED", "ITU_470M", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "GENERIC_FILM", "ITU_2020", "SMPTE_428_1", "SMPTE_431_2", "SMPTE_EG_432_1", "IPT", "SMPTE_2067XYZ", "EBU_3213_E", "LAST"
|
|
4496
4518
|
# resp.probe_results[0].container.tracks[0].video_properties.frame_rate.denominator #=> Integer
|
|
4497
4519
|
# resp.probe_results[0].container.tracks[0].video_properties.frame_rate.numerator #=> Integer
|
|
4520
|
+
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.content_light_level.max_content_light_level #=> Integer
|
|
4521
|
+
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.content_light_level.max_frame_average_light_level #=> Integer
|
|
4522
|
+
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.mastering_display_color_volume.blue_primary_x #=> Integer
|
|
4523
|
+
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.mastering_display_color_volume.blue_primary_y #=> Integer
|
|
4524
|
+
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.mastering_display_color_volume.green_primary_x #=> Integer
|
|
4525
|
+
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.mastering_display_color_volume.green_primary_y #=> Integer
|
|
4526
|
+
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.mastering_display_color_volume.max_luminance #=> Integer
|
|
4527
|
+
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.mastering_display_color_volume.min_luminance #=> Integer
|
|
4528
|
+
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.mastering_display_color_volume.red_primary_x #=> Integer
|
|
4529
|
+
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.mastering_display_color_volume.red_primary_y #=> Integer
|
|
4530
|
+
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.mastering_display_color_volume.white_point_x #=> Integer
|
|
4531
|
+
# resp.probe_results[0].container.tracks[0].video_properties.hdr_metadata.mastering_display_color_volume.white_point_y #=> Integer
|
|
4498
4532
|
# resp.probe_results[0].container.tracks[0].video_properties.height #=> Integer
|
|
4499
4533
|
# resp.probe_results[0].container.tracks[0].video_properties.matrix_coefficients #=> String, one of "RGB", "ITU_709", "UNSPECIFIED", "RESERVED", "FCC", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "YCgCo", "ITU_2020_NCL", "ITU_2020_CL", "SMPTE_2085", "CD_NCL", "CD_CL", "ITU_2100ICtCp", "IPT", "EBU3213", "LAST"
|
|
4534
|
+
# resp.probe_results[0].container.tracks[0].video_properties.rotation #=> Integer
|
|
4500
4535
|
# resp.probe_results[0].container.tracks[0].video_properties.transfer_characteristics #=> String, one of "ITU_709", "UNSPECIFIED", "RESERVED", "ITU_470M", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "LINEAR", "LOG10_2", "LOC10_2_5", "IEC_61966_2_4", "ITU_1361", "IEC_61966_2_1", "ITU_2020_10bit", "ITU_2020_12bit", "SMPTE_2084", "SMPTE_428_1", "ARIB_B67", "LAST"
|
|
4501
4536
|
# resp.probe_results[0].container.tracks[0].video_properties.width #=> Integer
|
|
4502
4537
|
# resp.probe_results[0].metadata.etag #=> String
|
|
@@ -4668,9 +4703,9 @@ module Aws::MediaConvert
|
|
|
4668
4703
|
req.send_request(options)
|
|
4669
4704
|
end
|
|
4670
4705
|
|
|
4671
|
-
# Add tags to a MediaConvert queue, preset, or job template. For
|
|
4706
|
+
# Add tags to a MediaConvert queue, preset, job, or job template. For
|
|
4672
4707
|
# information about tagging, see the User Guide at
|
|
4673
|
-
# https://docs.aws.amazon.com/mediaconvert/latest/ug/tagging-resources.html
|
|
4708
|
+
# https://docs.aws.amazon.com/mediaconvert/latest/ug/tagging-mediaconvert-resources.html.
|
|
4674
4709
|
#
|
|
4675
4710
|
# @option params [required, String] :arn
|
|
4676
4711
|
# The Amazon Resource Name (ARN) of the resource that you want to tag.
|
|
@@ -4700,9 +4735,9 @@ module Aws::MediaConvert
|
|
|
4700
4735
|
req.send_request(options)
|
|
4701
4736
|
end
|
|
4702
4737
|
|
|
4703
|
-
# Remove tags from a MediaConvert queue, preset, or job template.
|
|
4704
|
-
# information about tagging, see the User Guide at
|
|
4705
|
-
# https://docs.aws.amazon.com/mediaconvert/latest/ug/tagging-resources.html
|
|
4738
|
+
# Remove tags from a MediaConvert queue, preset, job, or job template.
|
|
4739
|
+
# For information about tagging, see the User Guide at
|
|
4740
|
+
# https://docs.aws.amazon.com/mediaconvert/latest/ug/tagging-mediaconvert-resources.html.
|
|
4706
4741
|
#
|
|
4707
4742
|
# @option params [required, String] :arn
|
|
4708
4743
|
# The Amazon Resource Name (ARN) of the resource that you want to remove
|
|
@@ -5285,6 +5320,7 @@ module Aws::MediaConvert
|
|
|
5285
5320
|
# dynamic_sub_gop: "ADAPTIVE", # accepts ADAPTIVE, STATIC
|
|
5286
5321
|
# end_of_stream_markers: "INCLUDE", # accepts INCLUDE, SUPPRESS
|
|
5287
5322
|
# entropy_encoding: "CABAC", # accepts CABAC, CAVLC
|
|
5323
|
+
# explicit_weighted_prediction: "DISABLED", # accepts DISABLED, ENABLED
|
|
5288
5324
|
# field_encoding: "PAFF", # accepts PAFF, FORCE_FIELD, MBAFF
|
|
5289
5325
|
# flicker_adaptive_quantization: "DISABLED", # accepts DISABLED, ENABLED
|
|
5290
5326
|
# framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
|
|
@@ -5609,6 +5645,11 @@ module Aws::MediaConvert
|
|
|
5609
5645
|
# mapping: "HDR10_NOMAP", # accepts HDR10_NOMAP, HDR10_1000
|
|
5610
5646
|
# profile: "PROFILE_5", # accepts PROFILE_5, PROFILE_8_1
|
|
5611
5647
|
# },
|
|
5648
|
+
# duration_control: {
|
|
5649
|
+
# integer_duration_maximum_compression_denominator: 1,
|
|
5650
|
+
# integer_duration_maximum_compression_numerator: 1,
|
|
5651
|
+
# integer_duration_trim_threshold_milliseconds: 1,
|
|
5652
|
+
# },
|
|
5612
5653
|
# hdr_10_plus: {
|
|
5613
5654
|
# mastering_monitor_nits: 1,
|
|
5614
5655
|
# target_monitor_nits: 1,
|
|
@@ -6052,6 +6093,7 @@ module Aws::MediaConvert
|
|
|
6052
6093
|
# resp.preset.settings.video_description.codec_settings.h264_settings.dynamic_sub_gop #=> String, one of "ADAPTIVE", "STATIC"
|
|
6053
6094
|
# resp.preset.settings.video_description.codec_settings.h264_settings.end_of_stream_markers #=> String, one of "INCLUDE", "SUPPRESS"
|
|
6054
6095
|
# resp.preset.settings.video_description.codec_settings.h264_settings.entropy_encoding #=> String, one of "CABAC", "CAVLC"
|
|
6096
|
+
# resp.preset.settings.video_description.codec_settings.h264_settings.explicit_weighted_prediction #=> String, one of "DISABLED", "ENABLED"
|
|
6055
6097
|
# resp.preset.settings.video_description.codec_settings.h264_settings.field_encoding #=> String, one of "PAFF", "FORCE_FIELD", "MBAFF"
|
|
6056
6098
|
# resp.preset.settings.video_description.codec_settings.h264_settings.flicker_adaptive_quantization #=> String, one of "DISABLED", "ENABLED"
|
|
6057
6099
|
# resp.preset.settings.video_description.codec_settings.h264_settings.framerate_control #=> String, one of "INITIALIZE_FROM_SOURCE", "SPECIFIED"
|
|
@@ -6328,6 +6370,9 @@ module Aws::MediaConvert
|
|
|
6328
6370
|
# resp.preset.settings.video_description.video_preprocessors.dolby_vision.l6_mode #=> String, one of "PASSTHROUGH", "RECALCULATE", "SPECIFY"
|
|
6329
6371
|
# resp.preset.settings.video_description.video_preprocessors.dolby_vision.mapping #=> String, one of "HDR10_NOMAP", "HDR10_1000"
|
|
6330
6372
|
# resp.preset.settings.video_description.video_preprocessors.dolby_vision.profile #=> String, one of "PROFILE_5", "PROFILE_8_1"
|
|
6373
|
+
# resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_denominator #=> Integer
|
|
6374
|
+
# resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_maximum_compression_numerator #=> Integer
|
|
6375
|
+
# resp.preset.settings.video_description.video_preprocessors.duration_control.integer_duration_trim_threshold_milliseconds #=> Integer
|
|
6331
6376
|
# resp.preset.settings.video_description.video_preprocessors.hdr_10_plus.mastering_monitor_nits #=> Integer
|
|
6332
6377
|
# resp.preset.settings.video_description.video_preprocessors.hdr_10_plus.target_monitor_nits #=> Integer
|
|
6333
6378
|
# resp.preset.settings.video_description.video_preprocessors.image_inserter.insertable_images #=> Array
|
|
@@ -6478,7 +6523,7 @@ module Aws::MediaConvert
|
|
|
6478
6523
|
tracer: tracer
|
|
6479
6524
|
)
|
|
6480
6525
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
|
6481
|
-
context[:gem_version] = '1.
|
|
6526
|
+
context[:gem_version] = '1.189.0'
|
|
6482
6527
|
Seahorse::Client::Request.new(handlers, context)
|
|
6483
6528
|
end
|
|
6484
6529
|
|
|
@@ -134,6 +134,7 @@ module Aws::MediaConvert
|
|
|
134
134
|
CmafGroupSettings = Shapes::StructureShape.new(name: 'CmafGroupSettings')
|
|
135
135
|
CmafImageBasedTrickPlay = Shapes::StringShape.new(name: 'CmafImageBasedTrickPlay')
|
|
136
136
|
CmafImageBasedTrickPlaySettings = Shapes::StructureShape.new(name: 'CmafImageBasedTrickPlaySettings')
|
|
137
|
+
CmafImageBasedTrickPlayVariant = Shapes::StructureShape.new(name: 'CmafImageBasedTrickPlayVariant')
|
|
137
138
|
CmafInitializationVectorInManifest = Shapes::StringShape.new(name: 'CmafInitializationVectorInManifest')
|
|
138
139
|
CmafIntervalCadence = Shapes::StringShape.new(name: 'CmafIntervalCadence')
|
|
139
140
|
CmafKeyProviderType = Shapes::StringShape.new(name: 'CmafKeyProviderType')
|
|
@@ -176,6 +177,7 @@ module Aws::MediaConvert
|
|
|
176
177
|
Container = Shapes::StructureShape.new(name: 'Container')
|
|
177
178
|
ContainerSettings = Shapes::StructureShape.new(name: 'ContainerSettings')
|
|
178
179
|
ContainerType = Shapes::StringShape.new(name: 'ContainerType')
|
|
180
|
+
ContentLightLevel = Shapes::StructureShape.new(name: 'ContentLightLevel')
|
|
179
181
|
CopyProtectionAction = Shapes::StringShape.new(name: 'CopyProtectionAction')
|
|
180
182
|
CreateJobRequest = Shapes::StructureShape.new(name: 'CreateJobRequest')
|
|
181
183
|
CreateJobResponse = Shapes::StructureShape.new(name: 'CreateJobResponse')
|
|
@@ -194,6 +196,7 @@ module Aws::MediaConvert
|
|
|
194
196
|
DashIsoHbbtvCompliance = Shapes::StringShape.new(name: 'DashIsoHbbtvCompliance')
|
|
195
197
|
DashIsoImageBasedTrickPlay = Shapes::StringShape.new(name: 'DashIsoImageBasedTrickPlay')
|
|
196
198
|
DashIsoImageBasedTrickPlaySettings = Shapes::StructureShape.new(name: 'DashIsoImageBasedTrickPlaySettings')
|
|
199
|
+
DashIsoImageBasedTrickPlayVariant = Shapes::StructureShape.new(name: 'DashIsoImageBasedTrickPlayVariant')
|
|
197
200
|
DashIsoIntervalCadence = Shapes::StringShape.new(name: 'DashIsoIntervalCadence')
|
|
198
201
|
DashIsoMpdManifestBandwidthType = Shapes::StringShape.new(name: 'DashIsoMpdManifestBandwidthType')
|
|
199
202
|
DashIsoMpdProfile = Shapes::StringShape.new(name: 'DashIsoMpdProfile')
|
|
@@ -231,6 +234,7 @@ module Aws::MediaConvert
|
|
|
231
234
|
DolbyVisionMapping = Shapes::StringShape.new(name: 'DolbyVisionMapping')
|
|
232
235
|
DolbyVisionProfile = Shapes::StringShape.new(name: 'DolbyVisionProfile')
|
|
233
236
|
DropFrameTimecode = Shapes::StringShape.new(name: 'DropFrameTimecode')
|
|
237
|
+
DurationControl = Shapes::StructureShape.new(name: 'DurationControl')
|
|
234
238
|
DvbNitSettings = Shapes::StructureShape.new(name: 'DvbNitSettings')
|
|
235
239
|
DvbSdtSettings = Shapes::StructureShape.new(name: 'DvbSdtSettings')
|
|
236
240
|
DvbSubDestinationSettings = Shapes::StructureShape.new(name: 'DvbSubDestinationSettings')
|
|
@@ -327,6 +331,7 @@ module Aws::MediaConvert
|
|
|
327
331
|
H264DynamicSubGop = Shapes::StringShape.new(name: 'H264DynamicSubGop')
|
|
328
332
|
H264EndOfStreamMarkers = Shapes::StringShape.new(name: 'H264EndOfStreamMarkers')
|
|
329
333
|
H264EntropyEncoding = Shapes::StringShape.new(name: 'H264EntropyEncoding')
|
|
334
|
+
H264ExplicitWeightedPrediction = Shapes::StringShape.new(name: 'H264ExplicitWeightedPrediction')
|
|
330
335
|
H264FieldEncoding = Shapes::StringShape.new(name: 'H264FieldEncoding')
|
|
331
336
|
H264FlickerAdaptiveQuantization = Shapes::StringShape.new(name: 'H264FlickerAdaptiveQuantization')
|
|
332
337
|
H264FramerateControl = Shapes::StringShape.new(name: 'H264FramerateControl')
|
|
@@ -386,6 +391,7 @@ module Aws::MediaConvert
|
|
|
386
391
|
HDRToSDRToneMapper = Shapes::StringShape.new(name: 'HDRToSDRToneMapper')
|
|
387
392
|
Hdr10Metadata = Shapes::StructureShape.new(name: 'Hdr10Metadata')
|
|
388
393
|
Hdr10Plus = Shapes::StructureShape.new(name: 'Hdr10Plus')
|
|
394
|
+
HdrMetadata = Shapes::StructureShape.new(name: 'HdrMetadata')
|
|
389
395
|
HlsAdMarkers = Shapes::StringShape.new(name: 'HlsAdMarkers')
|
|
390
396
|
HlsAdditionalManifest = Shapes::StructureShape.new(name: 'HlsAdditionalManifest')
|
|
391
397
|
HlsAudioOnlyContainer = Shapes::StringShape.new(name: 'HlsAudioOnlyContainer')
|
|
@@ -394,7 +400,6 @@ module Aws::MediaConvert
|
|
|
394
400
|
HlsCaptionLanguageMapping = Shapes::StructureShape.new(name: 'HlsCaptionLanguageMapping')
|
|
395
401
|
HlsCaptionLanguageSetting = Shapes::StringShape.new(name: 'HlsCaptionLanguageSetting')
|
|
396
402
|
HlsCaptionSegmentLengthControl = Shapes::StringShape.new(name: 'HlsCaptionSegmentLengthControl')
|
|
397
|
-
HlsClearLead = Shapes::StringShape.new(name: 'HlsClearLead')
|
|
398
403
|
HlsClientCache = Shapes::StringShape.new(name: 'HlsClientCache')
|
|
399
404
|
HlsCodecSpecification = Shapes::StringShape.new(name: 'HlsCodecSpecification')
|
|
400
405
|
HlsDescriptiveVideoServiceFlag = Shapes::StringShape.new(name: 'HlsDescriptiveVideoServiceFlag')
|
|
@@ -405,6 +410,7 @@ module Aws::MediaConvert
|
|
|
405
410
|
HlsIFrameOnlyManifest = Shapes::StringShape.new(name: 'HlsIFrameOnlyManifest')
|
|
406
411
|
HlsImageBasedTrickPlay = Shapes::StringShape.new(name: 'HlsImageBasedTrickPlay')
|
|
407
412
|
HlsImageBasedTrickPlaySettings = Shapes::StructureShape.new(name: 'HlsImageBasedTrickPlaySettings')
|
|
413
|
+
HlsImageBasedTrickPlayVariant = Shapes::StructureShape.new(name: 'HlsImageBasedTrickPlayVariant')
|
|
408
414
|
HlsInitializationVectorInManifest = Shapes::StringShape.new(name: 'HlsInitializationVectorInManifest')
|
|
409
415
|
HlsIntervalCadence = Shapes::StringShape.new(name: 'HlsIntervalCadence')
|
|
410
416
|
HlsKeyProviderType = Shapes::StringShape.new(name: 'HlsKeyProviderType')
|
|
@@ -494,6 +500,7 @@ module Aws::MediaConvert
|
|
|
494
500
|
M3u8PcrControl = Shapes::StringShape.new(name: 'M3u8PcrControl')
|
|
495
501
|
M3u8Scte35Source = Shapes::StringShape.new(name: 'M3u8Scte35Source')
|
|
496
502
|
M3u8Settings = Shapes::StructureShape.new(name: 'M3u8Settings')
|
|
503
|
+
MasteringDisplayColorVolume = Shapes::StructureShape.new(name: 'MasteringDisplayColorVolume')
|
|
497
504
|
MatrixCoefficients = Shapes::StringShape.new(name: 'MatrixCoefficients')
|
|
498
505
|
Metadata = Shapes::StructureShape.new(name: 'Metadata')
|
|
499
506
|
MinBottomRenditionSize = Shapes::StructureShape.new(name: 'MinBottomRenditionSize')
|
|
@@ -849,6 +856,7 @@ module Aws::MediaConvert
|
|
|
849
856
|
__integerMin1Max60000 = Shapes::IntegerShape.new(name: '__integerMin1Max60000')
|
|
850
857
|
__integerMin1Max64 = Shapes::IntegerShape.new(name: '__integerMin1Max64')
|
|
851
858
|
__integerMin1Max86400000 = Shapes::IntegerShape.new(name: '__integerMin1Max86400000')
|
|
859
|
+
__integerMin1Max9999 = Shapes::IntegerShape.new(name: '__integerMin1Max9999')
|
|
852
860
|
__integerMin2000Max30000 = Shapes::IntegerShape.new(name: '__integerMin2000Max30000')
|
|
853
861
|
__integerMin22050Max192000 = Shapes::IntegerShape.new(name: '__integerMin22050Max192000')
|
|
854
862
|
__integerMin22050Max48000 = Shapes::IntegerShape.new(name: '__integerMin22050Max48000')
|
|
@@ -899,8 +907,10 @@ module Aws::MediaConvert
|
|
|
899
907
|
__listOfCaptionDescription = Shapes::ListShape.new(name: '__listOfCaptionDescription')
|
|
900
908
|
__listOfCaptionDescriptionPreset = Shapes::ListShape.new(name: '__listOfCaptionDescriptionPreset')
|
|
901
909
|
__listOfCmafAdditionalManifest = Shapes::ListShape.new(name: '__listOfCmafAdditionalManifest')
|
|
910
|
+
__listOfCmafImageBasedTrickPlayVariant = Shapes::ListShape.new(name: '__listOfCmafImageBasedTrickPlayVariant')
|
|
902
911
|
__listOfColorConversion3DLUTSetting = Shapes::ListShape.new(name: '__listOfColorConversion3DLUTSetting')
|
|
903
912
|
__listOfDashAdditionalManifest = Shapes::ListShape.new(name: '__listOfDashAdditionalManifest')
|
|
913
|
+
__listOfDashIsoImageBasedTrickPlayVariant = Shapes::ListShape.new(name: '__listOfDashIsoImageBasedTrickPlayVariant')
|
|
904
914
|
__listOfElementalInferenceFeature = Shapes::ListShape.new(name: '__listOfElementalInferenceFeature')
|
|
905
915
|
__listOfElementalInferenceFeed = Shapes::ListShape.new(name: '__listOfElementalInferenceFeed')
|
|
906
916
|
__listOfEndpoint = Shapes::ListShape.new(name: '__listOfEndpoint')
|
|
@@ -909,6 +919,7 @@ module Aws::MediaConvert
|
|
|
909
919
|
__listOfHlsAdMarkers = Shapes::ListShape.new(name: '__listOfHlsAdMarkers')
|
|
910
920
|
__listOfHlsAdditionalManifest = Shapes::ListShape.new(name: '__listOfHlsAdditionalManifest')
|
|
911
921
|
__listOfHlsCaptionLanguageMapping = Shapes::ListShape.new(name: '__listOfHlsCaptionLanguageMapping')
|
|
922
|
+
__listOfHlsImageBasedTrickPlayVariant = Shapes::ListShape.new(name: '__listOfHlsImageBasedTrickPlayVariant')
|
|
912
923
|
__listOfHopDestination = Shapes::ListShape.new(name: '__listOfHopDestination')
|
|
913
924
|
__listOfId3Insertion = Shapes::ListShape.new(name: '__listOfId3Insertion')
|
|
914
925
|
__listOfInput = Shapes::ListShape.new(name: '__listOfInput')
|
|
@@ -1135,6 +1146,7 @@ module Aws::MediaConvert
|
|
|
1135
1146
|
AudioProperties.add_member(:channels, Shapes::ShapeRef.new(shape: __integer, location_name: "channels"))
|
|
1136
1147
|
AudioProperties.add_member(:frame_rate, Shapes::ShapeRef.new(shape: FrameRate, location_name: "frameRate"))
|
|
1137
1148
|
AudioProperties.add_member(:language_code, Shapes::ShapeRef.new(shape: __string, location_name: "languageCode"))
|
|
1149
|
+
AudioProperties.add_member(:object_count, Shapes::ShapeRef.new(shape: __integer, location_name: "objectCount"))
|
|
1138
1150
|
AudioProperties.add_member(:sample_rate, Shapes::ShapeRef.new(shape: __integer, location_name: "sampleRate"))
|
|
1139
1151
|
AudioProperties.struct_class = Types::AudioProperties
|
|
1140
1152
|
|
|
@@ -1310,7 +1322,7 @@ module Aws::MediaConvert
|
|
|
1310
1322
|
CmafAdditionalManifest.add_member(:selected_outputs, Shapes::ShapeRef.new(shape: __listOf__stringMin1, location_name: "selectedOutputs"))
|
|
1311
1323
|
CmafAdditionalManifest.struct_class = Types::CmafAdditionalManifest
|
|
1312
1324
|
|
|
1313
|
-
CmafEncryptionSettings.add_member(:
|
|
1325
|
+
CmafEncryptionSettings.add_member(:clear_lead_segments, Shapes::ShapeRef.new(shape: __integerMin1Max9999, location_name: "clearLeadSegments"))
|
|
1314
1326
|
CmafEncryptionSettings.add_member(:constant_initialization_vector, Shapes::ShapeRef.new(shape: __stringMin32Max32Pattern09aFAF32, location_name: "constantInitializationVector"))
|
|
1315
1327
|
CmafEncryptionSettings.add_member(:encryption_method, Shapes::ShapeRef.new(shape: CmafEncryptionType, location_name: "encryptionMethod"))
|
|
1316
1328
|
CmafEncryptionSettings.add_member(:initialization_vector_in_manifest, Shapes::ShapeRef.new(shape: CmafInitializationVectorInManifest, location_name: "initializationVectorInManifest"))
|
|
@@ -1331,6 +1343,7 @@ module Aws::MediaConvert
|
|
|
1331
1343
|
CmafGroupSettings.add_member(:fragment_length, Shapes::ShapeRef.new(shape: __integerMin1Max2147483647, location_name: "fragmentLength"))
|
|
1332
1344
|
CmafGroupSettings.add_member(:image_based_trick_play, Shapes::ShapeRef.new(shape: CmafImageBasedTrickPlay, location_name: "imageBasedTrickPlay"))
|
|
1333
1345
|
CmafGroupSettings.add_member(:image_based_trick_play_settings, Shapes::ShapeRef.new(shape: CmafImageBasedTrickPlaySettings, location_name: "imageBasedTrickPlaySettings"))
|
|
1346
|
+
CmafGroupSettings.add_member(:image_based_trick_play_variants, Shapes::ShapeRef.new(shape: __listOfCmafImageBasedTrickPlayVariant, location_name: "imageBasedTrickPlayVariants"))
|
|
1334
1347
|
CmafGroupSettings.add_member(:manifest_compression, Shapes::ShapeRef.new(shape: CmafManifestCompression, location_name: "manifestCompression"))
|
|
1335
1348
|
CmafGroupSettings.add_member(:manifest_duration_format, Shapes::ShapeRef.new(shape: CmafManifestDurationFormat, location_name: "manifestDurationFormat"))
|
|
1336
1349
|
CmafGroupSettings.add_member(:min_buffer_time, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "minBufferTime"))
|
|
@@ -1357,6 +1370,14 @@ module Aws::MediaConvert
|
|
|
1357
1370
|
CmafImageBasedTrickPlaySettings.add_member(:tile_width, Shapes::ShapeRef.new(shape: __integerMin1Max512, location_name: "tileWidth"))
|
|
1358
1371
|
CmafImageBasedTrickPlaySettings.struct_class = Types::CmafImageBasedTrickPlaySettings
|
|
1359
1372
|
|
|
1373
|
+
CmafImageBasedTrickPlayVariant.add_member(:interval_cadence, Shapes::ShapeRef.new(shape: CmafIntervalCadence, location_name: "intervalCadence"))
|
|
1374
|
+
CmafImageBasedTrickPlayVariant.add_member(:thumbnail_height, Shapes::ShapeRef.new(shape: __integerMin2Max4096, location_name: "thumbnailHeight"))
|
|
1375
|
+
CmafImageBasedTrickPlayVariant.add_member(:thumbnail_interval, Shapes::ShapeRef.new(shape: __doubleMin0Max2147483647, location_name: "thumbnailInterval"))
|
|
1376
|
+
CmafImageBasedTrickPlayVariant.add_member(:thumbnail_width, Shapes::ShapeRef.new(shape: __integerMin8Max4096, location_name: "thumbnailWidth"))
|
|
1377
|
+
CmafImageBasedTrickPlayVariant.add_member(:tile_height, Shapes::ShapeRef.new(shape: __integerMin1Max2048, location_name: "tileHeight"))
|
|
1378
|
+
CmafImageBasedTrickPlayVariant.add_member(:tile_width, Shapes::ShapeRef.new(shape: __integerMin1Max512, location_name: "tileWidth"))
|
|
1379
|
+
CmafImageBasedTrickPlayVariant.struct_class = Types::CmafImageBasedTrickPlayVariant
|
|
1380
|
+
|
|
1360
1381
|
CmfcSettings.add_member(:audio_duration, Shapes::ShapeRef.new(shape: CmfcAudioDuration, location_name: "audioDuration"))
|
|
1361
1382
|
CmfcSettings.add_member(:audio_group_id, Shapes::ShapeRef.new(shape: __string, location_name: "audioGroupId"))
|
|
1362
1383
|
CmfcSettings.add_member(:audio_rendition_sets, Shapes::ShapeRef.new(shape: __string, location_name: "audioRenditionSets"))
|
|
@@ -1380,10 +1401,12 @@ module Aws::MediaConvert
|
|
|
1380
1401
|
CodecMetadata.add_member(:chroma_subsampling, Shapes::ShapeRef.new(shape: __string, location_name: "chromaSubsampling"))
|
|
1381
1402
|
CodecMetadata.add_member(:coded_frame_rate, Shapes::ShapeRef.new(shape: FrameRate, location_name: "codedFrameRate"))
|
|
1382
1403
|
CodecMetadata.add_member(:color_primaries, Shapes::ShapeRef.new(shape: ColorPrimaries, location_name: "colorPrimaries"))
|
|
1404
|
+
CodecMetadata.add_member(:content_light_level, Shapes::ShapeRef.new(shape: ContentLightLevel, location_name: "contentLightLevel"))
|
|
1383
1405
|
CodecMetadata.add_member(:height, Shapes::ShapeRef.new(shape: __integer, location_name: "height"))
|
|
1384
1406
|
CodecMetadata.add_member(:level, Shapes::ShapeRef.new(shape: __string, location_name: "level"))
|
|
1385
1407
|
CodecMetadata.add_member(:matrix_coefficients, Shapes::ShapeRef.new(shape: MatrixCoefficients, location_name: "matrixCoefficients"))
|
|
1386
1408
|
CodecMetadata.add_member(:profile, Shapes::ShapeRef.new(shape: __string, location_name: "profile"))
|
|
1409
|
+
CodecMetadata.add_member(:rotation, Shapes::ShapeRef.new(shape: __integer, location_name: "rotation"))
|
|
1387
1410
|
CodecMetadata.add_member(:scan_type, Shapes::ShapeRef.new(shape: __string, location_name: "scanType"))
|
|
1388
1411
|
CodecMetadata.add_member(:transfer_characteristics, Shapes::ShapeRef.new(shape: TransferCharacteristics, location_name: "transferCharacteristics"))
|
|
1389
1412
|
CodecMetadata.add_member(:width, Shapes::ShapeRef.new(shape: __integer, location_name: "width"))
|
|
@@ -1429,6 +1452,10 @@ module Aws::MediaConvert
|
|
|
1429
1452
|
ContainerSettings.add_member(:mxf_settings, Shapes::ShapeRef.new(shape: MxfSettings, location_name: "mxfSettings"))
|
|
1430
1453
|
ContainerSettings.struct_class = Types::ContainerSettings
|
|
1431
1454
|
|
|
1455
|
+
ContentLightLevel.add_member(:max_content_light_level, Shapes::ShapeRef.new(shape: __integer, location_name: "maxContentLightLevel"))
|
|
1456
|
+
ContentLightLevel.add_member(:max_frame_average_light_level, Shapes::ShapeRef.new(shape: __integer, location_name: "maxFrameAverageLightLevel"))
|
|
1457
|
+
ContentLightLevel.struct_class = Types::ContentLightLevel
|
|
1458
|
+
|
|
1432
1459
|
CreateJobRequest.add_member(:acceleration_settings, Shapes::ShapeRef.new(shape: AccelerationSettings, location_name: "accelerationSettings"))
|
|
1433
1460
|
CreateJobRequest.add_member(:billing_tags_source, Shapes::ShapeRef.new(shape: BillingTagsSource, location_name: "billingTagsSource"))
|
|
1434
1461
|
CreateJobRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: __string, location_name: "clientRequestToken", metadata: {"idempotencyToken" => true}))
|
|
@@ -1512,6 +1539,7 @@ module Aws::MediaConvert
|
|
|
1512
1539
|
DashIsoGroupSettings.add_member(:hbbtv_compliance, Shapes::ShapeRef.new(shape: DashIsoHbbtvCompliance, location_name: "hbbtvCompliance"))
|
|
1513
1540
|
DashIsoGroupSettings.add_member(:image_based_trick_play, Shapes::ShapeRef.new(shape: DashIsoImageBasedTrickPlay, location_name: "imageBasedTrickPlay"))
|
|
1514
1541
|
DashIsoGroupSettings.add_member(:image_based_trick_play_settings, Shapes::ShapeRef.new(shape: DashIsoImageBasedTrickPlaySettings, location_name: "imageBasedTrickPlaySettings"))
|
|
1542
|
+
DashIsoGroupSettings.add_member(:image_based_trick_play_variants, Shapes::ShapeRef.new(shape: __listOfDashIsoImageBasedTrickPlayVariant, location_name: "imageBasedTrickPlayVariants"))
|
|
1515
1543
|
DashIsoGroupSettings.add_member(:min_buffer_time, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "minBufferTime"))
|
|
1516
1544
|
DashIsoGroupSettings.add_member(:min_final_segment_length, Shapes::ShapeRef.new(shape: __doubleMin0Max2147483647, location_name: "minFinalSegmentLength"))
|
|
1517
1545
|
DashIsoGroupSettings.add_member(:mpd_manifest_bandwidth_type, Shapes::ShapeRef.new(shape: DashIsoMpdManifestBandwidthType, location_name: "mpdManifestBandwidthType"))
|
|
@@ -1532,6 +1560,14 @@ module Aws::MediaConvert
|
|
|
1532
1560
|
DashIsoImageBasedTrickPlaySettings.add_member(:tile_width, Shapes::ShapeRef.new(shape: __integerMin1Max512, location_name: "tileWidth"))
|
|
1533
1561
|
DashIsoImageBasedTrickPlaySettings.struct_class = Types::DashIsoImageBasedTrickPlaySettings
|
|
1534
1562
|
|
|
1563
|
+
DashIsoImageBasedTrickPlayVariant.add_member(:interval_cadence, Shapes::ShapeRef.new(shape: DashIsoIntervalCadence, location_name: "intervalCadence"))
|
|
1564
|
+
DashIsoImageBasedTrickPlayVariant.add_member(:thumbnail_height, Shapes::ShapeRef.new(shape: __integerMin2Max4096, location_name: "thumbnailHeight"))
|
|
1565
|
+
DashIsoImageBasedTrickPlayVariant.add_member(:thumbnail_interval, Shapes::ShapeRef.new(shape: __doubleMin0Max2147483647, location_name: "thumbnailInterval"))
|
|
1566
|
+
DashIsoImageBasedTrickPlayVariant.add_member(:thumbnail_width, Shapes::ShapeRef.new(shape: __integerMin8Max4096, location_name: "thumbnailWidth"))
|
|
1567
|
+
DashIsoImageBasedTrickPlayVariant.add_member(:tile_height, Shapes::ShapeRef.new(shape: __integerMin1Max2048, location_name: "tileHeight"))
|
|
1568
|
+
DashIsoImageBasedTrickPlayVariant.add_member(:tile_width, Shapes::ShapeRef.new(shape: __integerMin1Max512, location_name: "tileWidth"))
|
|
1569
|
+
DashIsoImageBasedTrickPlayVariant.struct_class = Types::DashIsoImageBasedTrickPlayVariant
|
|
1570
|
+
|
|
1535
1571
|
DataProperties.add_member(:language_code, Shapes::ShapeRef.new(shape: __string, location_name: "languageCode"))
|
|
1536
1572
|
DataProperties.struct_class = Types::DataProperties
|
|
1537
1573
|
|
|
@@ -1587,6 +1623,11 @@ module Aws::MediaConvert
|
|
|
1587
1623
|
DolbyVisionLevel6Metadata.add_member(:max_fall, Shapes::ShapeRef.new(shape: __integerMin0Max65535, location_name: "maxFall"))
|
|
1588
1624
|
DolbyVisionLevel6Metadata.struct_class = Types::DolbyVisionLevel6Metadata
|
|
1589
1625
|
|
|
1626
|
+
DurationControl.add_member(:integer_duration_maximum_compression_denominator, Shapes::ShapeRef.new(shape: __integerMin1Max2147483647, location_name: "integerDurationMaximumCompressionDenominator"))
|
|
1627
|
+
DurationControl.add_member(:integer_duration_maximum_compression_numerator, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "integerDurationMaximumCompressionNumerator"))
|
|
1628
|
+
DurationControl.add_member(:integer_duration_trim_threshold_milliseconds, Shapes::ShapeRef.new(shape: __integerMin0Max500, location_name: "integerDurationTrimThresholdMilliseconds"))
|
|
1629
|
+
DurationControl.struct_class = Types::DurationControl
|
|
1630
|
+
|
|
1590
1631
|
DvbNitSettings.add_member(:network_id, Shapes::ShapeRef.new(shape: __integerMin0Max65535, location_name: "networkId"))
|
|
1591
1632
|
DvbNitSettings.add_member(:network_name, Shapes::ShapeRef.new(shape: __stringMin1Max256, location_name: "networkName"))
|
|
1592
1633
|
DvbNitSettings.add_member(:nit_interval, Shapes::ShapeRef.new(shape: __integerMin25Max10000, location_name: "nitInterval"))
|
|
@@ -1824,6 +1865,7 @@ module Aws::MediaConvert
|
|
|
1824
1865
|
H264Settings.add_member(:dynamic_sub_gop, Shapes::ShapeRef.new(shape: H264DynamicSubGop, location_name: "dynamicSubGop"))
|
|
1825
1866
|
H264Settings.add_member(:end_of_stream_markers, Shapes::ShapeRef.new(shape: H264EndOfStreamMarkers, location_name: "endOfStreamMarkers"))
|
|
1826
1867
|
H264Settings.add_member(:entropy_encoding, Shapes::ShapeRef.new(shape: H264EntropyEncoding, location_name: "entropyEncoding"))
|
|
1868
|
+
H264Settings.add_member(:explicit_weighted_prediction, Shapes::ShapeRef.new(shape: H264ExplicitWeightedPrediction, location_name: "explicitWeightedPrediction"))
|
|
1827
1869
|
H264Settings.add_member(:field_encoding, Shapes::ShapeRef.new(shape: H264FieldEncoding, location_name: "fieldEncoding"))
|
|
1828
1870
|
H264Settings.add_member(:flicker_adaptive_quantization, Shapes::ShapeRef.new(shape: H264FlickerAdaptiveQuantization, location_name: "flickerAdaptiveQuantization"))
|
|
1829
1871
|
H264Settings.add_member(:framerate_control, Shapes::ShapeRef.new(shape: H264FramerateControl, location_name: "framerateControl"))
|
|
@@ -1940,6 +1982,10 @@ module Aws::MediaConvert
|
|
|
1940
1982
|
Hdr10Plus.add_member(:target_monitor_nits, Shapes::ShapeRef.new(shape: __integerMin0Max4000, location_name: "targetMonitorNits"))
|
|
1941
1983
|
Hdr10Plus.struct_class = Types::Hdr10Plus
|
|
1942
1984
|
|
|
1985
|
+
HdrMetadata.add_member(:content_light_level, Shapes::ShapeRef.new(shape: ContentLightLevel, location_name: "contentLightLevel"))
|
|
1986
|
+
HdrMetadata.add_member(:mastering_display_color_volume, Shapes::ShapeRef.new(shape: MasteringDisplayColorVolume, location_name: "masteringDisplayColorVolume"))
|
|
1987
|
+
HdrMetadata.struct_class = Types::HdrMetadata
|
|
1988
|
+
|
|
1943
1989
|
HlsAdditionalManifest.add_member(:manifest_name_modifier, Shapes::ShapeRef.new(shape: __stringMin1, location_name: "manifestNameModifier"))
|
|
1944
1990
|
HlsAdditionalManifest.add_member(:selected_outputs, Shapes::ShapeRef.new(shape: __listOf__stringMin1, location_name: "selectedOutputs"))
|
|
1945
1991
|
HlsAdditionalManifest.struct_class = Types::HlsAdditionalManifest
|
|
@@ -1974,6 +2020,7 @@ module Aws::MediaConvert
|
|
|
1974
2020
|
HlsGroupSettings.add_member(:encryption, Shapes::ShapeRef.new(shape: HlsEncryptionSettings, location_name: "encryption"))
|
|
1975
2021
|
HlsGroupSettings.add_member(:image_based_trick_play, Shapes::ShapeRef.new(shape: HlsImageBasedTrickPlay, location_name: "imageBasedTrickPlay"))
|
|
1976
2022
|
HlsGroupSettings.add_member(:image_based_trick_play_settings, Shapes::ShapeRef.new(shape: HlsImageBasedTrickPlaySettings, location_name: "imageBasedTrickPlaySettings"))
|
|
2023
|
+
HlsGroupSettings.add_member(:image_based_trick_play_variants, Shapes::ShapeRef.new(shape: __listOfHlsImageBasedTrickPlayVariant, location_name: "imageBasedTrickPlayVariants"))
|
|
1977
2024
|
HlsGroupSettings.add_member(:manifest_compression, Shapes::ShapeRef.new(shape: HlsManifestCompression, location_name: "manifestCompression"))
|
|
1978
2025
|
HlsGroupSettings.add_member(:manifest_duration_format, Shapes::ShapeRef.new(shape: HlsManifestDurationFormat, location_name: "manifestDurationFormat"))
|
|
1979
2026
|
HlsGroupSettings.add_member(:min_final_segment_length, Shapes::ShapeRef.new(shape: __doubleMin0Max2147483647, location_name: "minFinalSegmentLength"))
|
|
@@ -2001,6 +2048,14 @@ module Aws::MediaConvert
|
|
|
2001
2048
|
HlsImageBasedTrickPlaySettings.add_member(:tile_width, Shapes::ShapeRef.new(shape: __integerMin1Max512, location_name: "tileWidth"))
|
|
2002
2049
|
HlsImageBasedTrickPlaySettings.struct_class = Types::HlsImageBasedTrickPlaySettings
|
|
2003
2050
|
|
|
2051
|
+
HlsImageBasedTrickPlayVariant.add_member(:interval_cadence, Shapes::ShapeRef.new(shape: HlsIntervalCadence, location_name: "intervalCadence"))
|
|
2052
|
+
HlsImageBasedTrickPlayVariant.add_member(:thumbnail_height, Shapes::ShapeRef.new(shape: __integerMin2Max4096, location_name: "thumbnailHeight"))
|
|
2053
|
+
HlsImageBasedTrickPlayVariant.add_member(:thumbnail_interval, Shapes::ShapeRef.new(shape: __doubleMin0Max2147483647, location_name: "thumbnailInterval"))
|
|
2054
|
+
HlsImageBasedTrickPlayVariant.add_member(:thumbnail_width, Shapes::ShapeRef.new(shape: __integerMin8Max4096, location_name: "thumbnailWidth"))
|
|
2055
|
+
HlsImageBasedTrickPlayVariant.add_member(:tile_height, Shapes::ShapeRef.new(shape: __integerMin1Max2048, location_name: "tileHeight"))
|
|
2056
|
+
HlsImageBasedTrickPlayVariant.add_member(:tile_width, Shapes::ShapeRef.new(shape: __integerMin1Max512, location_name: "tileWidth"))
|
|
2057
|
+
HlsImageBasedTrickPlayVariant.struct_class = Types::HlsImageBasedTrickPlayVariant
|
|
2058
|
+
|
|
2004
2059
|
HlsRenditionGroupSettings.add_member(:rendition_group_id, Shapes::ShapeRef.new(shape: __string, location_name: "renditionGroupId"))
|
|
2005
2060
|
HlsRenditionGroupSettings.add_member(:rendition_language_code, Shapes::ShapeRef.new(shape: LanguageCode, location_name: "renditionLanguageCode"))
|
|
2006
2061
|
HlsRenditionGroupSettings.add_member(:rendition_name, Shapes::ShapeRef.new(shape: __string, location_name: "renditionName"))
|
|
@@ -2368,6 +2423,18 @@ module Aws::MediaConvert
|
|
|
2368
2423
|
M3u8Settings.add_member(:video_pid, Shapes::ShapeRef.new(shape: __integerMin32Max8182, location_name: "videoPid"))
|
|
2369
2424
|
M3u8Settings.struct_class = Types::M3u8Settings
|
|
2370
2425
|
|
|
2426
|
+
MasteringDisplayColorVolume.add_member(:blue_primary_x, Shapes::ShapeRef.new(shape: __integer, location_name: "bluePrimaryX"))
|
|
2427
|
+
MasteringDisplayColorVolume.add_member(:blue_primary_y, Shapes::ShapeRef.new(shape: __integer, location_name: "bluePrimaryY"))
|
|
2428
|
+
MasteringDisplayColorVolume.add_member(:green_primary_x, Shapes::ShapeRef.new(shape: __integer, location_name: "greenPrimaryX"))
|
|
2429
|
+
MasteringDisplayColorVolume.add_member(:green_primary_y, Shapes::ShapeRef.new(shape: __integer, location_name: "greenPrimaryY"))
|
|
2430
|
+
MasteringDisplayColorVolume.add_member(:max_luminance, Shapes::ShapeRef.new(shape: __long, location_name: "maxLuminance"))
|
|
2431
|
+
MasteringDisplayColorVolume.add_member(:min_luminance, Shapes::ShapeRef.new(shape: __long, location_name: "minLuminance"))
|
|
2432
|
+
MasteringDisplayColorVolume.add_member(:red_primary_x, Shapes::ShapeRef.new(shape: __integer, location_name: "redPrimaryX"))
|
|
2433
|
+
MasteringDisplayColorVolume.add_member(:red_primary_y, Shapes::ShapeRef.new(shape: __integer, location_name: "redPrimaryY"))
|
|
2434
|
+
MasteringDisplayColorVolume.add_member(:white_point_x, Shapes::ShapeRef.new(shape: __integer, location_name: "whitePointX"))
|
|
2435
|
+
MasteringDisplayColorVolume.add_member(:white_point_y, Shapes::ShapeRef.new(shape: __integer, location_name: "whitePointY"))
|
|
2436
|
+
MasteringDisplayColorVolume.struct_class = Types::MasteringDisplayColorVolume
|
|
2437
|
+
|
|
2371
2438
|
Metadata.add_member(:etag, Shapes::ShapeRef.new(shape: __string, location_name: "eTag"))
|
|
2372
2439
|
Metadata.add_member(:file_size, Shapes::ShapeRef.new(shape: __long, location_name: "fileSize"))
|
|
2373
2440
|
Metadata.add_member(:last_modified, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "lastModified"))
|
|
@@ -2992,6 +3059,7 @@ module Aws::MediaConvert
|
|
|
2992
3059
|
VideoPreprocessor.add_member(:color_corrector, Shapes::ShapeRef.new(shape: ColorCorrector, location_name: "colorCorrector"))
|
|
2993
3060
|
VideoPreprocessor.add_member(:deinterlacer, Shapes::ShapeRef.new(shape: Deinterlacer, location_name: "deinterlacer"))
|
|
2994
3061
|
VideoPreprocessor.add_member(:dolby_vision, Shapes::ShapeRef.new(shape: DolbyVision, location_name: "dolbyVision"))
|
|
3062
|
+
VideoPreprocessor.add_member(:duration_control, Shapes::ShapeRef.new(shape: DurationControl, location_name: "durationControl"))
|
|
2995
3063
|
VideoPreprocessor.add_member(:hdr_10_plus, Shapes::ShapeRef.new(shape: Hdr10Plus, location_name: "hdr10Plus"))
|
|
2996
3064
|
VideoPreprocessor.add_member(:image_inserter, Shapes::ShapeRef.new(shape: ImageInserter, location_name: "imageInserter"))
|
|
2997
3065
|
VideoPreprocessor.add_member(:noise_reducer, Shapes::ShapeRef.new(shape: NoiseReducer, location_name: "noiseReducer"))
|
|
@@ -3004,8 +3072,10 @@ module Aws::MediaConvert
|
|
|
3004
3072
|
VideoProperties.add_member(:codec_metadata, Shapes::ShapeRef.new(shape: CodecMetadata, location_name: "codecMetadata"))
|
|
3005
3073
|
VideoProperties.add_member(:color_primaries, Shapes::ShapeRef.new(shape: ColorPrimaries, location_name: "colorPrimaries"))
|
|
3006
3074
|
VideoProperties.add_member(:frame_rate, Shapes::ShapeRef.new(shape: FrameRate, location_name: "frameRate"))
|
|
3075
|
+
VideoProperties.add_member(:hdr_metadata, Shapes::ShapeRef.new(shape: HdrMetadata, location_name: "hdrMetadata"))
|
|
3007
3076
|
VideoProperties.add_member(:height, Shapes::ShapeRef.new(shape: __integer, location_name: "height"))
|
|
3008
3077
|
VideoProperties.add_member(:matrix_coefficients, Shapes::ShapeRef.new(shape: MatrixCoefficients, location_name: "matrixCoefficients"))
|
|
3078
|
+
VideoProperties.add_member(:rotation, Shapes::ShapeRef.new(shape: __integer, location_name: "rotation"))
|
|
3009
3079
|
VideoProperties.add_member(:transfer_characteristics, Shapes::ShapeRef.new(shape: TransferCharacteristics, location_name: "transferCharacteristics"))
|
|
3010
3080
|
VideoProperties.add_member(:width, Shapes::ShapeRef.new(shape: __integer, location_name: "width"))
|
|
3011
3081
|
VideoProperties.struct_class = Types::VideoProperties
|
|
@@ -3142,10 +3212,14 @@ module Aws::MediaConvert
|
|
|
3142
3212
|
|
|
3143
3213
|
__listOfCmafAdditionalManifest.member = Shapes::ShapeRef.new(shape: CmafAdditionalManifest)
|
|
3144
3214
|
|
|
3215
|
+
__listOfCmafImageBasedTrickPlayVariant.member = Shapes::ShapeRef.new(shape: CmafImageBasedTrickPlayVariant)
|
|
3216
|
+
|
|
3145
3217
|
__listOfColorConversion3DLUTSetting.member = Shapes::ShapeRef.new(shape: ColorConversion3DLUTSetting)
|
|
3146
3218
|
|
|
3147
3219
|
__listOfDashAdditionalManifest.member = Shapes::ShapeRef.new(shape: DashAdditionalManifest)
|
|
3148
3220
|
|
|
3221
|
+
__listOfDashIsoImageBasedTrickPlayVariant.member = Shapes::ShapeRef.new(shape: DashIsoImageBasedTrickPlayVariant)
|
|
3222
|
+
|
|
3149
3223
|
__listOfElementalInferenceFeature.member = Shapes::ShapeRef.new(shape: ElementalInferenceFeature)
|
|
3150
3224
|
|
|
3151
3225
|
__listOfElementalInferenceFeed.member = Shapes::ShapeRef.new(shape: ElementalInferenceFeed)
|
|
@@ -3162,6 +3236,8 @@ module Aws::MediaConvert
|
|
|
3162
3236
|
|
|
3163
3237
|
__listOfHlsCaptionLanguageMapping.member = Shapes::ShapeRef.new(shape: HlsCaptionLanguageMapping)
|
|
3164
3238
|
|
|
3239
|
+
__listOfHlsImageBasedTrickPlayVariant.member = Shapes::ShapeRef.new(shape: HlsImageBasedTrickPlayVariant)
|
|
3240
|
+
|
|
3165
3241
|
__listOfHopDestination.member = Shapes::ShapeRef.new(shape: HopDestination)
|
|
3166
3242
|
|
|
3167
3243
|
__listOfId3Insertion.member = Shapes::ShapeRef.new(shape: Id3Insertion)
|