aws-sdk-mediaconvert 1.136.0 → 1.138.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: 92c4770f585c4280d567c3ab5bb93fa4a641ea5ce488a48ff801537affa624bd
4
- data.tar.gz: cd2a20477b7204f7773506bf35c103086ea51bd9e24c0b29ec78df220aea9ddc
3
+ metadata.gz: 1734b6a0a35278c30a832055df1feff5d81de5017924982536dc22b8a2509d8a
4
+ data.tar.gz: 2153edfcd62bf6cc2dc50667f44120638d9b31c672e536e6d15719c4d45e6b64
5
5
  SHA512:
6
- metadata.gz: c9041d4c97507492e06d217324ef45c5aee28cc786c6e237a7c7ee91474cddfe4d65329151ea65e08f3e511db74b8d71f0e59318f670c2eb4021282cbc5378f4
7
- data.tar.gz: 82858a7d2637a542fa84a4d3340fd36e5e3dce29b71c72d6301f1ed4bf808c431d2dbbb934371203ff1421c17ae040d62cc52922654ef281dced2baefb0efcb0
6
+ metadata.gz: 52bb57d20182b69265edbd4c1fc4edbd943b47dc2959034de80098c8740bc3253a7c1aa8cb424167b2170e958e382e73d11096a6de47f104cd7856d2e6850912
7
+ data.tar.gz: 8838391fca3706e0f3974de7c73521587f23c29b9aa51d0ed39e05c112da58bb95c9abe637ebccbc754c7dc782ef778ca4c1bb6f95538e086b91dab6aeb5df8b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.138.0 (2024-09-12)
5
+ ------------------
6
+
7
+ * Feature - This release includes support for dynamic video overlay workflows, including picture-in-picture and squeezeback
8
+
9
+ 1.137.0 (2024-09-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.136.0 (2024-09-10)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.136.0
1
+ 1.138.0
@@ -519,6 +519,13 @@ module Aws::MediaConvert
519
519
  # before hopping. For more information about this feature, see the AWS
520
520
  # Elemental MediaConvert User Guide.
521
521
  #
522
+ # @option params [String] :job_engine_version
523
+ # Use Job engine versions to run jobs for your production workflow on
524
+ # one version, while you test and validate the latest version. To
525
+ # specify a Job engine version: Enter a date in a YYYY-MM-DD format. For
526
+ # a list of valid Job engine versions, submit a ListVersions request. To
527
+ # not specify a Job engine version: Leave blank.
528
+ #
522
529
  # @option params [String] :job_template
523
530
  # Optional. When you create a job, you can either specify a job template
524
531
  # or specify the transcoding settings individually.
@@ -935,7 +942,7 @@ module Aws::MediaConvert
935
942
  # timed_metadata_scheme_id_uri: "__stringMax1000",
936
943
  # timed_metadata_value: "__stringMax1000",
937
944
  # },
938
- # container: "F4V", # accepts F4V, ISMV, M2TS, M3U8, CMFC, MOV, MP4, MPD, MXF, WEBM, RAW, Y4M
945
+ # container: "F4V", # accepts F4V, ISMV, M2TS, M3U8, CMFC, MOV, MP4, MPD, MXF, OGG, WEBM, RAW, Y4M
939
946
  # f4v_settings: {
940
947
  # moov_placement: "PROGRESSIVE_DOWNLOAD", # accepts PROGRESSIVE_DOWNLOAD, NORMAL
941
948
  # },
@@ -1141,6 +1148,7 @@ module Aws::MediaConvert
1141
1148
  # },
1142
1149
  # rate_control_mode: "VBR", # accepts VBR, CBR, QVBR
1143
1150
  # repeat_pps: "DISABLED", # accepts DISABLED, ENABLED
1151
+ # saliency_aware_encoding: "DISABLED", # accepts DISABLED, PREFERRED
1144
1152
  # scan_type_conversion_mode: "INTERLACED", # accepts INTERLACED, INTERLACED_OPTIMIZE
1145
1153
  # scene_change_detect: "DISABLED", # accepts DISABLED, ENABLED, TRANSITION_DETECTION
1146
1154
  # slices: 1,
@@ -1682,7 +1690,7 @@ module Aws::MediaConvert
1682
1690
  # resp.preset.settings.container_settings.cmfc_settings.timed_metadata_box_version #=> String, one of "VERSION_0", "VERSION_1"
1683
1691
  # resp.preset.settings.container_settings.cmfc_settings.timed_metadata_scheme_id_uri #=> String
1684
1692
  # resp.preset.settings.container_settings.cmfc_settings.timed_metadata_value #=> String
1685
- # resp.preset.settings.container_settings.container #=> String, one of "F4V", "ISMV", "M2TS", "M3U8", "CMFC", "MOV", "MP4", "MPD", "MXF", "WEBM", "RAW", "Y4M"
1693
+ # resp.preset.settings.container_settings.container #=> String, one of "F4V", "ISMV", "M2TS", "M3U8", "CMFC", "MOV", "MP4", "MPD", "MXF", "OGG", "WEBM", "RAW", "Y4M"
1686
1694
  # resp.preset.settings.container_settings.f4v_settings.moov_placement #=> String, one of "PROGRESSIVE_DOWNLOAD", "NORMAL"
1687
1695
  # resp.preset.settings.container_settings.m2ts_settings.audio_buffer_model #=> String, one of "DVB", "ATSC"
1688
1696
  # resp.preset.settings.container_settings.m2ts_settings.audio_duration #=> String, one of "DEFAULT_CODEC_DURATION", "MATCH_VIDEO_DURATION"
@@ -1849,6 +1857,7 @@ module Aws::MediaConvert
1849
1857
  # resp.preset.settings.video_description.codec_settings.h264_settings.qvbr_settings.qvbr_quality_level_fine_tune #=> Float
1850
1858
  # resp.preset.settings.video_description.codec_settings.h264_settings.rate_control_mode #=> String, one of "VBR", "CBR", "QVBR"
1851
1859
  # resp.preset.settings.video_description.codec_settings.h264_settings.repeat_pps #=> String, one of "DISABLED", "ENABLED"
1860
+ # resp.preset.settings.video_description.codec_settings.h264_settings.saliency_aware_encoding #=> String, one of "DISABLED", "PREFERRED"
1852
1861
  # resp.preset.settings.video_description.codec_settings.h264_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
1853
1862
  # resp.preset.settings.video_description.codec_settings.h264_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED", "TRANSITION_DETECTION"
1854
1863
  # resp.preset.settings.video_description.codec_settings.h264_settings.slices #=> Integer
@@ -2640,7 +2649,7 @@ module Aws::MediaConvert
2640
2649
  # resp.preset.settings.container_settings.cmfc_settings.timed_metadata_box_version #=> String, one of "VERSION_0", "VERSION_1"
2641
2650
  # resp.preset.settings.container_settings.cmfc_settings.timed_metadata_scheme_id_uri #=> String
2642
2651
  # resp.preset.settings.container_settings.cmfc_settings.timed_metadata_value #=> String
2643
- # resp.preset.settings.container_settings.container #=> String, one of "F4V", "ISMV", "M2TS", "M3U8", "CMFC", "MOV", "MP4", "MPD", "MXF", "WEBM", "RAW", "Y4M"
2652
+ # resp.preset.settings.container_settings.container #=> String, one of "F4V", "ISMV", "M2TS", "M3U8", "CMFC", "MOV", "MP4", "MPD", "MXF", "OGG", "WEBM", "RAW", "Y4M"
2644
2653
  # resp.preset.settings.container_settings.f4v_settings.moov_placement #=> String, one of "PROGRESSIVE_DOWNLOAD", "NORMAL"
2645
2654
  # resp.preset.settings.container_settings.m2ts_settings.audio_buffer_model #=> String, one of "DVB", "ATSC"
2646
2655
  # resp.preset.settings.container_settings.m2ts_settings.audio_duration #=> String, one of "DEFAULT_CODEC_DURATION", "MATCH_VIDEO_DURATION"
@@ -2807,6 +2816,7 @@ module Aws::MediaConvert
2807
2816
  # resp.preset.settings.video_description.codec_settings.h264_settings.qvbr_settings.qvbr_quality_level_fine_tune #=> Float
2808
2817
  # resp.preset.settings.video_description.codec_settings.h264_settings.rate_control_mode #=> String, one of "VBR", "CBR", "QVBR"
2809
2818
  # resp.preset.settings.video_description.codec_settings.h264_settings.repeat_pps #=> String, one of "DISABLED", "ENABLED"
2819
+ # resp.preset.settings.video_description.codec_settings.h264_settings.saliency_aware_encoding #=> String, one of "DISABLED", "PREFERRED"
2810
2820
  # resp.preset.settings.video_description.codec_settings.h264_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
2811
2821
  # resp.preset.settings.video_description.codec_settings.h264_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED", "TRANSITION_DETECTION"
2812
2822
  # resp.preset.settings.video_description.codec_settings.h264_settings.slices #=> Integer
@@ -3475,7 +3485,7 @@ module Aws::MediaConvert
3475
3485
  # resp.presets[0].settings.container_settings.cmfc_settings.timed_metadata_box_version #=> String, one of "VERSION_0", "VERSION_1"
3476
3486
  # resp.presets[0].settings.container_settings.cmfc_settings.timed_metadata_scheme_id_uri #=> String
3477
3487
  # resp.presets[0].settings.container_settings.cmfc_settings.timed_metadata_value #=> String
3478
- # resp.presets[0].settings.container_settings.container #=> String, one of "F4V", "ISMV", "M2TS", "M3U8", "CMFC", "MOV", "MP4", "MPD", "MXF", "WEBM", "RAW", "Y4M"
3488
+ # resp.presets[0].settings.container_settings.container #=> String, one of "F4V", "ISMV", "M2TS", "M3U8", "CMFC", "MOV", "MP4", "MPD", "MXF", "OGG", "WEBM", "RAW", "Y4M"
3479
3489
  # resp.presets[0].settings.container_settings.f4v_settings.moov_placement #=> String, one of "PROGRESSIVE_DOWNLOAD", "NORMAL"
3480
3490
  # resp.presets[0].settings.container_settings.m2ts_settings.audio_buffer_model #=> String, one of "DVB", "ATSC"
3481
3491
  # resp.presets[0].settings.container_settings.m2ts_settings.audio_duration #=> String, one of "DEFAULT_CODEC_DURATION", "MATCH_VIDEO_DURATION"
@@ -3642,6 +3652,7 @@ module Aws::MediaConvert
3642
3652
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.qvbr_settings.qvbr_quality_level_fine_tune #=> Float
3643
3653
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.rate_control_mode #=> String, one of "VBR", "CBR", "QVBR"
3644
3654
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.repeat_pps #=> String, one of "DISABLED", "ENABLED"
3655
+ # resp.presets[0].settings.video_description.codec_settings.h264_settings.saliency_aware_encoding #=> String, one of "DISABLED", "PREFERRED"
3645
3656
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
3646
3657
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED", "TRANSITION_DETECTION"
3647
3658
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.slices #=> Integer
@@ -4011,6 +4022,47 @@ module Aws::MediaConvert
4011
4022
  req.send_request(options)
4012
4023
  end
4013
4024
 
4025
+ # Retrieve a JSON array of all available Job engine versions and the
4026
+ # date they expire.
4027
+ #
4028
+ # @option params [Integer] :max_results
4029
+ # Optional. Number of valid Job engine versions, up to twenty, that will
4030
+ # be returned at one time.
4031
+ #
4032
+ # @option params [String] :next_token
4033
+ # Optional. Use this string, provided with the response to a previous
4034
+ # request, to request the next batch of Job engine versions.
4035
+ #
4036
+ # @return [Types::ListVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4037
+ #
4038
+ # * {Types::ListVersionsResponse#next_token #next_token} => String
4039
+ # * {Types::ListVersionsResponse#versions #versions} => Array<Types::JobEngineVersion>
4040
+ #
4041
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4042
+ #
4043
+ # @example Request syntax with placeholder values
4044
+ #
4045
+ # resp = client.list_versions({
4046
+ # max_results: 1,
4047
+ # next_token: "__string",
4048
+ # })
4049
+ #
4050
+ # @example Response structure
4051
+ #
4052
+ # resp.next_token #=> String
4053
+ # resp.versions #=> Array
4054
+ # resp.versions[0].expiration_date #=> Time
4055
+ # resp.versions[0].version #=> String
4056
+ #
4057
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ListVersions AWS API Documentation
4058
+ #
4059
+ # @overload list_versions(params = {})
4060
+ # @param [Hash] params ({})
4061
+ def list_versions(params = {}, options = {})
4062
+ req = build_request(:list_versions, params)
4063
+ req.send_request(options)
4064
+ end
4065
+
4014
4066
  # Create or change your policy. For more information about policies, see
4015
4067
  # the user guide at
4016
4068
  # http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
@@ -4503,7 +4555,7 @@ module Aws::MediaConvert
4503
4555
  # timed_metadata_scheme_id_uri: "__stringMax1000",
4504
4556
  # timed_metadata_value: "__stringMax1000",
4505
4557
  # },
4506
- # container: "F4V", # accepts F4V, ISMV, M2TS, M3U8, CMFC, MOV, MP4, MPD, MXF, WEBM, RAW, Y4M
4558
+ # container: "F4V", # accepts F4V, ISMV, M2TS, M3U8, CMFC, MOV, MP4, MPD, MXF, OGG, WEBM, RAW, Y4M
4507
4559
  # f4v_settings: {
4508
4560
  # moov_placement: "PROGRESSIVE_DOWNLOAD", # accepts PROGRESSIVE_DOWNLOAD, NORMAL
4509
4561
  # },
@@ -4709,6 +4761,7 @@ module Aws::MediaConvert
4709
4761
  # },
4710
4762
  # rate_control_mode: "VBR", # accepts VBR, CBR, QVBR
4711
4763
  # repeat_pps: "DISABLED", # accepts DISABLED, ENABLED
4764
+ # saliency_aware_encoding: "DISABLED", # accepts DISABLED, PREFERRED
4712
4765
  # scan_type_conversion_mode: "INTERLACED", # accepts INTERLACED, INTERLACED_OPTIMIZE
4713
4766
  # scene_change_detect: "DISABLED", # accepts DISABLED, ENABLED, TRANSITION_DETECTION
4714
4767
  # slices: 1,
@@ -5247,7 +5300,7 @@ module Aws::MediaConvert
5247
5300
  # resp.preset.settings.container_settings.cmfc_settings.timed_metadata_box_version #=> String, one of "VERSION_0", "VERSION_1"
5248
5301
  # resp.preset.settings.container_settings.cmfc_settings.timed_metadata_scheme_id_uri #=> String
5249
5302
  # resp.preset.settings.container_settings.cmfc_settings.timed_metadata_value #=> String
5250
- # resp.preset.settings.container_settings.container #=> String, one of "F4V", "ISMV", "M2TS", "M3U8", "CMFC", "MOV", "MP4", "MPD", "MXF", "WEBM", "RAW", "Y4M"
5303
+ # resp.preset.settings.container_settings.container #=> String, one of "F4V", "ISMV", "M2TS", "M3U8", "CMFC", "MOV", "MP4", "MPD", "MXF", "OGG", "WEBM", "RAW", "Y4M"
5251
5304
  # resp.preset.settings.container_settings.f4v_settings.moov_placement #=> String, one of "PROGRESSIVE_DOWNLOAD", "NORMAL"
5252
5305
  # resp.preset.settings.container_settings.m2ts_settings.audio_buffer_model #=> String, one of "DVB", "ATSC"
5253
5306
  # resp.preset.settings.container_settings.m2ts_settings.audio_duration #=> String, one of "DEFAULT_CODEC_DURATION", "MATCH_VIDEO_DURATION"
@@ -5414,6 +5467,7 @@ module Aws::MediaConvert
5414
5467
  # resp.preset.settings.video_description.codec_settings.h264_settings.qvbr_settings.qvbr_quality_level_fine_tune #=> Float
5415
5468
  # resp.preset.settings.video_description.codec_settings.h264_settings.rate_control_mode #=> String, one of "VBR", "CBR", "QVBR"
5416
5469
  # resp.preset.settings.video_description.codec_settings.h264_settings.repeat_pps #=> String, one of "DISABLED", "ENABLED"
5470
+ # resp.preset.settings.video_description.codec_settings.h264_settings.saliency_aware_encoding #=> String, one of "DISABLED", "PREFERRED"
5417
5471
  # resp.preset.settings.video_description.codec_settings.h264_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
5418
5472
  # resp.preset.settings.video_description.codec_settings.h264_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED", "TRANSITION_DETECTION"
5419
5473
  # resp.preset.settings.video_description.codec_settings.h264_settings.slices #=> Integer
@@ -5769,7 +5823,7 @@ module Aws::MediaConvert
5769
5823
  tracer: tracer
5770
5824
  )
5771
5825
  context[:gem_name] = 'aws-sdk-mediaconvert'
5772
- context[:gem_version] = '1.136.0'
5826
+ context[:gem_version] = '1.138.0'
5773
5827
  Seahorse::Client::Request.new(handlers, context)
5774
5828
  end
5775
5829
 
@@ -108,6 +108,7 @@ module Aws::MediaConvert
108
108
  CaptionDestinationSettings = Shapes::StructureShape.new(name: 'CaptionDestinationSettings')
109
109
  CaptionDestinationType = Shapes::StringShape.new(name: 'CaptionDestinationType')
110
110
  CaptionSelector = Shapes::StructureShape.new(name: 'CaptionSelector')
111
+ CaptionSourceByteRateLimit = Shapes::StringShape.new(name: 'CaptionSourceByteRateLimit')
111
112
  CaptionSourceConvertPaintOnToPopOn = Shapes::StringShape.new(name: 'CaptionSourceConvertPaintOnToPopOn')
112
113
  CaptionSourceFramerate = Shapes::StructureShape.new(name: 'CaptionSourceFramerate')
113
114
  CaptionSourceSettings = Shapes::StructureShape.new(name: 'CaptionSourceSettings')
@@ -302,6 +303,7 @@ module Aws::MediaConvert
302
303
  H264QvbrSettings = Shapes::StructureShape.new(name: 'H264QvbrSettings')
303
304
  H264RateControlMode = Shapes::StringShape.new(name: 'H264RateControlMode')
304
305
  H264RepeatPps = Shapes::StringShape.new(name: 'H264RepeatPps')
306
+ H264SaliencyAwareEncoding = Shapes::StringShape.new(name: 'H264SaliencyAwareEncoding')
305
307
  H264ScanTypeConversionMode = Shapes::StringShape.new(name: 'H264ScanTypeConversionMode')
306
308
  H264SceneChangeDetect = Shapes::StringShape.new(name: 'H264SceneChangeDetect')
307
309
  H264Settings = Shapes::StructureShape.new(name: 'H264Settings')
@@ -399,6 +401,7 @@ module Aws::MediaConvert
399
401
  InsertableImage = Shapes::StructureShape.new(name: 'InsertableImage')
400
402
  InternalServerErrorException = Shapes::StructureShape.new(name: 'InternalServerErrorException')
401
403
  Job = Shapes::StructureShape.new(name: 'Job')
404
+ JobEngineVersion = Shapes::StructureShape.new(name: 'JobEngineVersion')
402
405
  JobMessages = Shapes::StructureShape.new(name: 'JobMessages')
403
406
  JobPhase = Shapes::StringShape.new(name: 'JobPhase')
404
407
  JobSettings = Shapes::StructureShape.new(name: 'JobSettings')
@@ -418,6 +421,8 @@ module Aws::MediaConvert
418
421
  ListQueuesResponse = Shapes::StructureShape.new(name: 'ListQueuesResponse')
419
422
  ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
420
423
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
424
+ ListVersionsRequest = Shapes::StructureShape.new(name: 'ListVersionsRequest')
425
+ ListVersionsResponse = Shapes::StructureShape.new(name: 'ListVersionsResponse')
421
426
  M2tsAudioBufferModel = Shapes::StringShape.new(name: 'M2tsAudioBufferModel')
422
427
  M2tsAudioDuration = Shapes::StringShape.new(name: 'M2tsAudioDuration')
423
428
  M2tsBufferModel = Shapes::StringShape.new(name: 'M2tsBufferModel')
@@ -630,6 +635,10 @@ module Aws::MediaConvert
630
635
  VideoOverlay = Shapes::StructureShape.new(name: 'VideoOverlay')
631
636
  VideoOverlayInput = Shapes::StructureShape.new(name: 'VideoOverlayInput')
632
637
  VideoOverlayInputClipping = Shapes::StructureShape.new(name: 'VideoOverlayInputClipping')
638
+ VideoOverlayPlayBackMode = Shapes::StringShape.new(name: 'VideoOverlayPlayBackMode')
639
+ VideoOverlayPosition = Shapes::StructureShape.new(name: 'VideoOverlayPosition')
640
+ VideoOverlayTransition = Shapes::StructureShape.new(name: 'VideoOverlayTransition')
641
+ VideoOverlayUnit = Shapes::StringShape.new(name: 'VideoOverlayUnit')
633
642
  VideoPreprocessor = Shapes::StructureShape.new(name: 'VideoPreprocessor')
634
643
  VideoSelector = Shapes::StructureShape.new(name: 'VideoSelector')
635
644
  VideoTimecodeInsertion = Shapes::StringShape.new(name: 'VideoTimecodeInsertion')
@@ -785,6 +794,7 @@ module Aws::MediaConvert
785
794
  __integerMinNegative1000Max1000 = Shapes::IntegerShape.new(name: '__integerMinNegative1000Max1000')
786
795
  __integerMinNegative180Max180 = Shapes::IntegerShape.new(name: '__integerMinNegative180Max180')
787
796
  __integerMinNegative1Max10 = Shapes::IntegerShape.new(name: '__integerMinNegative1Max10')
797
+ __integerMinNegative1Max2147483647 = Shapes::IntegerShape.new(name: '__integerMinNegative1Max2147483647')
788
798
  __integerMinNegative1Max3 = Shapes::IntegerShape.new(name: '__integerMinNegative1Max3')
789
799
  __integerMinNegative2147483648Max2147483647 = Shapes::IntegerShape.new(name: '__integerMinNegative2147483648Max2147483647')
790
800
  __integerMinNegative2Max3 = Shapes::IntegerShape.new(name: '__integerMinNegative2Max3')
@@ -813,6 +823,7 @@ module Aws::MediaConvert
813
823
  __listOfInputTemplate = Shapes::ListShape.new(name: '__listOfInputTemplate')
814
824
  __listOfInsertableImage = Shapes::ListShape.new(name: '__listOfInsertableImage')
815
825
  __listOfJob = Shapes::ListShape.new(name: '__listOfJob')
826
+ __listOfJobEngineVersion = Shapes::ListShape.new(name: '__listOfJobEngineVersion')
816
827
  __listOfJobTemplate = Shapes::ListShape.new(name: '__listOfJobTemplate')
817
828
  __listOfMsSmoothAdditionalManifest = Shapes::ListShape.new(name: '__listOfMsSmoothAdditionalManifest')
818
829
  __listOfOutput = Shapes::ListShape.new(name: '__listOfOutput')
@@ -826,6 +837,7 @@ module Aws::MediaConvert
826
837
  __listOfTeletextPageType = Shapes::ListShape.new(name: '__listOfTeletextPageType')
827
838
  __listOfVideoOverlay = Shapes::ListShape.new(name: '__listOfVideoOverlay')
828
839
  __listOfVideoOverlayInputClipping = Shapes::ListShape.new(name: '__listOfVideoOverlayInputClipping')
840
+ __listOfVideoOverlayTransition = Shapes::ListShape.new(name: '__listOfVideoOverlayTransition')
829
841
  __listOfWarningGroup = Shapes::ListShape.new(name: '__listOfWarningGroup')
830
842
  __listOf__doubleMinNegative60Max6 = Shapes::ListShape.new(name: '__listOf__doubleMinNegative60Max6')
831
843
  __listOf__integerMin1Max2147483647 = Shapes::ListShape.new(name: '__listOf__integerMin1Max2147483647')
@@ -1251,6 +1263,7 @@ module Aws::MediaConvert
1251
1263
  CreateJobRequest.add_member(:billing_tags_source, Shapes::ShapeRef.new(shape: BillingTagsSource, location_name: "billingTagsSource"))
1252
1264
  CreateJobRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: __string, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
1253
1265
  CreateJobRequest.add_member(:hop_destinations, Shapes::ShapeRef.new(shape: __listOfHopDestination, location_name: "hopDestinations"))
1266
+ CreateJobRequest.add_member(:job_engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "jobEngineVersion"))
1254
1267
  CreateJobRequest.add_member(:job_template, Shapes::ShapeRef.new(shape: __string, location_name: "jobTemplate"))
1255
1268
  CreateJobRequest.add_member(:priority, Shapes::ShapeRef.new(shape: __integerMinNegative50Max50, location_name: "priority"))
1256
1269
  CreateJobRequest.add_member(:queue, Shapes::ShapeRef.new(shape: __string, location_name: "queue"))
@@ -1522,6 +1535,7 @@ module Aws::MediaConvert
1522
1535
  FileGroupSettings.add_member(:destination_settings, Shapes::ShapeRef.new(shape: DestinationSettings, location_name: "destinationSettings"))
1523
1536
  FileGroupSettings.struct_class = Types::FileGroupSettings
1524
1537
 
1538
+ FileSourceSettings.add_member(:byte_rate_limit, Shapes::ShapeRef.new(shape: CaptionSourceByteRateLimit, location_name: "byteRateLimit"))
1525
1539
  FileSourceSettings.add_member(:convert_608_to_708, Shapes::ShapeRef.new(shape: FileSourceConvert608To708, location_name: "convert608To708"))
1526
1540
  FileSourceSettings.add_member(:convert_paint_to_pop, Shapes::ShapeRef.new(shape: CaptionSourceConvertPaintOnToPopOn, location_name: "convertPaintToPop"))
1527
1541
  FileSourceSettings.add_member(:framerate, Shapes::ShapeRef.new(shape: CaptionSourceFramerate, location_name: "framerate"))
@@ -1615,6 +1629,7 @@ module Aws::MediaConvert
1615
1629
  H264Settings.add_member(:qvbr_settings, Shapes::ShapeRef.new(shape: H264QvbrSettings, location_name: "qvbrSettings"))
1616
1630
  H264Settings.add_member(:rate_control_mode, Shapes::ShapeRef.new(shape: H264RateControlMode, location_name: "rateControlMode"))
1617
1631
  H264Settings.add_member(:repeat_pps, Shapes::ShapeRef.new(shape: H264RepeatPps, location_name: "repeatPps"))
1632
+ H264Settings.add_member(:saliency_aware_encoding, Shapes::ShapeRef.new(shape: H264SaliencyAwareEncoding, location_name: "saliencyAwareEncoding"))
1618
1633
  H264Settings.add_member(:scan_type_conversion_mode, Shapes::ShapeRef.new(shape: H264ScanTypeConversionMode, location_name: "scanTypeConversionMode"))
1619
1634
  H264Settings.add_member(:scene_change_detect, Shapes::ShapeRef.new(shape: H264SceneChangeDetect, location_name: "sceneChangeDetect"))
1620
1635
  H264Settings.add_member(:slices, Shapes::ShapeRef.new(shape: __integerMin1Max32, location_name: "slices"))
@@ -1881,6 +1896,8 @@ module Aws::MediaConvert
1881
1896
  Job.add_member(:error_message, Shapes::ShapeRef.new(shape: __string, location_name: "errorMessage"))
1882
1897
  Job.add_member(:hop_destinations, Shapes::ShapeRef.new(shape: __listOfHopDestination, location_name: "hopDestinations"))
1883
1898
  Job.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
1899
+ Job.add_member(:job_engine_version_requested, Shapes::ShapeRef.new(shape: __string, location_name: "jobEngineVersionRequested"))
1900
+ Job.add_member(:job_engine_version_used, Shapes::ShapeRef.new(shape: __string, location_name: "jobEngineVersionUsed"))
1884
1901
  Job.add_member(:job_percent_complete, Shapes::ShapeRef.new(shape: __integer, location_name: "jobPercentComplete"))
1885
1902
  Job.add_member(:job_template, Shapes::ShapeRef.new(shape: __string, location_name: "jobTemplate"))
1886
1903
  Job.add_member(:messages, Shapes::ShapeRef.new(shape: JobMessages, location_name: "messages"))
@@ -1899,6 +1916,10 @@ module Aws::MediaConvert
1899
1916
  Job.add_member(:warnings, Shapes::ShapeRef.new(shape: __listOfWarningGroup, location_name: "warnings"))
1900
1917
  Job.struct_class = Types::Job
1901
1918
 
1919
+ JobEngineVersion.add_member(:expiration_date, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "expirationDate"))
1920
+ JobEngineVersion.add_member(:version, Shapes::ShapeRef.new(shape: __string, location_name: "version"))
1921
+ JobEngineVersion.struct_class = Types::JobEngineVersion
1922
+
1902
1923
  JobMessages.add_member(:info, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "info"))
1903
1924
  JobMessages.add_member(:warning, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "warning"))
1904
1925
  JobMessages.struct_class = Types::JobMessages
@@ -2014,6 +2035,14 @@ module Aws::MediaConvert
2014
2035
  ListTagsForResourceResponse.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTags, location_name: "resourceTags"))
2015
2036
  ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
2016
2037
 
2038
+ ListVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: __integerMin1Max20, location: "querystring", location_name: "maxResults"))
2039
+ ListVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
2040
+ ListVersionsRequest.struct_class = Types::ListVersionsRequest
2041
+
2042
+ ListVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
2043
+ ListVersionsResponse.add_member(:versions, Shapes::ShapeRef.new(shape: __listOfJobEngineVersion, location_name: "versions"))
2044
+ ListVersionsResponse.struct_class = Types::ListVersionsResponse
2045
+
2017
2046
  M2tsScte35Esam.add_member(:scte_35_esam_pid, Shapes::ShapeRef.new(shape: __integerMin32Max8182, location_name: "scte35EsamPid"))
2018
2047
  M2tsScte35Esam.struct_class = Types::M2tsScte35Esam
2019
2048
 
@@ -2581,8 +2610,11 @@ module Aws::MediaConvert
2581
2610
  VideoDetail.struct_class = Types::VideoDetail
2582
2611
 
2583
2612
  VideoOverlay.add_member(:end_timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092, location_name: "endTimecode"))
2613
+ VideoOverlay.add_member(:initial_position, Shapes::ShapeRef.new(shape: VideoOverlayPosition, location_name: "initialPosition"))
2584
2614
  VideoOverlay.add_member(:input, Shapes::ShapeRef.new(shape: VideoOverlayInput, location_name: "input"))
2615
+ VideoOverlay.add_member(:playback, Shapes::ShapeRef.new(shape: VideoOverlayPlayBackMode, location_name: "playback"))
2585
2616
  VideoOverlay.add_member(:start_timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092, location_name: "startTimecode"))
2617
+ VideoOverlay.add_member(:transitions, Shapes::ShapeRef.new(shape: __listOfVideoOverlayTransition, location_name: "transitions"))
2586
2618
  VideoOverlay.struct_class = Types::VideoOverlay
2587
2619
 
2588
2620
  VideoOverlayInput.add_member(:file_input, Shapes::ShapeRef.new(shape: __stringPatternS3Https, location_name: "fileInput"))
@@ -2591,10 +2623,22 @@ module Aws::MediaConvert
2591
2623
  VideoOverlayInput.add_member(:timecode_start, Shapes::ShapeRef.new(shape: __stringMin11Max11Pattern01D20305D205D, location_name: "timecodeStart"))
2592
2624
  VideoOverlayInput.struct_class = Types::VideoOverlayInput
2593
2625
 
2594
- VideoOverlayInputClipping.add_member(:end_timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092, location_name: "endTimecode"))
2595
- VideoOverlayInputClipping.add_member(:start_timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092, location_name: "startTimecode"))
2626
+ VideoOverlayInputClipping.add_member(:end_timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092090909, location_name: "endTimecode"))
2627
+ VideoOverlayInputClipping.add_member(:start_timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092090909, location_name: "startTimecode"))
2596
2628
  VideoOverlayInputClipping.struct_class = Types::VideoOverlayInputClipping
2597
2629
 
2630
+ VideoOverlayPosition.add_member(:height, Shapes::ShapeRef.new(shape: __integerMinNegative1Max2147483647, location_name: "height"))
2631
+ VideoOverlayPosition.add_member(:unit, Shapes::ShapeRef.new(shape: VideoOverlayUnit, location_name: "unit"))
2632
+ VideoOverlayPosition.add_member(:width, Shapes::ShapeRef.new(shape: __integerMinNegative1Max2147483647, location_name: "width"))
2633
+ VideoOverlayPosition.add_member(:x_position, Shapes::ShapeRef.new(shape: __integerMinNegative2147483648Max2147483647, location_name: "xPosition"))
2634
+ VideoOverlayPosition.add_member(:y_position, Shapes::ShapeRef.new(shape: __integerMinNegative2147483648Max2147483647, location_name: "yPosition"))
2635
+ VideoOverlayPosition.struct_class = Types::VideoOverlayPosition
2636
+
2637
+ VideoOverlayTransition.add_member(:end_position, Shapes::ShapeRef.new(shape: VideoOverlayPosition, location_name: "endPosition"))
2638
+ VideoOverlayTransition.add_member(:end_timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092, location_name: "endTimecode"))
2639
+ VideoOverlayTransition.add_member(:start_timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092, location_name: "startTimecode"))
2640
+ VideoOverlayTransition.struct_class = Types::VideoOverlayTransition
2641
+
2598
2642
  VideoPreprocessor.add_member(:color_corrector, Shapes::ShapeRef.new(shape: ColorCorrector, location_name: "colorCorrector"))
2599
2643
  VideoPreprocessor.add_member(:deinterlacer, Shapes::ShapeRef.new(shape: Deinterlacer, location_name: "deinterlacer"))
2600
2644
  VideoPreprocessor.add_member(:dolby_vision, Shapes::ShapeRef.new(shape: DolbyVision, location_name: "dolbyVision"))
@@ -2762,6 +2806,8 @@ module Aws::MediaConvert
2762
2806
 
2763
2807
  __listOfJob.member = Shapes::ShapeRef.new(shape: Job)
2764
2808
 
2809
+ __listOfJobEngineVersion.member = Shapes::ShapeRef.new(shape: JobEngineVersion)
2810
+
2765
2811
  __listOfJobTemplate.member = Shapes::ShapeRef.new(shape: JobTemplate)
2766
2812
 
2767
2813
  __listOfMsSmoothAdditionalManifest.member = Shapes::ShapeRef.new(shape: MsSmoothAdditionalManifest)
@@ -2788,6 +2834,8 @@ module Aws::MediaConvert
2788
2834
 
2789
2835
  __listOfVideoOverlayInputClipping.member = Shapes::ShapeRef.new(shape: VideoOverlayInputClipping)
2790
2836
 
2837
+ __listOfVideoOverlayTransition.member = Shapes::ShapeRef.new(shape: VideoOverlayTransition)
2838
+
2791
2839
  __listOfWarningGroup.member = Shapes::ShapeRef.new(shape: WarningGroup)
2792
2840
 
2793
2841
  __listOf__doubleMinNegative60Max6.member = Shapes::ShapeRef.new(shape: __doubleMinNegative60Max6)
@@ -3179,6 +3227,26 @@ module Aws::MediaConvert
3179
3227
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3180
3228
  end)
3181
3229
 
3230
+ api.add_operation(:list_versions, Seahorse::Model::Operation.new.tap do |o|
3231
+ o.name = "ListVersions"
3232
+ o.http_method = "GET"
3233
+ o.http_request_uri = "/2017-08-29/versions"
3234
+ o.input = Shapes::ShapeRef.new(shape: ListVersionsRequest)
3235
+ o.output = Shapes::ShapeRef.new(shape: ListVersionsResponse)
3236
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
3237
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
3238
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
3239
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
3240
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
3241
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3242
+ o[:pager] = Aws::Pager.new(
3243
+ limit_key: "max_results",
3244
+ tokens: {
3245
+ "next_token" => "next_token"
3246
+ }
3247
+ )
3248
+ end)
3249
+
3182
3250
  api.add_operation(:put_policy, Seahorse::Model::Operation.new.tap do |o|
3183
3251
  o.name = "PutPolicy"
3184
3252
  o.http_method = "PUT"