aws-sdk-mediaconvert 1.92.0 → 1.94.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: 15093a143915469caf9396882674eeab53c4f326620b021cce3a09e2e209a40d
4
- data.tar.gz: 888634bf9618d860b5397aff7096004ed3652443fc79eb0d01c9a23e436f65c5
3
+ metadata.gz: 63a37772a23e7b0dc57fe0a869c4d37fbae79e9eaff2c5878ef86eb05db89537
4
+ data.tar.gz: 951808d0b0ce64e7b4422882782c0c65f6a0a310960a04a700dd9f3c5d8f47f1
5
5
  SHA512:
6
- metadata.gz: 86166521157344b741c8d033750ff94c1b2ee9c3d6cd603a188af1565fd7eebdc11b6c66b097838b3784846a98e55baff0ef625030780b52596cda3205d2b8f1
7
- data.tar.gz: 01ee91b0f02d7fc67b8eca2402628397edd31b7d339d8bce1b559ef8d77af2cd2fd1a599d74737291b515f4b41afdb5a6d31ce325c6b4cbc76f9e532238d418f
6
+ metadata.gz: 00b0a12d9b4019f1fcca97b46c5fd7d1c02cee137feacd0e54ab390d4698196c89321480c38698ce882f1e0d6141238034a2286268e334ca85d7af76934ad45b
7
+ data.tar.gz: 5fcc944f7cc35bb54c592ad65cc18535383076b54afc2e9581c8d63ad19913506970e7f3f928d1ef7932588b1334501dd0747d956bc374285c5450443bde654a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.94.0 (2022-10-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.93.0 (2022-10-14)
10
+ ------------------
11
+
12
+ * Feature - MediaConvert now supports specifying the minimum percentage of the HRD buffer available at the end of each encoded video segment.
13
+
4
14
  1.92.0 (2022-06-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.92.0
1
+ 1.94.0
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
30
30
  require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
33
- require 'aws-sdk-core/plugins/signature_v4.rb'
33
+ require 'aws-sdk-core/plugins/sign.rb'
34
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
35
35
 
36
36
  Aws::Plugins::GlobalConfiguration.add_identifier(:mediaconvert)
@@ -79,8 +79,9 @@ module Aws::MediaConvert
79
79
  add_plugin(Aws::Plugins::ChecksumAlgorithm)
80
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
81
  add_plugin(Aws::Plugins::RecursionDetection)
82
- add_plugin(Aws::Plugins::SignatureV4)
82
+ add_plugin(Aws::Plugins::Sign)
83
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
84
+ add_plugin(Aws::MediaConvert::Plugins::Endpoints)
84
85
 
85
86
  # @overload initialize(options)
86
87
  # @param [Hash] options
@@ -287,6 +288,19 @@ module Aws::MediaConvert
287
288
  # ** Please note ** When response stubbing is enabled, no HTTP
288
289
  # requests are made, and retries are disabled.
289
290
  #
291
+ # @option options [Aws::TokenProvider] :token_provider
292
+ # A Bearer Token Provider. This can be an instance of any one of the
293
+ # following classes:
294
+ #
295
+ # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
296
+ # tokens.
297
+ #
298
+ # * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
299
+ # access token generated from `aws login`.
300
+ #
301
+ # When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
302
+ # will be used to search for tokens configured for your profile in shared configuration files.
303
+ #
290
304
  # @option options [Boolean] :use_dualstack_endpoint
291
305
  # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
292
306
  # will be used if available.
@@ -300,6 +314,9 @@ module Aws::MediaConvert
300
314
  # When `true`, request parameters are validated before
301
315
  # sending the request.
302
316
  #
317
+ # @option options [Aws::MediaConvert::EndpointProvider] :endpoint_provider
318
+ # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::MediaConvert::EndpointParameters`
319
+ #
303
320
  # @option options [URI::HTTP,String] :http_proxy A proxy to send
304
321
  # requests through. Formatted like 'http://proxy.com:123'.
305
322
  #
@@ -1441,6 +1458,7 @@ module Aws::MediaConvert
1441
1458
  # gop_closed_cadence: 1,
1442
1459
  # gop_size: 1.0,
1443
1460
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
1461
+ # hrd_buffer_final_fill_percentage: 1,
1444
1462
  # hrd_buffer_initial_fill_percentage: 1,
1445
1463
  # hrd_buffer_size: 1,
1446
1464
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -1486,6 +1504,7 @@ module Aws::MediaConvert
1486
1504
  # gop_closed_cadence: 1,
1487
1505
  # gop_size: 1.0,
1488
1506
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
1507
+ # hrd_buffer_final_fill_percentage: 1,
1489
1508
  # hrd_buffer_initial_fill_percentage: 1,
1490
1509
  # hrd_buffer_size: 1,
1491
1510
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -1529,6 +1548,7 @@ module Aws::MediaConvert
1529
1548
  # gop_closed_cadence: 1,
1530
1549
  # gop_size: 1.0,
1531
1550
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
1551
+ # hrd_buffer_final_fill_percentage: 1,
1532
1552
  # hrd_buffer_initial_fill_percentage: 1,
1533
1553
  # hrd_buffer_size: 1,
1534
1554
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -2489,6 +2509,7 @@ module Aws::MediaConvert
2489
2509
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
2490
2510
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
2491
2511
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
2512
+ # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
2492
2513
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
2493
2514
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
2494
2515
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -2530,6 +2551,7 @@ module Aws::MediaConvert
2530
2551
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
2531
2552
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
2532
2553
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
2554
+ # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
2533
2555
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
2534
2556
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
2535
2557
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -2569,6 +2591,7 @@ module Aws::MediaConvert
2569
2591
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
2570
2592
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
2571
2593
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
2594
+ # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
2572
2595
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
2573
2596
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
2574
2597
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -3770,6 +3793,7 @@ module Aws::MediaConvert
3770
3793
  # gop_closed_cadence: 1,
3771
3794
  # gop_size: 1.0,
3772
3795
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
3796
+ # hrd_buffer_final_fill_percentage: 1,
3773
3797
  # hrd_buffer_initial_fill_percentage: 1,
3774
3798
  # hrd_buffer_size: 1,
3775
3799
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -3815,6 +3839,7 @@ module Aws::MediaConvert
3815
3839
  # gop_closed_cadence: 1,
3816
3840
  # gop_size: 1.0,
3817
3841
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
3842
+ # hrd_buffer_final_fill_percentage: 1,
3818
3843
  # hrd_buffer_initial_fill_percentage: 1,
3819
3844
  # hrd_buffer_size: 1,
3820
3845
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -3858,6 +3883,7 @@ module Aws::MediaConvert
3858
3883
  # gop_closed_cadence: 1,
3859
3884
  # gop_size: 1.0,
3860
3885
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
3886
+ # hrd_buffer_final_fill_percentage: 1,
3861
3887
  # hrd_buffer_initial_fill_percentage: 1,
3862
3888
  # hrd_buffer_size: 1,
3863
3889
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -4787,6 +4813,7 @@ module Aws::MediaConvert
4787
4813
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
4788
4814
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
4789
4815
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
4816
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
4790
4817
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
4791
4818
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
4792
4819
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -4828,6 +4855,7 @@ module Aws::MediaConvert
4828
4855
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
4829
4856
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
4830
4857
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
4858
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
4831
4859
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
4832
4860
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
4833
4861
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -4867,6 +4895,7 @@ module Aws::MediaConvert
4867
4895
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
4868
4896
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
4869
4897
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
4898
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
4870
4899
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
4871
4900
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
4872
4901
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -5497,6 +5526,7 @@ module Aws::MediaConvert
5497
5526
  # gop_closed_cadence: 1,
5498
5527
  # gop_size: 1.0,
5499
5528
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
5529
+ # hrd_buffer_final_fill_percentage: 1,
5500
5530
  # hrd_buffer_initial_fill_percentage: 1,
5501
5531
  # hrd_buffer_size: 1,
5502
5532
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -5542,6 +5572,7 @@ module Aws::MediaConvert
5542
5572
  # gop_closed_cadence: 1,
5543
5573
  # gop_size: 1.0,
5544
5574
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
5575
+ # hrd_buffer_final_fill_percentage: 1,
5545
5576
  # hrd_buffer_initial_fill_percentage: 1,
5546
5577
  # hrd_buffer_size: 1,
5547
5578
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -5585,6 +5616,7 @@ module Aws::MediaConvert
5585
5616
  # gop_closed_cadence: 1,
5586
5617
  # gop_size: 1.0,
5587
5618
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
5619
+ # hrd_buffer_final_fill_percentage: 1,
5588
5620
  # hrd_buffer_initial_fill_percentage: 1,
5589
5621
  # hrd_buffer_size: 1,
5590
5622
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -6145,6 +6177,7 @@ module Aws::MediaConvert
6145
6177
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
6146
6178
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_size #=> Float
6147
6179
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
6180
+ # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
6148
6181
  # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
6149
6182
  # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
6150
6183
  # resp.preset.settings.video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -6186,6 +6219,7 @@ module Aws::MediaConvert
6186
6219
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
6187
6220
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_size #=> Float
6188
6221
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
6222
+ # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
6189
6223
  # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
6190
6224
  # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
6191
6225
  # resp.preset.settings.video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -6225,6 +6259,7 @@ module Aws::MediaConvert
6225
6259
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
6226
6260
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
6227
6261
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
6262
+ # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
6228
6263
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
6229
6264
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
6230
6265
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -7353,6 +7388,7 @@ module Aws::MediaConvert
7353
7388
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
7354
7389
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
7355
7390
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
7391
+ # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
7356
7392
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
7357
7393
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
7358
7394
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -7394,6 +7430,7 @@ module Aws::MediaConvert
7394
7430
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
7395
7431
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
7396
7432
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
7433
+ # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
7397
7434
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
7398
7435
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
7399
7436
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -7433,6 +7470,7 @@ module Aws::MediaConvert
7433
7470
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
7434
7471
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
7435
7472
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
7473
+ # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
7436
7474
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
7437
7475
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
7438
7476
  # resp.job.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -8317,6 +8355,7 @@ module Aws::MediaConvert
8317
8355
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
8318
8356
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
8319
8357
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
8358
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
8320
8359
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
8321
8360
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
8322
8361
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -8358,6 +8397,7 @@ module Aws::MediaConvert
8358
8397
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
8359
8398
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
8360
8399
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
8400
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
8361
8401
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
8362
8402
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
8363
8403
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -8397,6 +8437,7 @@ module Aws::MediaConvert
8397
8437
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
8398
8438
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
8399
8439
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
8440
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
8400
8441
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
8401
8442
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
8402
8443
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -8946,6 +8987,7 @@ module Aws::MediaConvert
8946
8987
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
8947
8988
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_size #=> Float
8948
8989
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
8990
+ # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
8949
8991
  # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
8950
8992
  # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
8951
8993
  # resp.preset.settings.video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -8987,6 +9029,7 @@ module Aws::MediaConvert
8987
9029
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
8988
9030
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_size #=> Float
8989
9031
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
9032
+ # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
8990
9033
  # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
8991
9034
  # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
8992
9035
  # resp.preset.settings.video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -9026,6 +9069,7 @@ module Aws::MediaConvert
9026
9069
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
9027
9070
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
9028
9071
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
9072
+ # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
9029
9073
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
9030
9074
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
9031
9075
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -9969,6 +10013,7 @@ module Aws::MediaConvert
9969
10013
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
9970
10014
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
9971
10015
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
10016
+ # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
9972
10017
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
9973
10018
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
9974
10019
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -10010,6 +10055,7 @@ module Aws::MediaConvert
10010
10055
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
10011
10056
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
10012
10057
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
10058
+ # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
10013
10059
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
10014
10060
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
10015
10061
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -10049,6 +10095,7 @@ module Aws::MediaConvert
10049
10095
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
10050
10096
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
10051
10097
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
10098
+ # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
10052
10099
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
10053
10100
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
10054
10101
  # resp.job_templates[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -10984,6 +11031,7 @@ module Aws::MediaConvert
10984
11031
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
10985
11032
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
10986
11033
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
11034
+ # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
10987
11035
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
10988
11036
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
10989
11037
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -11025,6 +11073,7 @@ module Aws::MediaConvert
11025
11073
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
11026
11074
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
11027
11075
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
11076
+ # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
11028
11077
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
11029
11078
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
11030
11079
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -11064,6 +11113,7 @@ module Aws::MediaConvert
11064
11113
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
11065
11114
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
11066
11115
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
11116
+ # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
11067
11117
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
11068
11118
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
11069
11119
  # resp.jobs[0].settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -11630,6 +11680,7 @@ module Aws::MediaConvert
11630
11680
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
11631
11681
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.gop_size #=> Float
11632
11682
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
11683
+ # resp.presets[0].settings.video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
11633
11684
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
11634
11685
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
11635
11686
  # resp.presets[0].settings.video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -11671,6 +11722,7 @@ module Aws::MediaConvert
11671
11722
  # resp.presets[0].settings.video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
11672
11723
  # resp.presets[0].settings.video_description.codec_settings.h265_settings.gop_size #=> Float
11673
11724
  # resp.presets[0].settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
11725
+ # resp.presets[0].settings.video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
11674
11726
  # resp.presets[0].settings.video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
11675
11727
  # resp.presets[0].settings.video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
11676
11728
  # resp.presets[0].settings.video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -11710,6 +11762,7 @@ module Aws::MediaConvert
11710
11762
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
11711
11763
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
11712
11764
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
11765
+ # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
11713
11766
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
11714
11767
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
11715
11768
  # resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -13085,6 +13138,7 @@ module Aws::MediaConvert
13085
13138
  # gop_closed_cadence: 1,
13086
13139
  # gop_size: 1.0,
13087
13140
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
13141
+ # hrd_buffer_final_fill_percentage: 1,
13088
13142
  # hrd_buffer_initial_fill_percentage: 1,
13089
13143
  # hrd_buffer_size: 1,
13090
13144
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -13130,6 +13184,7 @@ module Aws::MediaConvert
13130
13184
  # gop_closed_cadence: 1,
13131
13185
  # gop_size: 1.0,
13132
13186
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
13187
+ # hrd_buffer_final_fill_percentage: 1,
13133
13188
  # hrd_buffer_initial_fill_percentage: 1,
13134
13189
  # hrd_buffer_size: 1,
13135
13190
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -13173,6 +13228,7 @@ module Aws::MediaConvert
13173
13228
  # gop_closed_cadence: 1,
13174
13229
  # gop_size: 1.0,
13175
13230
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
13231
+ # hrd_buffer_final_fill_percentage: 1,
13176
13232
  # hrd_buffer_initial_fill_percentage: 1,
13177
13233
  # hrd_buffer_size: 1,
13178
13234
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -14099,6 +14155,7 @@ module Aws::MediaConvert
14099
14155
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
14100
14156
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size #=> Float
14101
14157
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
14158
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
14102
14159
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
14103
14160
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
14104
14161
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -14140,6 +14197,7 @@ module Aws::MediaConvert
14140
14197
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
14141
14198
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size #=> Float
14142
14199
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
14200
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
14143
14201
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
14144
14202
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
14145
14203
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -14179,6 +14237,7 @@ module Aws::MediaConvert
14179
14237
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
14180
14238
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
14181
14239
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
14240
+ # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
14182
14241
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
14183
14242
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
14184
14243
  # resp.job_template.settings.output_groups[0].outputs[0].video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -14803,6 +14862,7 @@ module Aws::MediaConvert
14803
14862
  # gop_closed_cadence: 1,
14804
14863
  # gop_size: 1.0,
14805
14864
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
14865
+ # hrd_buffer_final_fill_percentage: 1,
14806
14866
  # hrd_buffer_initial_fill_percentage: 1,
14807
14867
  # hrd_buffer_size: 1,
14808
14868
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -14848,6 +14908,7 @@ module Aws::MediaConvert
14848
14908
  # gop_closed_cadence: 1,
14849
14909
  # gop_size: 1.0,
14850
14910
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS, AUTO
14911
+ # hrd_buffer_final_fill_percentage: 1,
14851
14912
  # hrd_buffer_initial_fill_percentage: 1,
14852
14913
  # hrd_buffer_size: 1,
14853
14914
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -14891,6 +14952,7 @@ module Aws::MediaConvert
14891
14952
  # gop_closed_cadence: 1,
14892
14953
  # gop_size: 1.0,
14893
14954
  # gop_size_units: "FRAMES", # accepts FRAMES, SECONDS
14955
+ # hrd_buffer_final_fill_percentage: 1,
14894
14956
  # hrd_buffer_initial_fill_percentage: 1,
14895
14957
  # hrd_buffer_size: 1,
14896
14958
  # interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
@@ -15448,6 +15510,7 @@ module Aws::MediaConvert
15448
15510
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_closed_cadence #=> Integer
15449
15511
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_size #=> Float
15450
15512
  # resp.preset.settings.video_description.codec_settings.h264_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
15513
+ # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_final_fill_percentage #=> Integer
15451
15514
  # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_initial_fill_percentage #=> Integer
15452
15515
  # resp.preset.settings.video_description.codec_settings.h264_settings.hrd_buffer_size #=> Integer
15453
15516
  # resp.preset.settings.video_description.codec_settings.h264_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -15489,6 +15552,7 @@ module Aws::MediaConvert
15489
15552
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_closed_cadence #=> Integer
15490
15553
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_size #=> Float
15491
15554
  # resp.preset.settings.video_description.codec_settings.h265_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS", "AUTO"
15555
+ # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_final_fill_percentage #=> Integer
15492
15556
  # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_initial_fill_percentage #=> Integer
15493
15557
  # resp.preset.settings.video_description.codec_settings.h265_settings.hrd_buffer_size #=> Integer
15494
15558
  # resp.preset.settings.video_description.codec_settings.h265_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -15528,6 +15592,7 @@ module Aws::MediaConvert
15528
15592
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_closed_cadence #=> Integer
15529
15593
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_size #=> Float
15530
15594
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.gop_size_units #=> String, one of "FRAMES", "SECONDS"
15595
+ # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_final_fill_percentage #=> Integer
15531
15596
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_initial_fill_percentage #=> Integer
15532
15597
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.hrd_buffer_size #=> Integer
15533
15598
  # resp.preset.settings.video_description.codec_settings.mpeg_2_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
@@ -15792,7 +15857,7 @@ module Aws::MediaConvert
15792
15857
  params: params,
15793
15858
  config: config)
15794
15859
  context[:gem_name] = 'aws-sdk-mediaconvert'
15795
- context[:gem_version] = '1.92.0'
15860
+ context[:gem_version] = '1.94.0'
15796
15861
  Seahorse::Client::Request.new(handlers, context)
15797
15862
  end
15798
15863
 
@@ -1483,6 +1483,7 @@ module Aws::MediaConvert
1483
1483
  H264Settings.add_member(:gop_closed_cadence, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "gopClosedCadence"))
1484
1484
  H264Settings.add_member(:gop_size, Shapes::ShapeRef.new(shape: __doubleMin0, location_name: "gopSize"))
1485
1485
  H264Settings.add_member(:gop_size_units, Shapes::ShapeRef.new(shape: H264GopSizeUnits, location_name: "gopSizeUnits"))
1486
+ H264Settings.add_member(:hrd_buffer_final_fill_percentage, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "hrdBufferFinalFillPercentage"))
1486
1487
  H264Settings.add_member(:hrd_buffer_initial_fill_percentage, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "hrdBufferInitialFillPercentage"))
1487
1488
  H264Settings.add_member(:hrd_buffer_size, Shapes::ShapeRef.new(shape: __integerMin0Max1152000000, location_name: "hrdBufferSize"))
1488
1489
  H264Settings.add_member(:interlace_mode, Shapes::ShapeRef.new(shape: H264InterlaceMode, location_name: "interlaceMode"))
@@ -1529,6 +1530,7 @@ module Aws::MediaConvert
1529
1530
  H265Settings.add_member(:gop_closed_cadence, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "gopClosedCadence"))
1530
1531
  H265Settings.add_member(:gop_size, Shapes::ShapeRef.new(shape: __doubleMin0, location_name: "gopSize"))
1531
1532
  H265Settings.add_member(:gop_size_units, Shapes::ShapeRef.new(shape: H265GopSizeUnits, location_name: "gopSizeUnits"))
1533
+ H265Settings.add_member(:hrd_buffer_final_fill_percentage, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "hrdBufferFinalFillPercentage"))
1532
1534
  H265Settings.add_member(:hrd_buffer_initial_fill_percentage, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "hrdBufferInitialFillPercentage"))
1533
1535
  H265Settings.add_member(:hrd_buffer_size, Shapes::ShapeRef.new(shape: __integerMin0Max1466400000, location_name: "hrdBufferSize"))
1534
1536
  H265Settings.add_member(:interlace_mode, Shapes::ShapeRef.new(shape: H265InterlaceMode, location_name: "interlaceMode"))
@@ -2012,6 +2014,7 @@ module Aws::MediaConvert
2012
2014
  Mpeg2Settings.add_member(:gop_closed_cadence, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "gopClosedCadence"))
2013
2015
  Mpeg2Settings.add_member(:gop_size, Shapes::ShapeRef.new(shape: __doubleMin0, location_name: "gopSize"))
2014
2016
  Mpeg2Settings.add_member(:gop_size_units, Shapes::ShapeRef.new(shape: Mpeg2GopSizeUnits, location_name: "gopSizeUnits"))
2017
+ Mpeg2Settings.add_member(:hrd_buffer_final_fill_percentage, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "hrdBufferFinalFillPercentage"))
2015
2018
  Mpeg2Settings.add_member(:hrd_buffer_initial_fill_percentage, Shapes::ShapeRef.new(shape: __integerMin0Max100, location_name: "hrdBufferInitialFillPercentage"))
2016
2019
  Mpeg2Settings.add_member(:hrd_buffer_size, Shapes::ShapeRef.new(shape: __integerMin0Max47185920, location_name: "hrdBufferSize"))
2017
2020
  Mpeg2Settings.add_member(:interlace_mode, Shapes::ShapeRef.new(shape: Mpeg2InterlaceMode, location_name: "interlaceMode"))
@@ -0,0 +1,66 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::MediaConvert
11
+ # Endpoint parameters used to influence endpoints per request.
12
+ #
13
+ # @!attribute region
14
+ # The AWS region used to dispatch the request.
15
+ #
16
+ # @return [String]
17
+ #
18
+ # @!attribute use_dual_stack
19
+ # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
+ #
21
+ # @return [Boolean]
22
+ #
23
+ # @!attribute use_fips
24
+ # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
+ #
26
+ # @return [Boolean]
27
+ #
28
+ # @!attribute endpoint
29
+ # Override the endpoint used to send this request
30
+ #
31
+ # @return [String]
32
+ #
33
+ EndpointParameters = Struct.new(
34
+ :region,
35
+ :use_dual_stack,
36
+ :use_fips,
37
+ :endpoint,
38
+ ) do
39
+ include Aws::Structure
40
+
41
+ # @api private
42
+ class << self
43
+ PARAM_MAP = {
44
+ 'Region' => :region,
45
+ 'UseDualStack' => :use_dual_stack,
46
+ 'UseFIPS' => :use_fips,
47
+ 'Endpoint' => :endpoint,
48
+ }.freeze
49
+ end
50
+
51
+ def initialize(options = {})
52
+ self[:region] = options[:region]
53
+ self[:use_dual_stack] = options[:use_dual_stack]
54
+ self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
+ if self[:use_dual_stack].nil?
56
+ raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
+ end
58
+ self[:use_fips] = options[:use_fips]
59
+ self[:use_fips] = false if self[:use_fips].nil?
60
+ if self[:use_fips].nil?
61
+ raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
+ end
63
+ self[:endpoint] = options[:endpoint]
64
+ end
65
+ end
66
+ end