aws-sdk-mediaconvert 1.160.0 → 1.162.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e3d54aa1637fe02e415e028ad3623e4c2cbb19b8c9b1abce3a2f188f15469e6
4
- data.tar.gz: 5f891097fbcd5d7af35946871a8158f33dbab5e51675520a1647b7022a2d5330
3
+ metadata.gz: b27b120df9913ebb731c6537586a49a2d59881de4f3613a535b7d879756362b1
4
+ data.tar.gz: 630d735c98258a294c7a904d30a10323fa3d5c6fc2ef58dc2bba1ef985e1ba68
5
5
  SHA512:
6
- metadata.gz: 1c7e11d3297235b18e183cf6bd86020f32d1c8bbd95ceadc660ef4542275c1ed807802063b703ebb1ce2adad9528fef3c5019681e2f11050f10ba80d41011389
7
- data.tar.gz: 3360b6188df6cf12645c6cec0481636c96534a14a96b6c5ff65ba432524351940947a71ea03ca23c5bed36875a02fe157faead9d8949fc99246afe2bf378836a
6
+ metadata.gz: ff27f003ff2ae5728837736dadf769454bf9cba5d344b359af55667fa612498ba54c8bc5619036866c6dd13032495110034948f19695aadb93f593d87e39071d
7
+ data.tar.gz: c0e79f1e8b5b2c204fe6e4ef651cf9d82ba1a2b70182b177f9cf622bbb64539ce7ef5682c4cd04e54830e6838cb72712108c028dfc4de535e6e000e4f432618f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.162.0 (2025-06-20)
5
+ ------------------
6
+
7
+ * Feature - This release adds a new SPECIFIED_OPTIMAL option for handling DDS when using DVB-Sub with high resolution video.
8
+
9
+ 1.161.0 (2025-06-04)
10
+ ------------------
11
+
12
+ * Feature - This release includes support for embedding and signing C2PA content credentials in MP4 outputs.
13
+
4
14
  1.160.0 (2025-06-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.160.0
1
+ 1.162.0
@@ -892,7 +892,7 @@ module Aws::MediaConvert
892
892
  # apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
893
893
  # background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
894
894
  # background_opacity: 1,
895
- # dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
895
+ # dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW, SPECIFIED_OPTIMAL
896
896
  # dds_x_coordinate: 1,
897
897
  # dds_y_coordinate: 1,
898
898
  # fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
@@ -1062,11 +1062,14 @@ module Aws::MediaConvert
1062
1062
  # },
1063
1063
  # mp_4_settings: {
1064
1064
  # audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
1065
+ # c2pa_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
1066
+ # certificate_secret: "__stringMin1Max2048PatternArnAZSecretsmanagerWD12SecretAZAZ09",
1065
1067
  # cslg_atom: "INCLUDE", # accepts INCLUDE, EXCLUDE
1066
1068
  # ctts_version: 1,
1067
1069
  # free_space_box: "INCLUDE", # accepts INCLUDE, EXCLUDE
1068
1070
  # moov_placement: "PROGRESSIVE_DOWNLOAD", # accepts PROGRESSIVE_DOWNLOAD, NORMAL
1069
1071
  # mp_4_major_brand: "__string",
1072
+ # signing_kms_key: "__stringMin1PatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912MrkAFAF0932",
1070
1073
  # },
1071
1074
  # mpd_settings: {
1072
1075
  # accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
@@ -1680,7 +1683,7 @@ module Aws::MediaConvert
1680
1683
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.apply_font_color #=> String, one of "WHITE_TEXT_ONLY", "ALL_TEXT"
1681
1684
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_color #=> String, one of "NONE", "BLACK", "WHITE", "AUTO"
1682
1685
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_opacity #=> Integer
1683
- # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW"
1686
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW", "SPECIFIED_OPTIMAL"
1684
1687
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_x_coordinate #=> Integer
1685
1688
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_y_coordinate #=> Integer
1686
1689
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
@@ -1816,11 +1819,14 @@ module Aws::MediaConvert
1816
1819
  # resp.preset.settings.container_settings.mov_settings.padding_control #=> String, one of "OMNEON", "NONE"
1817
1820
  # resp.preset.settings.container_settings.mov_settings.reference #=> String, one of "SELF_CONTAINED", "EXTERNAL"
1818
1821
  # resp.preset.settings.container_settings.mp_4_settings.audio_duration #=> String, one of "DEFAULT_CODEC_DURATION", "MATCH_VIDEO_DURATION"
1822
+ # resp.preset.settings.container_settings.mp_4_settings.c2pa_manifest #=> String, one of "INCLUDE", "EXCLUDE"
1823
+ # resp.preset.settings.container_settings.mp_4_settings.certificate_secret #=> String
1819
1824
  # resp.preset.settings.container_settings.mp_4_settings.cslg_atom #=> String, one of "INCLUDE", "EXCLUDE"
1820
1825
  # resp.preset.settings.container_settings.mp_4_settings.ctts_version #=> Integer
1821
1826
  # resp.preset.settings.container_settings.mp_4_settings.free_space_box #=> String, one of "INCLUDE", "EXCLUDE"
1822
1827
  # resp.preset.settings.container_settings.mp_4_settings.moov_placement #=> String, one of "PROGRESSIVE_DOWNLOAD", "NORMAL"
1823
1828
  # resp.preset.settings.container_settings.mp_4_settings.mp_4_major_brand #=> String
1829
+ # resp.preset.settings.container_settings.mp_4_settings.signing_kms_key #=> String
1824
1830
  # resp.preset.settings.container_settings.mpd_settings.accessibility_caption_hints #=> String, one of "INCLUDE", "EXCLUDE"
1825
1831
  # resp.preset.settings.container_settings.mpd_settings.audio_duration #=> String, one of "DEFAULT_CODEC_DURATION", "MATCH_VIDEO_DURATION"
1826
1832
  # resp.preset.settings.container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
@@ -2679,7 +2685,7 @@ module Aws::MediaConvert
2679
2685
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.apply_font_color #=> String, one of "WHITE_TEXT_ONLY", "ALL_TEXT"
2680
2686
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_color #=> String, one of "NONE", "BLACK", "WHITE", "AUTO"
2681
2687
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_opacity #=> Integer
2682
- # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW"
2688
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW", "SPECIFIED_OPTIMAL"
2683
2689
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_x_coordinate #=> Integer
2684
2690
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_y_coordinate #=> Integer
2685
2691
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
@@ -2815,11 +2821,14 @@ module Aws::MediaConvert
2815
2821
  # resp.preset.settings.container_settings.mov_settings.padding_control #=> String, one of "OMNEON", "NONE"
2816
2822
  # resp.preset.settings.container_settings.mov_settings.reference #=> String, one of "SELF_CONTAINED", "EXTERNAL"
2817
2823
  # resp.preset.settings.container_settings.mp_4_settings.audio_duration #=> String, one of "DEFAULT_CODEC_DURATION", "MATCH_VIDEO_DURATION"
2824
+ # resp.preset.settings.container_settings.mp_4_settings.c2pa_manifest #=> String, one of "INCLUDE", "EXCLUDE"
2825
+ # resp.preset.settings.container_settings.mp_4_settings.certificate_secret #=> String
2818
2826
  # resp.preset.settings.container_settings.mp_4_settings.cslg_atom #=> String, one of "INCLUDE", "EXCLUDE"
2819
2827
  # resp.preset.settings.container_settings.mp_4_settings.ctts_version #=> Integer
2820
2828
  # resp.preset.settings.container_settings.mp_4_settings.free_space_box #=> String, one of "INCLUDE", "EXCLUDE"
2821
2829
  # resp.preset.settings.container_settings.mp_4_settings.moov_placement #=> String, one of "PROGRESSIVE_DOWNLOAD", "NORMAL"
2822
2830
  # resp.preset.settings.container_settings.mp_4_settings.mp_4_major_brand #=> String
2831
+ # resp.preset.settings.container_settings.mp_4_settings.signing_kms_key #=> String
2823
2832
  # resp.preset.settings.container_settings.mpd_settings.accessibility_caption_hints #=> String, one of "INCLUDE", "EXCLUDE"
2824
2833
  # resp.preset.settings.container_settings.mpd_settings.audio_duration #=> String, one of "DEFAULT_CODEC_DURATION", "MATCH_VIDEO_DURATION"
2825
2834
  # resp.preset.settings.container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
@@ -3546,7 +3555,7 @@ module Aws::MediaConvert
3546
3555
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.apply_font_color #=> String, one of "WHITE_TEXT_ONLY", "ALL_TEXT"
3547
3556
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_color #=> String, one of "NONE", "BLACK", "WHITE", "AUTO"
3548
3557
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_opacity #=> Integer
3549
- # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW"
3558
+ # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW", "SPECIFIED_OPTIMAL"
3550
3559
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_x_coordinate #=> Integer
3551
3560
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_y_coordinate #=> Integer
3552
3561
  # resp.presets[0].settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
@@ -3682,11 +3691,14 @@ module Aws::MediaConvert
3682
3691
  # resp.presets[0].settings.container_settings.mov_settings.padding_control #=> String, one of "OMNEON", "NONE"
3683
3692
  # resp.presets[0].settings.container_settings.mov_settings.reference #=> String, one of "SELF_CONTAINED", "EXTERNAL"
3684
3693
  # resp.presets[0].settings.container_settings.mp_4_settings.audio_duration #=> String, one of "DEFAULT_CODEC_DURATION", "MATCH_VIDEO_DURATION"
3694
+ # resp.presets[0].settings.container_settings.mp_4_settings.c2pa_manifest #=> String, one of "INCLUDE", "EXCLUDE"
3695
+ # resp.presets[0].settings.container_settings.mp_4_settings.certificate_secret #=> String
3685
3696
  # resp.presets[0].settings.container_settings.mp_4_settings.cslg_atom #=> String, one of "INCLUDE", "EXCLUDE"
3686
3697
  # resp.presets[0].settings.container_settings.mp_4_settings.ctts_version #=> Integer
3687
3698
  # resp.presets[0].settings.container_settings.mp_4_settings.free_space_box #=> String, one of "INCLUDE", "EXCLUDE"
3688
3699
  # resp.presets[0].settings.container_settings.mp_4_settings.moov_placement #=> String, one of "PROGRESSIVE_DOWNLOAD", "NORMAL"
3689
3700
  # resp.presets[0].settings.container_settings.mp_4_settings.mp_4_major_brand #=> String
3701
+ # resp.presets[0].settings.container_settings.mp_4_settings.signing_kms_key #=> String
3690
3702
  # resp.presets[0].settings.container_settings.mpd_settings.accessibility_caption_hints #=> String, one of "INCLUDE", "EXCLUDE"
3691
3703
  # resp.presets[0].settings.container_settings.mpd_settings.audio_duration #=> String, one of "DEFAULT_CODEC_DURATION", "MATCH_VIDEO_DURATION"
3692
3704
  # resp.presets[0].settings.container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
@@ -4702,7 +4714,7 @@ module Aws::MediaConvert
4702
4714
  # apply_font_color: "WHITE_TEXT_ONLY", # accepts WHITE_TEXT_ONLY, ALL_TEXT
4703
4715
  # background_color: "NONE", # accepts NONE, BLACK, WHITE, AUTO
4704
4716
  # background_opacity: 1,
4705
- # dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW
4717
+ # dds_handling: "NONE", # accepts NONE, SPECIFIED, NO_DISPLAY_WINDOW, SPECIFIED_OPTIMAL
4706
4718
  # dds_x_coordinate: 1,
4707
4719
  # dds_y_coordinate: 1,
4708
4720
  # fallback_font: "BEST_MATCH", # accepts BEST_MATCH, MONOSPACED_SANSSERIF, MONOSPACED_SERIF, PROPORTIONAL_SANSSERIF, PROPORTIONAL_SERIF
@@ -4872,11 +4884,14 @@ module Aws::MediaConvert
4872
4884
  # },
4873
4885
  # mp_4_settings: {
4874
4886
  # audio_duration: "DEFAULT_CODEC_DURATION", # accepts DEFAULT_CODEC_DURATION, MATCH_VIDEO_DURATION
4887
+ # c2pa_manifest: "INCLUDE", # accepts INCLUDE, EXCLUDE
4888
+ # certificate_secret: "__stringMin1Max2048PatternArnAZSecretsmanagerWD12SecretAZAZ09",
4875
4889
  # cslg_atom: "INCLUDE", # accepts INCLUDE, EXCLUDE
4876
4890
  # ctts_version: 1,
4877
4891
  # free_space_box: "INCLUDE", # accepts INCLUDE, EXCLUDE
4878
4892
  # moov_placement: "PROGRESSIVE_DOWNLOAD", # accepts PROGRESSIVE_DOWNLOAD, NORMAL
4879
4893
  # mp_4_major_brand: "__string",
4894
+ # signing_kms_key: "__stringMin1PatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912MrkAFAF0932",
4880
4895
  # },
4881
4896
  # mpd_settings: {
4882
4897
  # accessibility_caption_hints: "INCLUDE", # accepts INCLUDE, EXCLUDE
@@ -5487,7 +5502,7 @@ module Aws::MediaConvert
5487
5502
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.apply_font_color #=> String, one of "WHITE_TEXT_ONLY", "ALL_TEXT"
5488
5503
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_color #=> String, one of "NONE", "BLACK", "WHITE", "AUTO"
5489
5504
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.background_opacity #=> Integer
5490
- # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW"
5505
+ # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_handling #=> String, one of "NONE", "SPECIFIED", "NO_DISPLAY_WINDOW", "SPECIFIED_OPTIMAL"
5491
5506
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_x_coordinate #=> Integer
5492
5507
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.dds_y_coordinate #=> Integer
5493
5508
  # resp.preset.settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.fallback_font #=> String, one of "BEST_MATCH", "MONOSPACED_SANSSERIF", "MONOSPACED_SERIF", "PROPORTIONAL_SANSSERIF", "PROPORTIONAL_SERIF"
@@ -5623,11 +5638,14 @@ module Aws::MediaConvert
5623
5638
  # resp.preset.settings.container_settings.mov_settings.padding_control #=> String, one of "OMNEON", "NONE"
5624
5639
  # resp.preset.settings.container_settings.mov_settings.reference #=> String, one of "SELF_CONTAINED", "EXTERNAL"
5625
5640
  # resp.preset.settings.container_settings.mp_4_settings.audio_duration #=> String, one of "DEFAULT_CODEC_DURATION", "MATCH_VIDEO_DURATION"
5641
+ # resp.preset.settings.container_settings.mp_4_settings.c2pa_manifest #=> String, one of "INCLUDE", "EXCLUDE"
5642
+ # resp.preset.settings.container_settings.mp_4_settings.certificate_secret #=> String
5626
5643
  # resp.preset.settings.container_settings.mp_4_settings.cslg_atom #=> String, one of "INCLUDE", "EXCLUDE"
5627
5644
  # resp.preset.settings.container_settings.mp_4_settings.ctts_version #=> Integer
5628
5645
  # resp.preset.settings.container_settings.mp_4_settings.free_space_box #=> String, one of "INCLUDE", "EXCLUDE"
5629
5646
  # resp.preset.settings.container_settings.mp_4_settings.moov_placement #=> String, one of "PROGRESSIVE_DOWNLOAD", "NORMAL"
5630
5647
  # resp.preset.settings.container_settings.mp_4_settings.mp_4_major_brand #=> String
5648
+ # resp.preset.settings.container_settings.mp_4_settings.signing_kms_key #=> String
5631
5649
  # resp.preset.settings.container_settings.mpd_settings.accessibility_caption_hints #=> String, one of "INCLUDE", "EXCLUDE"
5632
5650
  # resp.preset.settings.container_settings.mpd_settings.audio_duration #=> String, one of "DEFAULT_CODEC_DURATION", "MATCH_VIDEO_DURATION"
5633
5651
  # resp.preset.settings.container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
@@ -6104,7 +6122,7 @@ module Aws::MediaConvert
6104
6122
  tracer: tracer
6105
6123
  )
6106
6124
  context[:gem_name] = 'aws-sdk-mediaconvert'
6107
- context[:gem_version] = '1.160.0'
6125
+ context[:gem_version] = '1.162.0'
6108
6126
  Seahorse::Client::Request.new(handlers, context)
6109
6127
  end
6110
6128
 
@@ -484,6 +484,7 @@ module Aws::MediaConvert
484
484
  Mp2Settings = Shapes::StructureShape.new(name: 'Mp2Settings')
485
485
  Mp3RateControlMode = Shapes::StringShape.new(name: 'Mp3RateControlMode')
486
486
  Mp3Settings = Shapes::StructureShape.new(name: 'Mp3Settings')
487
+ Mp4C2paManifest = Shapes::StringShape.new(name: 'Mp4C2paManifest')
487
488
  Mp4CslgAtom = Shapes::StringShape.new(name: 'Mp4CslgAtom')
488
489
  Mp4FreeSpaceBox = Shapes::StringShape.new(name: 'Mp4FreeSpaceBox')
489
490
  Mp4MoovPlacement = Shapes::StringShape.new(name: 'Mp4MoovPlacement')
@@ -920,6 +921,7 @@ module Aws::MediaConvert
920
921
  __stringMin1Max256 = Shapes::StringShape.new(name: '__stringMin1Max256')
921
922
  __stringMin1Max50 = Shapes::StringShape.new(name: '__stringMin1Max50')
922
923
  __stringMin1Max50PatternAZAZ09 = Shapes::StringShape.new(name: '__stringMin1Max50PatternAZAZ09')
924
+ __stringMin1PatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912MrkAFAF0932 = Shapes::StringShape.new(name: '__stringMin1PatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912MrkAFAF0932')
923
925
  __stringMin24Max512PatternAZaZ0902 = Shapes::StringShape.new(name: '__stringMin24Max512PatternAZaZ0902')
924
926
  __stringMin32Max32Pattern09aFAF32 = Shapes::StringShape.new(name: '__stringMin32Max32Pattern09aFAF32')
925
927
  __stringMin36Max36Pattern09aFAF809aFAF409aFAF409aFAF409aFAF12 = Shapes::StringShape.new(name: '__stringMin36Max36Pattern09aFAF809aFAF409aFAF409aFAF409aFAF12')
@@ -2266,11 +2268,14 @@ module Aws::MediaConvert
2266
2268
  Mp3Settings.struct_class = Types::Mp3Settings
2267
2269
 
2268
2270
  Mp4Settings.add_member(:audio_duration, Shapes::ShapeRef.new(shape: CmfcAudioDuration, location_name: "audioDuration"))
2271
+ Mp4Settings.add_member(:c2pa_manifest, Shapes::ShapeRef.new(shape: Mp4C2paManifest, location_name: "c2paManifest"))
2272
+ Mp4Settings.add_member(:certificate_secret, Shapes::ShapeRef.new(shape: __stringMin1Max2048PatternArnAZSecretsmanagerWD12SecretAZAZ09, location_name: "certificateSecret"))
2269
2273
  Mp4Settings.add_member(:cslg_atom, Shapes::ShapeRef.new(shape: Mp4CslgAtom, location_name: "cslgAtom"))
2270
2274
  Mp4Settings.add_member(:ctts_version, Shapes::ShapeRef.new(shape: __integerMin0Max1, location_name: "cttsVersion"))
2271
2275
  Mp4Settings.add_member(:free_space_box, Shapes::ShapeRef.new(shape: Mp4FreeSpaceBox, location_name: "freeSpaceBox"))
2272
2276
  Mp4Settings.add_member(:moov_placement, Shapes::ShapeRef.new(shape: Mp4MoovPlacement, location_name: "moovPlacement"))
2273
2277
  Mp4Settings.add_member(:mp_4_major_brand, Shapes::ShapeRef.new(shape: __string, location_name: "mp4MajorBrand"))
2278
+ Mp4Settings.add_member(:signing_kms_key, Shapes::ShapeRef.new(shape: __stringMin1PatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912MrkAFAF0932, location_name: "signingKmsKey"))
2274
2279
  Mp4Settings.struct_class = Types::Mp4Settings
2275
2280
 
2276
2281
  MpdSettings.add_member(:accessibility_caption_hints, Shapes::ShapeRef.new(shape: MpdAccessibilityCaptionHints, location_name: "accessibilityCaptionHints"))
@@ -813,7 +813,21 @@ module Aws::MediaConvert
813
813
  # @return [Types::RemixSettings]
814
814
  #
815
815
  # @!attribute [rw] selector_type
816
- # Specifies the type of the audio selector.
816
+ # Specify how MediaConvert selects audio content within your input.
817
+ # The default is Track. PID: Select audio by specifying the Packet
818
+ # Identifier (PID) values for MPEG Transport Stream inputs. Use this
819
+ # when you know the exact PID values of your audio streams. Track:
820
+ # Default. Select audio by track number. This is the most common
821
+ # option and works with most input container formats. Language code:
822
+ # Select audio by language using ISO 639-2 or ISO 639-3 three-letter
823
+ # language codes. Use this when your source has embedded language
824
+ # metadata and you want to select tracks based on their language. HLS
825
+ # rendition group: Select audio from an HLS rendition group. Use this
826
+ # when your input is an HLS package with multiple audio renditions and
827
+ # you want to select specific rendition groups. All PCM: Select all
828
+ # uncompressed PCM audio tracks from your input automatically. This is
829
+ # useful when you want to include all PCM audio tracks without
830
+ # specifying individual track numbers.
817
831
  # @return [String]
818
832
  #
819
833
  # @!attribute [rw] tracks
@@ -4233,7 +4247,14 @@ module Aws::MediaConvert
4233
4247
  # (PCS) with DDS x-coordinate and DDS y-coordinate. For video
4234
4248
  # resolutions with a height of 576 pixels or less, MediaConvert
4235
4249
  # doesn't include the DDS, regardless of the value you choose for DDS
4236
- # handling. All burn-in and DVB-Sub font settings must match.
4250
+ # handling. All burn-in and DVB-Sub font settings must match. To
4251
+ # include the DDS, with optimized subtitle placement and reduced data
4252
+ # overhead: We recommend that you choose Specified (optimal). This
4253
+ # option provides the same visual positioning as Specified while using
4254
+ # less bandwidth. This also supports resolutions higher than 1080p
4255
+ # while maintaining full DVB-Sub compatibility. When you do, also
4256
+ # specify the offset coordinates of the display window with DDS
4257
+ # x-coordinate and DDS y-coordinate.
4237
4258
  # @return [String]
4238
4259
  #
4239
4260
  # @!attribute [rw] dds_x_coordinate
@@ -10364,6 +10385,23 @@ module Aws::MediaConvert
10364
10385
  # output audio codec.
10365
10386
  # @return [String]
10366
10387
  #
10388
+ # @!attribute [rw] c2pa_manifest
10389
+ # When enabled, a C2PA compliant manifest will be generated, signed
10390
+ # and embeded in the output. For more information on C2PA, see
10391
+ # https://c2pa.org/specifications/specifications/2.1/index.html
10392
+ # @return [String]
10393
+ #
10394
+ # @!attribute [rw] certificate_secret
10395
+ # Specify the name or ARN of the AWS Secrets Manager secret that
10396
+ # contains your C2PA public certificate chain in PEM format. Provide a
10397
+ # valid secret name or ARN. Note that your MediaConvert service role
10398
+ # must allow access to this secret. The public certificate chain is
10399
+ # added to the COSE header (x5chain) for signature validation. Include
10400
+ # the signer's certificate and all intermediate certificates. Do not
10401
+ # include the root certificate. For details on COSE, see:
10402
+ # https://opensource.contentauthenticity.org/docs/manifest/signing-manifests
10403
+ # @return [String]
10404
+ #
10367
10405
  # @!attribute [rw] cslg_atom
10368
10406
  # When enabled, file composition times will start at zero, composition
10369
10407
  # times in the 'ctts' (composition time to sample) box for B-frames
@@ -10398,15 +10436,24 @@ module Aws::MediaConvert
10398
10436
  # necessary to specify.
10399
10437
  # @return [String]
10400
10438
  #
10439
+ # @!attribute [rw] signing_kms_key
10440
+ # Specify the ID or ARN of the AWS KMS key used to sign the C2PA
10441
+ # manifest in your MP4 output. Provide a valid KMS key ARN. Note that
10442
+ # your MediaConvert service role must allow access to this key.
10443
+ # @return [String]
10444
+ #
10401
10445
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Mp4Settings AWS API Documentation
10402
10446
  #
10403
10447
  class Mp4Settings < Struct.new(
10404
10448
  :audio_duration,
10449
+ :c2pa_manifest,
10450
+ :certificate_secret,
10405
10451
  :cslg_atom,
10406
10452
  :ctts_version,
10407
10453
  :free_space_box,
10408
10454
  :moov_placement,
10409
- :mp_4_major_brand)
10455
+ :mp_4_major_brand,
10456
+ :signing_kms_key)
10410
10457
  SENSITIVE = []
10411
10458
  include Aws::Structure
10412
10459
  end
@@ -54,7 +54,7 @@ module Aws::MediaConvert
54
54
  autoload :EndpointProvider, 'aws-sdk-mediaconvert/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-mediaconvert/endpoints'
56
56
 
57
- GEM_VERSION = '1.160.0'
57
+ GEM_VERSION = '1.162.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -923,7 +923,7 @@ module Aws
923
923
  apply_font_color: ("WHITE_TEXT_ONLY" | "ALL_TEXT")?,
924
924
  background_color: ("NONE" | "BLACK" | "WHITE" | "AUTO")?,
925
925
  background_opacity: ::Integer?,
926
- dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW")?,
926
+ dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW" | "SPECIFIED_OPTIMAL")?,
927
927
  dds_x_coordinate: ::Integer?,
928
928
  dds_y_coordinate: ::Integer?,
929
929
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
@@ -1093,11 +1093,14 @@ module Aws
1093
1093
  }?,
1094
1094
  mp_4_settings: {
1095
1095
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
1096
+ c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
1097
+ certificate_secret: ::String?,
1096
1098
  cslg_atom: ("INCLUDE" | "EXCLUDE")?,
1097
1099
  ctts_version: ::Integer?,
1098
1100
  free_space_box: ("INCLUDE" | "EXCLUDE")?,
1099
1101
  moov_placement: ("PROGRESSIVE_DOWNLOAD" | "NORMAL")?,
1100
- mp_4_major_brand: ::String?
1102
+ mp_4_major_brand: ::String?,
1103
+ signing_kms_key: ::String?
1101
1104
  }?,
1102
1105
  mpd_settings: {
1103
1106
  accessibility_caption_hints: ("INCLUDE" | "EXCLUDE")?,
@@ -2406,7 +2409,7 @@ module Aws
2406
2409
  apply_font_color: ("WHITE_TEXT_ONLY" | "ALL_TEXT")?,
2407
2410
  background_color: ("NONE" | "BLACK" | "WHITE" | "AUTO")?,
2408
2411
  background_opacity: ::Integer?,
2409
- dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW")?,
2412
+ dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW" | "SPECIFIED_OPTIMAL")?,
2410
2413
  dds_x_coordinate: ::Integer?,
2411
2414
  dds_y_coordinate: ::Integer?,
2412
2415
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
@@ -2576,11 +2579,14 @@ module Aws
2576
2579
  }?,
2577
2580
  mp_4_settings: {
2578
2581
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
2582
+ c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
2583
+ certificate_secret: ::String?,
2579
2584
  cslg_atom: ("INCLUDE" | "EXCLUDE")?,
2580
2585
  ctts_version: ::Integer?,
2581
2586
  free_space_box: ("INCLUDE" | "EXCLUDE")?,
2582
2587
  moov_placement: ("PROGRESSIVE_DOWNLOAD" | "NORMAL")?,
2583
- mp_4_major_brand: ::String?
2588
+ mp_4_major_brand: ::String?,
2589
+ signing_kms_key: ::String?
2584
2590
  }?,
2585
2591
  mpd_settings: {
2586
2592
  accessibility_caption_hints: ("INCLUDE" | "EXCLUDE")?,
@@ -3268,7 +3274,7 @@ module Aws
3268
3274
  apply_font_color: ("WHITE_TEXT_ONLY" | "ALL_TEXT")?,
3269
3275
  background_color: ("NONE" | "BLACK" | "WHITE" | "AUTO")?,
3270
3276
  background_opacity: ::Integer?,
3271
- dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW")?,
3277
+ dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW" | "SPECIFIED_OPTIMAL")?,
3272
3278
  dds_x_coordinate: ::Integer?,
3273
3279
  dds_y_coordinate: ::Integer?,
3274
3280
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
@@ -3438,11 +3444,14 @@ module Aws
3438
3444
  }?,
3439
3445
  mp_4_settings: {
3440
3446
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
3447
+ c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
3448
+ certificate_secret: ::String?,
3441
3449
  cslg_atom: ("INCLUDE" | "EXCLUDE")?,
3442
3450
  ctts_version: ::Integer?,
3443
3451
  free_space_box: ("INCLUDE" | "EXCLUDE")?,
3444
3452
  moov_placement: ("PROGRESSIVE_DOWNLOAD" | "NORMAL")?,
3445
- mp_4_major_brand: ::String?
3453
+ mp_4_major_brand: ::String?,
3454
+ signing_kms_key: ::String?
3446
3455
  }?,
3447
3456
  mpd_settings: {
3448
3457
  accessibility_caption_hints: ("INCLUDE" | "EXCLUDE")?,
@@ -4989,7 +4998,7 @@ module Aws
4989
4998
  apply_font_color: ("WHITE_TEXT_ONLY" | "ALL_TEXT")?,
4990
4999
  background_color: ("NONE" | "BLACK" | "WHITE" | "AUTO")?,
4991
5000
  background_opacity: ::Integer?,
4992
- dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW")?,
5001
+ dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW" | "SPECIFIED_OPTIMAL")?,
4993
5002
  dds_x_coordinate: ::Integer?,
4994
5003
  dds_y_coordinate: ::Integer?,
4995
5004
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
@@ -5159,11 +5168,14 @@ module Aws
5159
5168
  }?,
5160
5169
  mp_4_settings: {
5161
5170
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
5171
+ c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
5172
+ certificate_secret: ::String?,
5162
5173
  cslg_atom: ("INCLUDE" | "EXCLUDE")?,
5163
5174
  ctts_version: ::Integer?,
5164
5175
  free_space_box: ("INCLUDE" | "EXCLUDE")?,
5165
5176
  moov_placement: ("PROGRESSIVE_DOWNLOAD" | "NORMAL")?,
5166
- mp_4_major_brand: ::String?
5177
+ mp_4_major_brand: ::String?,
5178
+ signing_kms_key: ::String?
5167
5179
  }?,
5168
5180
  mpd_settings: {
5169
5181
  accessibility_caption_hints: ("INCLUDE" | "EXCLUDE")?,
@@ -5850,7 +5862,7 @@ module Aws
5850
5862
  apply_font_color: ("WHITE_TEXT_ONLY" | "ALL_TEXT")?,
5851
5863
  background_color: ("NONE" | "BLACK" | "WHITE" | "AUTO")?,
5852
5864
  background_opacity: ::Integer?,
5853
- dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW")?,
5865
+ dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW" | "SPECIFIED_OPTIMAL")?,
5854
5866
  dds_x_coordinate: ::Integer?,
5855
5867
  dds_y_coordinate: ::Integer?,
5856
5868
  fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")?,
@@ -6020,11 +6032,14 @@ module Aws
6020
6032
  }?,
6021
6033
  mp_4_settings: {
6022
6034
  audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")?,
6035
+ c2pa_manifest: ("INCLUDE" | "EXCLUDE")?,
6036
+ certificate_secret: ::String?,
6023
6037
  cslg_atom: ("INCLUDE" | "EXCLUDE")?,
6024
6038
  ctts_version: ::Integer?,
6025
6039
  free_space_box: ("INCLUDE" | "EXCLUDE")?,
6026
6040
  moov_placement: ("PROGRESSIVE_DOWNLOAD" | "NORMAL")?,
6027
- mp_4_major_brand: ::String?
6041
+ mp_4_major_brand: ::String?,
6042
+ signing_kms_key: ::String?
6028
6043
  }?,
6029
6044
  mpd_settings: {
6030
6045
  accessibility_caption_hints: ("INCLUDE" | "EXCLUDE")?,
data/sig/types.rbs CHANGED
@@ -692,7 +692,7 @@ module Aws::MediaConvert
692
692
  attr_accessor apply_font_color: ("WHITE_TEXT_ONLY" | "ALL_TEXT")
693
693
  attr_accessor background_color: ("NONE" | "BLACK" | "WHITE" | "AUTO")
694
694
  attr_accessor background_opacity: ::Integer
695
- attr_accessor dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW")
695
+ attr_accessor dds_handling: ("NONE" | "SPECIFIED" | "NO_DISPLAY_WINDOW" | "SPECIFIED_OPTIMAL")
696
696
  attr_accessor dds_x_coordinate: ::Integer
697
697
  attr_accessor dds_y_coordinate: ::Integer
698
698
  attr_accessor fallback_font: ("BEST_MATCH" | "MONOSPACED_SANSSERIF" | "MONOSPACED_SERIF" | "PROPORTIONAL_SANSSERIF" | "PROPORTIONAL_SERIF")
@@ -1644,11 +1644,14 @@ module Aws::MediaConvert
1644
1644
 
1645
1645
  class Mp4Settings
1646
1646
  attr_accessor audio_duration: ("DEFAULT_CODEC_DURATION" | "MATCH_VIDEO_DURATION")
1647
+ attr_accessor c2pa_manifest: ("INCLUDE" | "EXCLUDE")
1648
+ attr_accessor certificate_secret: ::String
1647
1649
  attr_accessor cslg_atom: ("INCLUDE" | "EXCLUDE")
1648
1650
  attr_accessor ctts_version: ::Integer
1649
1651
  attr_accessor free_space_box: ("INCLUDE" | "EXCLUDE")
1650
1652
  attr_accessor moov_placement: ("PROGRESSIVE_DOWNLOAD" | "NORMAL")
1651
1653
  attr_accessor mp_4_major_brand: ::String
1654
+ attr_accessor signing_kms_key: ::String
1652
1655
  SENSITIVE: []
1653
1656
  end
1654
1657
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconvert
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.160.0
4
+ version: 1.162.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services