aws-sdk-mediaconvert 1.169.0 → 1.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +10 -0
 - data/VERSION +1 -1
 - data/lib/aws-sdk-mediaconvert/client.rb +141 -48
 - data/lib/aws-sdk-mediaconvert/client_api.rb +118 -0
 - data/lib/aws-sdk-mediaconvert/endpoint_parameters.rb +4 -4
 - data/lib/aws-sdk-mediaconvert/errors.rb +16 -0
 - data/lib/aws-sdk-mediaconvert/types.rb +352 -52
 - data/lib/aws-sdk-mediaconvert.rb +1 -1
 - data/sig/client.rbs +71 -39
 - data/sig/errors.rbs +3 -0
 - data/sig/types.rbs +63 -9
 - metadata +3 -3
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: '08da179dd2276977fe2a87726b252fb7c17800dd42854af1d06206478f1d2cf7'
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 04c661fe255389ed40243263ed7211eeb187aa9725cf2c451196a6509ab4571b
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: da231014ca1b0715c09b10c044284014561bf86db2dfe071671865b1bd570a0992443cff26f74da38d24d91f66463779cdfda4628afe2346c25568b1ed4227e9
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: a1b77fee54ea2a734f3e3cc360388547612eb2113c9dced0b7ee47a56eb3afb96f9d03c7652844242d61371d0d4e2a2292f62b0d467452bd83deeea529f4f5af
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,6 +1,16 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            Unreleased Changes
         
     | 
| 
       2 
2 
     | 
    
         
             
            ------------------
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
      
 4 
     | 
    
         
            +
            1.171.0 (2025-10-21)
         
     | 
| 
      
 5 
     | 
    
         
            +
            ------------------
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            * Feature - This release adds the ability to set resolution for the black video generator and also adds the StartJobsQuery and GetJobsQueryResults APIs which allow asynchronous search of job history using new filters.
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            1.170.0 (2025-08-26)
         
     | 
| 
      
 10 
     | 
    
         
            +
            ------------------
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
       4 
14 
     | 
    
         
             
            1.169.0 (2025-08-25)
         
     | 
| 
       5 
15 
     | 
    
         
             
            ------------------
         
     | 
| 
       6 
16 
     | 
    
         | 
    
        data/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            1. 
     | 
| 
      
 1 
     | 
    
         
            +
            1.171.0
         
     | 
| 
         @@ -552,10 +552,12 @@ module Aws::MediaConvert 
     | 
|
| 
       552 
552 
     | 
    
         
             
                #
         
     | 
| 
       553 
553 
     | 
    
         
             
                # @option params [String] :job_engine_version
         
     | 
| 
       554 
554 
     | 
    
         
             
                #   Use Job engine versions to run jobs for your production workflow on
         
     | 
| 
       555 
     | 
    
         
            -
                #   one version, while you test and validate the latest version.  
     | 
| 
       556 
     | 
    
         
            -
                #    
     | 
| 
       557 
     | 
    
         
            -
                #    
     | 
| 
       558 
     | 
    
         
            -
                #    
     | 
| 
      
 555 
     | 
    
         
            +
                #   one version, while you test and validate the latest version. Job
         
     | 
| 
      
 556 
     | 
    
         
            +
                #   engine versions represent periodically grouped MediaConvert releases
         
     | 
| 
      
 557 
     | 
    
         
            +
                #   with new features, updates, improvements, and fixes. Job engine
         
     | 
| 
      
 558 
     | 
    
         
            +
                #   versions are in a YYYY-MM-DD format. Note that the Job engine version
         
     | 
| 
      
 559 
     | 
    
         
            +
                #   feature is not publicly available at this time. To request access,
         
     | 
| 
      
 560 
     | 
    
         
            +
                #   contact AWS support.
         
     | 
| 
       559 
561 
     | 
    
         
             
                #
         
     | 
| 
       560 
562 
     | 
    
         
             
                # @option params [String] :job_template
         
     | 
| 
       561 
563 
     | 
    
         
             
                #   Optional. When you create a job, you can either specify a job template
         
     | 
| 
         @@ -1120,7 +1122,7 @@ module Aws::MediaConvert 
     | 
|
| 
       1120 
1122 
     | 
    
         
             
                #             gop_size: 1.0,
         
     | 
| 
       1121 
1123 
     | 
    
         
             
                #             max_bitrate: 1,
         
     | 
| 
       1122 
1124 
     | 
    
         
             
                #             number_b_frames_between_reference_frames: 1,
         
     | 
| 
       1123 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 1125 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       1124 
1126 
     | 
    
         
             
                #             qvbr_settings: {
         
     | 
| 
       1125 
1127 
     | 
    
         
             
                #               qvbr_quality_level: 1,
         
     | 
| 
       1126 
1128 
     | 
    
         
             
                #               qvbr_quality_level_fine_tune: 1.0,
         
     | 
| 
         @@ -1139,7 +1141,7 @@ module Aws::MediaConvert 
     | 
|
| 
       1139 
1141 
     | 
    
         
             
                #             framerate_denominator: 1,
         
     | 
| 
       1140 
1142 
     | 
    
         
             
                #             framerate_numerator: 1,
         
     | 
| 
       1141 
1143 
     | 
    
         
             
                #             interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
         
     | 
| 
       1142 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 1144 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       1143 
1145 
     | 
    
         
             
                #             scan_type_conversion_mode: "INTERLACED", # accepts INTERLACED, INTERLACED_OPTIMIZE
         
     | 
| 
       1144 
1146 
     | 
    
         
             
                #             slow_pal: "DISABLED", # accepts DISABLED, ENABLED
         
     | 
| 
       1145 
1147 
     | 
    
         
             
                #             telecine: "NONE", # accepts NONE, HARD
         
     | 
| 
         @@ -1190,7 +1192,7 @@ module Aws::MediaConvert 
     | 
|
| 
       1190 
1192 
     | 
    
         
             
                #             par_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
         
     | 
| 
       1191 
1193 
     | 
    
         
             
                #             par_denominator: 1,
         
     | 
| 
       1192 
1194 
     | 
    
         
             
                #             par_numerator: 1,
         
     | 
| 
       1193 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 1195 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       1194 
1196 
     | 
    
         
             
                #             quality_tuning_level: "SINGLE_PASS", # accepts SINGLE_PASS, SINGLE_PASS_HQ, MULTI_PASS_HQ
         
     | 
| 
       1195 
1197 
     | 
    
         
             
                #             qvbr_settings: {
         
     | 
| 
       1196 
1198 
     | 
    
         
             
                #               max_average_bitrate: 1,
         
     | 
| 
         @@ -1245,7 +1247,7 @@ module Aws::MediaConvert 
     | 
|
| 
       1245 
1247 
     | 
    
         
             
                #             par_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
         
     | 
| 
       1246 
1248 
     | 
    
         
             
                #             par_denominator: 1,
         
     | 
| 
       1247 
1249 
     | 
    
         
             
                #             par_numerator: 1,
         
     | 
| 
       1248 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 1250 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       1249 
1251 
     | 
    
         
             
                #             quality_tuning_level: "SINGLE_PASS", # accepts SINGLE_PASS, SINGLE_PASS_HQ, MULTI_PASS_HQ
         
     | 
| 
       1250 
1252 
     | 
    
         
             
                #             qvbr_settings: {
         
     | 
| 
       1251 
1253 
     | 
    
         
             
                #               max_average_bitrate: 1,
         
     | 
| 
         @@ -1290,7 +1292,7 @@ module Aws::MediaConvert 
     | 
|
| 
       1290 
1292 
     | 
    
         
             
                #             par_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
         
     | 
| 
       1291 
1293 
     | 
    
         
             
                #             par_denominator: 1,
         
     | 
| 
       1292 
1294 
     | 
    
         
             
                #             par_numerator: 1,
         
     | 
| 
       1293 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 1295 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       1294 
1296 
     | 
    
         
             
                #             quality_tuning_level: "SINGLE_PASS", # accepts SINGLE_PASS, MULTI_PASS
         
     | 
| 
       1295 
1297 
     | 
    
         
             
                #             rate_control_mode: "VBR", # accepts VBR, CBR
         
     | 
| 
       1296 
1298 
     | 
    
         
             
                #             scan_type_conversion_mode: "INTERLACED", # accepts INTERLACED, INTERLACED_OPTIMIZE
         
     | 
| 
         @@ -1313,7 +1315,7 @@ module Aws::MediaConvert 
     | 
|
| 
       1313 
1315 
     | 
    
         
             
                #             par_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
         
     | 
| 
       1314 
1316 
     | 
    
         
             
                #             par_denominator: 1,
         
     | 
| 
       1315 
1317 
     | 
    
         
             
                #             par_numerator: 1,
         
     | 
| 
       1316 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 1318 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       1317 
1319 
     | 
    
         
             
                #             scan_type_conversion_mode: "INTERLACED", # accepts INTERLACED, INTERLACED_OPTIMIZE
         
     | 
| 
       1318 
1320 
     | 
    
         
             
                #             slow_pal: "DISABLED", # accepts DISABLED, ENABLED
         
     | 
| 
       1319 
1321 
     | 
    
         
             
                #             telecine: "NONE", # accepts NONE, HARD
         
     | 
| 
         @@ -1377,7 +1379,7 @@ module Aws::MediaConvert 
     | 
|
| 
       1377 
1379 
     | 
    
         
             
                #             framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER, MAINTAIN_FRAME_COUNT
         
     | 
| 
       1378 
1380 
     | 
    
         
             
                #             framerate_denominator: 1,
         
     | 
| 
       1379 
1381 
     | 
    
         
             
                #             framerate_numerator: 1,
         
     | 
| 
       1380 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 1382 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       1381 
1383 
     | 
    
         
             
                #             profile: "XAVC_HD_INTRA_CBG", # accepts XAVC_HD_INTRA_CBG, XAVC_4K_INTRA_CBG, XAVC_4K_INTRA_VBR, XAVC_HD, XAVC_4K
         
     | 
| 
       1382 
1384 
     | 
    
         
             
                #             slow_pal: "DISABLED", # accepts DISABLED, ENABLED
         
     | 
| 
       1383 
1385 
     | 
    
         
             
                #             softness: 1,
         
     | 
| 
         @@ -1871,7 +1873,7 @@ module Aws::MediaConvert 
     | 
|
| 
       1871 
1873 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.max_bitrate #=> Integer
         
     | 
| 
       1872 
1874 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.number_b_frames_between_reference_frames #=> Integer
         
     | 
| 
       1873 
1875 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.per_frame_metrics #=> Array
         
     | 
| 
       1874 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 1876 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       1875 
1877 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.qvbr_settings.qvbr_quality_level #=> Integer
         
     | 
| 
       1876 
1878 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.qvbr_settings.qvbr_quality_level_fine_tune #=> Float
         
     | 
| 
       1877 
1879 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.rate_control_mode #=> String, one of "QVBR"
         
     | 
| 
         @@ -1885,7 +1887,7 @@ module Aws::MediaConvert 
     | 
|
| 
       1885 
1887 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.framerate_numerator #=> Integer
         
     | 
| 
       1886 
1888 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
         
     | 
| 
       1887 
1889 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.per_frame_metrics #=> Array
         
     | 
| 
       1888 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 1890 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       1889 
1891 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
         
     | 
| 
       1890 
1892 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.slow_pal #=> String, one of "DISABLED", "ENABLED"
         
     | 
| 
       1891 
1893 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.telecine #=> String, one of "NONE", "HARD"
         
     | 
| 
         @@ -1929,7 +1931,7 @@ module Aws::MediaConvert 
     | 
|
| 
       1929 
1931 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.par_denominator #=> Integer
         
     | 
| 
       1930 
1932 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.par_numerator #=> Integer
         
     | 
| 
       1931 
1933 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.per_frame_metrics #=> Array
         
     | 
| 
       1932 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.h264_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 1934 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.h264_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       1933 
1935 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "SINGLE_PASS_HQ", "MULTI_PASS_HQ"
         
     | 
| 
       1934 
1936 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.qvbr_settings.max_average_bitrate #=> Integer
         
     | 
| 
       1935 
1937 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.qvbr_settings.qvbr_quality_level #=> Integer
         
     | 
| 
         @@ -1979,7 +1981,7 @@ module Aws::MediaConvert 
     | 
|
| 
       1979 
1981 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.par_denominator #=> Integer
         
     | 
| 
       1980 
1982 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.par_numerator #=> Integer
         
     | 
| 
       1981 
1983 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.per_frame_metrics #=> Array
         
     | 
| 
       1982 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.h265_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 1984 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.h265_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       1983 
1985 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "SINGLE_PASS_HQ", "MULTI_PASS_HQ"
         
     | 
| 
       1984 
1986 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.qvbr_settings.max_average_bitrate #=> Integer
         
     | 
| 
       1985 
1987 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.qvbr_settings.qvbr_quality_level #=> Integer
         
     | 
| 
         @@ -2021,7 +2023,7 @@ module Aws::MediaConvert 
     | 
|
| 
       2021 
2023 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.par_denominator #=> Integer
         
     | 
| 
       2022 
2024 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.par_numerator #=> Integer
         
     | 
| 
       2023 
2025 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.per_frame_metrics #=> Array
         
     | 
| 
       2024 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 2026 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       2025 
2027 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "MULTI_PASS"
         
     | 
| 
       2026 
2028 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.rate_control_mode #=> String, one of "VBR", "CBR"
         
     | 
| 
       2027 
2029 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
         
     | 
| 
         @@ -2043,7 +2045,7 @@ module Aws::MediaConvert 
     | 
|
| 
       2043 
2045 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.par_denominator #=> Integer
         
     | 
| 
       2044 
2046 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.par_numerator #=> Integer
         
     | 
| 
       2045 
2047 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.per_frame_metrics #=> Array
         
     | 
| 
       2046 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.prores_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 2048 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.prores_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       2047 
2049 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
         
     | 
| 
       2048 
2050 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.slow_pal #=> String, one of "DISABLED", "ENABLED"
         
     | 
| 
       2049 
2051 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.telecine #=> String, one of "NONE", "HARD"
         
     | 
| 
         @@ -2098,7 +2100,7 @@ module Aws::MediaConvert 
     | 
|
| 
       2098 
2100 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.framerate_denominator #=> Integer
         
     | 
| 
       2099 
2101 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.framerate_numerator #=> Integer
         
     | 
| 
       2100 
2102 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.per_frame_metrics #=> Array
         
     | 
| 
       2101 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 2103 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       2102 
2104 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.profile #=> String, one of "XAVC_HD_INTRA_CBG", "XAVC_4K_INTRA_CBG", "XAVC_4K_INTRA_VBR", "XAVC_HD", "XAVC_4K"
         
     | 
| 
       2103 
2105 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.slow_pal #=> String, one of "DISABLED", "ENABLED"
         
     | 
| 
       2104 
2106 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.softness #=> Integer
         
     | 
| 
         @@ -2541,6 +2543,33 @@ module Aws::MediaConvert 
     | 
|
| 
       2541 
2543 
     | 
    
         
             
                  req.send_request(options)
         
     | 
| 
       2542 
2544 
     | 
    
         
             
                end
         
     | 
| 
       2543 
2545 
     | 
    
         | 
| 
      
 2546 
     | 
    
         
            +
                # Retrieve a JSON array of up to twenty of your most recent jobs matched
         
     | 
| 
      
 2547 
     | 
    
         
            +
                # by a jobs query.
         
     | 
| 
      
 2548 
     | 
    
         
            +
                #
         
     | 
| 
      
 2549 
     | 
    
         
            +
                # @option params [required, String] :id
         
     | 
| 
      
 2550 
     | 
    
         
            +
                #   The ID of the jobs query.
         
     | 
| 
      
 2551 
     | 
    
         
            +
                #
         
     | 
| 
      
 2552 
     | 
    
         
            +
                # @return [Types::GetJobsQueryResultsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         
     | 
| 
      
 2553 
     | 
    
         
            +
                #
         
     | 
| 
      
 2554 
     | 
    
         
            +
                #   * {Types::GetJobsQueryResultsResponse#jobs #jobs} => Array<Types::Job>
         
     | 
| 
      
 2555 
     | 
    
         
            +
                #   * {Types::GetJobsQueryResultsResponse#next_token #next_token} => String
         
     | 
| 
      
 2556 
     | 
    
         
            +
                #   * {Types::GetJobsQueryResultsResponse#status #status} => String
         
     | 
| 
      
 2557 
     | 
    
         
            +
                #
         
     | 
| 
      
 2558 
     | 
    
         
            +
                # @example Request syntax with placeholder values
         
     | 
| 
      
 2559 
     | 
    
         
            +
                #
         
     | 
| 
      
 2560 
     | 
    
         
            +
                #   resp = client.get_jobs_query_results({
         
     | 
| 
      
 2561 
     | 
    
         
            +
                #     id: "__string", # required
         
     | 
| 
      
 2562 
     | 
    
         
            +
                #   })
         
     | 
| 
      
 2563 
     | 
    
         
            +
                #
         
     | 
| 
      
 2564 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/GetJobsQueryResults AWS API Documentation
         
     | 
| 
      
 2565 
     | 
    
         
            +
                #
         
     | 
| 
      
 2566 
     | 
    
         
            +
                # @overload get_jobs_query_results(params = {})
         
     | 
| 
      
 2567 
     | 
    
         
            +
                # @param [Hash] params ({})
         
     | 
| 
      
 2568 
     | 
    
         
            +
                def get_jobs_query_results(params = {}, options = {})
         
     | 
| 
      
 2569 
     | 
    
         
            +
                  req = build_request(:get_jobs_query_results, params)
         
     | 
| 
      
 2570 
     | 
    
         
            +
                  req.send_request(options)
         
     | 
| 
      
 2571 
     | 
    
         
            +
                end
         
     | 
| 
      
 2572 
     | 
    
         
            +
             
     | 
| 
       2544 
2573 
     | 
    
         
             
                # Retrieve the JSON for your policy.
         
     | 
| 
       2545 
2574 
     | 
    
         
             
                #
         
     | 
| 
       2546 
2575 
     | 
    
         
             
                # @return [Types::GetPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         
     | 
| 
         @@ -2904,7 +2933,7 @@ module Aws::MediaConvert 
     | 
|
| 
       2904 
2933 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.max_bitrate #=> Integer
         
     | 
| 
       2905 
2934 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.number_b_frames_between_reference_frames #=> Integer
         
     | 
| 
       2906 
2935 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.per_frame_metrics #=> Array
         
     | 
| 
       2907 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 2936 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       2908 
2937 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.qvbr_settings.qvbr_quality_level #=> Integer
         
     | 
| 
       2909 
2938 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.qvbr_settings.qvbr_quality_level_fine_tune #=> Float
         
     | 
| 
       2910 
2939 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.rate_control_mode #=> String, one of "QVBR"
         
     | 
| 
         @@ -2918,7 +2947,7 @@ module Aws::MediaConvert 
     | 
|
| 
       2918 
2947 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.framerate_numerator #=> Integer
         
     | 
| 
       2919 
2948 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
         
     | 
| 
       2920 
2949 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.per_frame_metrics #=> Array
         
     | 
| 
       2921 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 2950 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       2922 
2951 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
         
     | 
| 
       2923 
2952 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.slow_pal #=> String, one of "DISABLED", "ENABLED"
         
     | 
| 
       2924 
2953 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.telecine #=> String, one of "NONE", "HARD"
         
     | 
| 
         @@ -2962,7 +2991,7 @@ module Aws::MediaConvert 
     | 
|
| 
       2962 
2991 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.par_denominator #=> Integer
         
     | 
| 
       2963 
2992 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.par_numerator #=> Integer
         
     | 
| 
       2964 
2993 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.per_frame_metrics #=> Array
         
     | 
| 
       2965 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.h264_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 2994 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.h264_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       2966 
2995 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "SINGLE_PASS_HQ", "MULTI_PASS_HQ"
         
     | 
| 
       2967 
2996 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.qvbr_settings.max_average_bitrate #=> Integer
         
     | 
| 
       2968 
2997 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.qvbr_settings.qvbr_quality_level #=> Integer
         
     | 
| 
         @@ -3012,7 +3041,7 @@ module Aws::MediaConvert 
     | 
|
| 
       3012 
3041 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.par_denominator #=> Integer
         
     | 
| 
       3013 
3042 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.par_numerator #=> Integer
         
     | 
| 
       3014 
3043 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.per_frame_metrics #=> Array
         
     | 
| 
       3015 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.h265_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 3044 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.h265_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       3016 
3045 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "SINGLE_PASS_HQ", "MULTI_PASS_HQ"
         
     | 
| 
       3017 
3046 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.qvbr_settings.max_average_bitrate #=> Integer
         
     | 
| 
       3018 
3047 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.qvbr_settings.qvbr_quality_level #=> Integer
         
     | 
| 
         @@ -3054,7 +3083,7 @@ module Aws::MediaConvert 
     | 
|
| 
       3054 
3083 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.par_denominator #=> Integer
         
     | 
| 
       3055 
3084 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.par_numerator #=> Integer
         
     | 
| 
       3056 
3085 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.per_frame_metrics #=> Array
         
     | 
| 
       3057 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 3086 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       3058 
3087 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "MULTI_PASS"
         
     | 
| 
       3059 
3088 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.rate_control_mode #=> String, one of "VBR", "CBR"
         
     | 
| 
       3060 
3089 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
         
     | 
| 
         @@ -3076,7 +3105,7 @@ module Aws::MediaConvert 
     | 
|
| 
       3076 
3105 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.par_denominator #=> Integer
         
     | 
| 
       3077 
3106 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.par_numerator #=> Integer
         
     | 
| 
       3078 
3107 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.per_frame_metrics #=> Array
         
     | 
| 
       3079 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.prores_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 3108 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.prores_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       3080 
3109 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
         
     | 
| 
       3081 
3110 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.slow_pal #=> String, one of "DISABLED", "ENABLED"
         
     | 
| 
       3082 
3111 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.telecine #=> String, one of "NONE", "HARD"
         
     | 
| 
         @@ -3131,7 +3160,7 @@ module Aws::MediaConvert 
     | 
|
| 
       3131 
3160 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.framerate_denominator #=> Integer
         
     | 
| 
       3132 
3161 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.framerate_numerator #=> Integer
         
     | 
| 
       3133 
3162 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.per_frame_metrics #=> Array
         
     | 
| 
       3134 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 3163 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       3135 
3164 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.profile #=> String, one of "XAVC_HD_INTRA_CBG", "XAVC_4K_INTRA_CBG", "XAVC_4K_INTRA_VBR", "XAVC_HD", "XAVC_4K"
         
     | 
| 
       3136 
3165 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.slow_pal #=> String, one of "DISABLED", "ENABLED"
         
     | 
| 
       3137 
3166 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.softness #=> Integer
         
     | 
| 
         @@ -3778,7 +3807,7 @@ module Aws::MediaConvert 
     | 
|
| 
       3778 
3807 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.av_1_settings.max_bitrate #=> Integer
         
     | 
| 
       3779 
3808 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.av_1_settings.number_b_frames_between_reference_frames #=> Integer
         
     | 
| 
       3780 
3809 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.av_1_settings.per_frame_metrics #=> Array
         
     | 
| 
       3781 
     | 
    
         
            -
                #   resp.presets[0].settings.video_description.codec_settings.av_1_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 3810 
     | 
    
         
            +
                #   resp.presets[0].settings.video_description.codec_settings.av_1_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       3782 
3811 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.av_1_settings.qvbr_settings.qvbr_quality_level #=> Integer
         
     | 
| 
       3783 
3812 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.av_1_settings.qvbr_settings.qvbr_quality_level_fine_tune #=> Float
         
     | 
| 
       3784 
3813 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.av_1_settings.rate_control_mode #=> String, one of "QVBR"
         
     | 
| 
         @@ -3792,7 +3821,7 @@ module Aws::MediaConvert 
     | 
|
| 
       3792 
3821 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.avc_intra_settings.framerate_numerator #=> Integer
         
     | 
| 
       3793 
3822 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.avc_intra_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
         
     | 
| 
       3794 
3823 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.avc_intra_settings.per_frame_metrics #=> Array
         
     | 
| 
       3795 
     | 
    
         
            -
                #   resp.presets[0].settings.video_description.codec_settings.avc_intra_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 3824 
     | 
    
         
            +
                #   resp.presets[0].settings.video_description.codec_settings.avc_intra_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       3796 
3825 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.avc_intra_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
         
     | 
| 
       3797 
3826 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.avc_intra_settings.slow_pal #=> String, one of "DISABLED", "ENABLED"
         
     | 
| 
       3798 
3827 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.avc_intra_settings.telecine #=> String, one of "NONE", "HARD"
         
     | 
| 
         @@ -3836,7 +3865,7 @@ module Aws::MediaConvert 
     | 
|
| 
       3836 
3865 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.h264_settings.par_denominator #=> Integer
         
     | 
| 
       3837 
3866 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.h264_settings.par_numerator #=> Integer
         
     | 
| 
       3838 
3867 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.h264_settings.per_frame_metrics #=> Array
         
     | 
| 
       3839 
     | 
    
         
            -
                #   resp.presets[0].settings.video_description.codec_settings.h264_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 3868 
     | 
    
         
            +
                #   resp.presets[0].settings.video_description.codec_settings.h264_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       3840 
3869 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.h264_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "SINGLE_PASS_HQ", "MULTI_PASS_HQ"
         
     | 
| 
       3841 
3870 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.h264_settings.qvbr_settings.max_average_bitrate #=> Integer
         
     | 
| 
       3842 
3871 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.h264_settings.qvbr_settings.qvbr_quality_level #=> Integer
         
     | 
| 
         @@ -3886,7 +3915,7 @@ module Aws::MediaConvert 
     | 
|
| 
       3886 
3915 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.h265_settings.par_denominator #=> Integer
         
     | 
| 
       3887 
3916 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.h265_settings.par_numerator #=> Integer
         
     | 
| 
       3888 
3917 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.h265_settings.per_frame_metrics #=> Array
         
     | 
| 
       3889 
     | 
    
         
            -
                #   resp.presets[0].settings.video_description.codec_settings.h265_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 3918 
     | 
    
         
            +
                #   resp.presets[0].settings.video_description.codec_settings.h265_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       3890 
3919 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.h265_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "SINGLE_PASS_HQ", "MULTI_PASS_HQ"
         
     | 
| 
       3891 
3920 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.h265_settings.qvbr_settings.max_average_bitrate #=> Integer
         
     | 
| 
       3892 
3921 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.h265_settings.qvbr_settings.qvbr_quality_level #=> Integer
         
     | 
| 
         @@ -3928,7 +3957,7 @@ module Aws::MediaConvert 
     | 
|
| 
       3928 
3957 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.par_denominator #=> Integer
         
     | 
| 
       3929 
3958 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.par_numerator #=> Integer
         
     | 
| 
       3930 
3959 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.per_frame_metrics #=> Array
         
     | 
| 
       3931 
     | 
    
         
            -
                #   resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 3960 
     | 
    
         
            +
                #   resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       3932 
3961 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "MULTI_PASS"
         
     | 
| 
       3933 
3962 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.rate_control_mode #=> String, one of "VBR", "CBR"
         
     | 
| 
       3934 
3963 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.mpeg_2_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
         
     | 
| 
         @@ -3950,7 +3979,7 @@ module Aws::MediaConvert 
     | 
|
| 
       3950 
3979 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.prores_settings.par_denominator #=> Integer
         
     | 
| 
       3951 
3980 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.prores_settings.par_numerator #=> Integer
         
     | 
| 
       3952 
3981 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.prores_settings.per_frame_metrics #=> Array
         
     | 
| 
       3953 
     | 
    
         
            -
                #   resp.presets[0].settings.video_description.codec_settings.prores_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 3982 
     | 
    
         
            +
                #   resp.presets[0].settings.video_description.codec_settings.prores_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       3954 
3983 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.prores_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
         
     | 
| 
       3955 
3984 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.prores_settings.slow_pal #=> String, one of "DISABLED", "ENABLED"
         
     | 
| 
       3956 
3985 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.prores_settings.telecine #=> String, one of "NONE", "HARD"
         
     | 
| 
         @@ -4005,7 +4034,7 @@ module Aws::MediaConvert 
     | 
|
| 
       4005 
4034 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.xavc_settings.framerate_denominator #=> Integer
         
     | 
| 
       4006 
4035 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.xavc_settings.framerate_numerator #=> Integer
         
     | 
| 
       4007 
4036 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.xavc_settings.per_frame_metrics #=> Array
         
     | 
| 
       4008 
     | 
    
         
            -
                #   resp.presets[0].settings.video_description.codec_settings.xavc_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 4037 
     | 
    
         
            +
                #   resp.presets[0].settings.video_description.codec_settings.xavc_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       4009 
4038 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.xavc_settings.profile #=> String, one of "XAVC_HD_INTRA_CBG", "XAVC_4K_INTRA_CBG", "XAVC_4K_INTRA_VBR", "XAVC_HD", "XAVC_4K"
         
     | 
| 
       4010 
4039 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.xavc_settings.slow_pal #=> String, one of "DISABLED", "ENABLED"
         
     | 
| 
       4011 
4040 
     | 
    
         
             
                #   resp.presets[0].settings.video_description.codec_settings.xavc_settings.softness #=> Integer
         
     | 
| 
         @@ -4311,13 +4340,25 @@ module Aws::MediaConvert 
     | 
|
| 
       4311 
4340 
     | 
    
         
             
                #   resp.probe_results[0].container.tracks[0].audio_properties.frame_rate.numerator #=> Integer
         
     | 
| 
       4312 
4341 
     | 
    
         
             
                #   resp.probe_results[0].container.tracks[0].audio_properties.language_code #=> String
         
     | 
| 
       4313 
4342 
     | 
    
         
             
                #   resp.probe_results[0].container.tracks[0].audio_properties.sample_rate #=> Integer
         
     | 
| 
       4314 
     | 
    
         
            -
                #   resp.probe_results[0].container.tracks[0].codec #=> String, one of "UNKNOWN", "AAC", "AC3", "EAC3", "FLAC", "MP3", "OPUS", "PCM", "VORBIS", "AV1", "AVC", "HEVC", "JPEG2000", "MJPEG", "MP4V", "MPEG2", "PRORES", "THEORA", "VP8", "VP9", "C608", "C708", "WEBVTT"
         
     | 
| 
      
 4343 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].codec #=> String, one of "UNKNOWN", "AAC", "AC3", "EAC3", "FLAC", "MP3", "OPUS", "PCM", "VORBIS", "AV1", "AVC", "HEVC", "JPEG2000", "MJPEG", "MPEG1", "MP4V", "MPEG2", "PRORES", "THEORA", "VFW", "VP8", "VP9", "QTRLE", "C608", "C708", "WEBVTT"
         
     | 
| 
       4315 
4344 
     | 
    
         
             
                #   resp.probe_results[0].container.tracks[0].data_properties.language_code #=> String
         
     | 
| 
       4316 
4345 
     | 
    
         
             
                #   resp.probe_results[0].container.tracks[0].duration #=> Float
         
     | 
| 
       4317 
4346 
     | 
    
         
             
                #   resp.probe_results[0].container.tracks[0].index #=> Integer
         
     | 
| 
       4318 
4347 
     | 
    
         
             
                #   resp.probe_results[0].container.tracks[0].track_type #=> String, one of "video", "audio", "data"
         
     | 
| 
       4319 
4348 
     | 
    
         
             
                #   resp.probe_results[0].container.tracks[0].video_properties.bit_depth #=> Integer
         
     | 
| 
       4320 
4349 
     | 
    
         
             
                #   resp.probe_results[0].container.tracks[0].video_properties.bit_rate #=> Integer
         
     | 
| 
      
 4350 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.bit_depth #=> Integer
         
     | 
| 
      
 4351 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.chroma_subsampling #=> String
         
     | 
| 
      
 4352 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.coded_frame_rate.denominator #=> Integer
         
     | 
| 
      
 4353 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.coded_frame_rate.numerator #=> Integer
         
     | 
| 
      
 4354 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.color_primaries #=> String, one of "ITU_709", "UNSPECIFIED", "RESERVED", "ITU_470M", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "GENERIC_FILM", "ITU_2020", "SMPTE_428_1", "SMPTE_431_2", "SMPTE_EG_432_1", "IPT", "SMPTE_2067XYZ", "EBU_3213_E", "LAST"
         
     | 
| 
      
 4355 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.height #=> Integer
         
     | 
| 
      
 4356 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.level #=> String
         
     | 
| 
      
 4357 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.matrix_coefficients #=> String, one of "RGB", "ITU_709", "UNSPECIFIED", "RESERVED", "FCC", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "YCgCo", "ITU_2020_NCL", "ITU_2020_CL", "SMPTE_2085", "CD_NCL", "CD_CL", "ITU_2100ICtCp", "IPT", "EBU3213", "LAST"
         
     | 
| 
      
 4358 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.profile #=> String
         
     | 
| 
      
 4359 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.scan_type #=> String
         
     | 
| 
      
 4360 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.transfer_characteristics #=> String, one of "ITU_709", "UNSPECIFIED", "RESERVED", "ITU_470M", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "LINEAR", "LOG10_2", "LOC10_2_5", "IEC_61966_2_4", "ITU_1361", "IEC_61966_2_1", "ITU_2020_10bit", "ITU_2020_12bit", "SMPTE_2084", "SMPTE_428_1", "ARIB_B67", "LAST"
         
     | 
| 
      
 4361 
     | 
    
         
            +
                #   resp.probe_results[0].container.tracks[0].video_properties.codec_metadata.width #=> Integer
         
     | 
| 
       4321 
4362 
     | 
    
         
             
                #   resp.probe_results[0].container.tracks[0].video_properties.color_primaries #=> String, one of "ITU_709", "UNSPECIFIED", "RESERVED", "ITU_470M", "ITU_470BG", "SMPTE_170M", "SMPTE_240M", "GENERIC_FILM", "ITU_2020", "SMPTE_428_1", "SMPTE_431_2", "SMPTE_EG_432_1", "IPT", "SMPTE_2067XYZ", "EBU_3213_E", "LAST"
         
     | 
| 
       4322 
4363 
     | 
    
         
             
                #   resp.probe_results[0].container.tracks[0].video_properties.frame_rate.denominator #=> Integer
         
     | 
| 
       4323 
4364 
     | 
    
         
             
                #   resp.probe_results[0].container.tracks[0].video_properties.frame_rate.numerator #=> Integer
         
     | 
| 
         @@ -4442,6 +4483,58 @@ module Aws::MediaConvert 
     | 
|
| 
       4442 
4483 
     | 
    
         
             
                  req.send_request(options)
         
     | 
| 
       4443 
4484 
     | 
    
         
             
                end
         
     | 
| 
       4444 
4485 
     | 
    
         | 
| 
      
 4486 
     | 
    
         
            +
                # Start an asynchronous jobs query using the provided filters. To
         
     | 
| 
      
 4487 
     | 
    
         
            +
                # receive the list of jobs that match your query, call the
         
     | 
| 
      
 4488 
     | 
    
         
            +
                # GetJobsQueryResults API using the query ID returned by this API.
         
     | 
| 
      
 4489 
     | 
    
         
            +
                #
         
     | 
| 
      
 4490 
     | 
    
         
            +
                # @option params [Array<Types::JobsQueryFilter>] :filter_list
         
     | 
| 
      
 4491 
     | 
    
         
            +
                #   Optional. Provide an array of JobsQueryFilters for your StartJobsQuery
         
     | 
| 
      
 4492 
     | 
    
         
            +
                #   request.
         
     | 
| 
      
 4493 
     | 
    
         
            +
                #
         
     | 
| 
      
 4494 
     | 
    
         
            +
                # @option params [Integer] :max_results
         
     | 
| 
      
 4495 
     | 
    
         
            +
                #   Optional. Number of jobs, up to twenty, that will be included in the
         
     | 
| 
      
 4496 
     | 
    
         
            +
                #   jobs query.
         
     | 
| 
      
 4497 
     | 
    
         
            +
                #
         
     | 
| 
      
 4498 
     | 
    
         
            +
                # @option params [String] :next_token
         
     | 
| 
      
 4499 
     | 
    
         
            +
                #   Use this string to request the next batch of jobs matched by a jobs
         
     | 
| 
      
 4500 
     | 
    
         
            +
                #   query.
         
     | 
| 
      
 4501 
     | 
    
         
            +
                #
         
     | 
| 
      
 4502 
     | 
    
         
            +
                # @option params [String] :order
         
     | 
| 
      
 4503 
     | 
    
         
            +
                #   Optional. When you request lists of resources, you can specify whether
         
     | 
| 
      
 4504 
     | 
    
         
            +
                #   they are sorted in ASCENDING or DESCENDING order. Default varies by
         
     | 
| 
      
 4505 
     | 
    
         
            +
                #   resource.
         
     | 
| 
      
 4506 
     | 
    
         
            +
                #
         
     | 
| 
      
 4507 
     | 
    
         
            +
                # @return [Types::StartJobsQueryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         
     | 
| 
      
 4508 
     | 
    
         
            +
                #
         
     | 
| 
      
 4509 
     | 
    
         
            +
                #   * {Types::StartJobsQueryResponse#id #id} => String
         
     | 
| 
      
 4510 
     | 
    
         
            +
                #
         
     | 
| 
      
 4511 
     | 
    
         
            +
                # @example Request syntax with placeholder values
         
     | 
| 
      
 4512 
     | 
    
         
            +
                #
         
     | 
| 
      
 4513 
     | 
    
         
            +
                #   resp = client.start_jobs_query({
         
     | 
| 
      
 4514 
     | 
    
         
            +
                #     filter_list: [
         
     | 
| 
      
 4515 
     | 
    
         
            +
                #       {
         
     | 
| 
      
 4516 
     | 
    
         
            +
                #         key: "queue", # accepts queue, status, fileInput, jobEngineVersionRequested, jobEngineVersionUsed, audioCodec, videoCodec
         
     | 
| 
      
 4517 
     | 
    
         
            +
                #         values: ["__stringMax100"],
         
     | 
| 
      
 4518 
     | 
    
         
            +
                #       },
         
     | 
| 
      
 4519 
     | 
    
         
            +
                #     ],
         
     | 
| 
      
 4520 
     | 
    
         
            +
                #     max_results: 1,
         
     | 
| 
      
 4521 
     | 
    
         
            +
                #     next_token: "__string",
         
     | 
| 
      
 4522 
     | 
    
         
            +
                #     order: "ASCENDING", # accepts ASCENDING, DESCENDING
         
     | 
| 
      
 4523 
     | 
    
         
            +
                #   })
         
     | 
| 
      
 4524 
     | 
    
         
            +
                #
         
     | 
| 
      
 4525 
     | 
    
         
            +
                # @example Response structure
         
     | 
| 
      
 4526 
     | 
    
         
            +
                #
         
     | 
| 
      
 4527 
     | 
    
         
            +
                #   resp.id #=> String
         
     | 
| 
      
 4528 
     | 
    
         
            +
                #
         
     | 
| 
      
 4529 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/StartJobsQuery AWS API Documentation
         
     | 
| 
      
 4530 
     | 
    
         
            +
                #
         
     | 
| 
      
 4531 
     | 
    
         
            +
                # @overload start_jobs_query(params = {})
         
     | 
| 
      
 4532 
     | 
    
         
            +
                # @param [Hash] params ({})
         
     | 
| 
      
 4533 
     | 
    
         
            +
                def start_jobs_query(params = {}, options = {})
         
     | 
| 
      
 4534 
     | 
    
         
            +
                  req = build_request(:start_jobs_query, params)
         
     | 
| 
      
 4535 
     | 
    
         
            +
                  req.send_request(options)
         
     | 
| 
      
 4536 
     | 
    
         
            +
                end
         
     | 
| 
      
 4537 
     | 
    
         
            +
             
     | 
| 
       4445 
4538 
     | 
    
         
             
                # Add tags to a MediaConvert queue, preset, or job template. For
         
     | 
| 
       4446 
4539 
     | 
    
         
             
                # information about tagging, see the User Guide at
         
     | 
| 
       4447 
4540 
     | 
    
         
             
                # https://docs.aws.amazon.com/mediaconvert/latest/ug/tagging-resources.html
         
     | 
| 
         @@ -4985,7 +5078,7 @@ module Aws::MediaConvert 
     | 
|
| 
       4985 
5078 
     | 
    
         
             
                #             gop_size: 1.0,
         
     | 
| 
       4986 
5079 
     | 
    
         
             
                #             max_bitrate: 1,
         
     | 
| 
       4987 
5080 
     | 
    
         
             
                #             number_b_frames_between_reference_frames: 1,
         
     | 
| 
       4988 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 5081 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       4989 
5082 
     | 
    
         
             
                #             qvbr_settings: {
         
     | 
| 
       4990 
5083 
     | 
    
         
             
                #               qvbr_quality_level: 1,
         
     | 
| 
       4991 
5084 
     | 
    
         
             
                #               qvbr_quality_level_fine_tune: 1.0,
         
     | 
| 
         @@ -5004,7 +5097,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5004 
5097 
     | 
    
         
             
                #             framerate_denominator: 1,
         
     | 
| 
       5005 
5098 
     | 
    
         
             
                #             framerate_numerator: 1,
         
     | 
| 
       5006 
5099 
     | 
    
         
             
                #             interlace_mode: "PROGRESSIVE", # accepts PROGRESSIVE, TOP_FIELD, BOTTOM_FIELD, FOLLOW_TOP_FIELD, FOLLOW_BOTTOM_FIELD
         
     | 
| 
       5007 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 5100 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       5008 
5101 
     | 
    
         
             
                #             scan_type_conversion_mode: "INTERLACED", # accepts INTERLACED, INTERLACED_OPTIMIZE
         
     | 
| 
       5009 
5102 
     | 
    
         
             
                #             slow_pal: "DISABLED", # accepts DISABLED, ENABLED
         
     | 
| 
       5010 
5103 
     | 
    
         
             
                #             telecine: "NONE", # accepts NONE, HARD
         
     | 
| 
         @@ -5055,7 +5148,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5055 
5148 
     | 
    
         
             
                #             par_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
         
     | 
| 
       5056 
5149 
     | 
    
         
             
                #             par_denominator: 1,
         
     | 
| 
       5057 
5150 
     | 
    
         
             
                #             par_numerator: 1,
         
     | 
| 
       5058 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 5151 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       5059 
5152 
     | 
    
         
             
                #             quality_tuning_level: "SINGLE_PASS", # accepts SINGLE_PASS, SINGLE_PASS_HQ, MULTI_PASS_HQ
         
     | 
| 
       5060 
5153 
     | 
    
         
             
                #             qvbr_settings: {
         
     | 
| 
       5061 
5154 
     | 
    
         
             
                #               max_average_bitrate: 1,
         
     | 
| 
         @@ -5110,7 +5203,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5110 
5203 
     | 
    
         
             
                #             par_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
         
     | 
| 
       5111 
5204 
     | 
    
         
             
                #             par_denominator: 1,
         
     | 
| 
       5112 
5205 
     | 
    
         
             
                #             par_numerator: 1,
         
     | 
| 
       5113 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 5206 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       5114 
5207 
     | 
    
         
             
                #             quality_tuning_level: "SINGLE_PASS", # accepts SINGLE_PASS, SINGLE_PASS_HQ, MULTI_PASS_HQ
         
     | 
| 
       5115 
5208 
     | 
    
         
             
                #             qvbr_settings: {
         
     | 
| 
       5116 
5209 
     | 
    
         
             
                #               max_average_bitrate: 1,
         
     | 
| 
         @@ -5155,7 +5248,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5155 
5248 
     | 
    
         
             
                #             par_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
         
     | 
| 
       5156 
5249 
     | 
    
         
             
                #             par_denominator: 1,
         
     | 
| 
       5157 
5250 
     | 
    
         
             
                #             par_numerator: 1,
         
     | 
| 
       5158 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 5251 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       5159 
5252 
     | 
    
         
             
                #             quality_tuning_level: "SINGLE_PASS", # accepts SINGLE_PASS, MULTI_PASS
         
     | 
| 
       5160 
5253 
     | 
    
         
             
                #             rate_control_mode: "VBR", # accepts VBR, CBR
         
     | 
| 
       5161 
5254 
     | 
    
         
             
                #             scan_type_conversion_mode: "INTERLACED", # accepts INTERLACED, INTERLACED_OPTIMIZE
         
     | 
| 
         @@ -5178,7 +5271,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5178 
5271 
     | 
    
         
             
                #             par_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
         
     | 
| 
       5179 
5272 
     | 
    
         
             
                #             par_denominator: 1,
         
     | 
| 
       5180 
5273 
     | 
    
         
             
                #             par_numerator: 1,
         
     | 
| 
       5181 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 5274 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       5182 
5275 
     | 
    
         
             
                #             scan_type_conversion_mode: "INTERLACED", # accepts INTERLACED, INTERLACED_OPTIMIZE
         
     | 
| 
       5183 
5276 
     | 
    
         
             
                #             slow_pal: "DISABLED", # accepts DISABLED, ENABLED
         
     | 
| 
       5184 
5277 
     | 
    
         
             
                #             telecine: "NONE", # accepts NONE, HARD
         
     | 
| 
         @@ -5242,7 +5335,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5242 
5335 
     | 
    
         
             
                #             framerate_conversion_algorithm: "DUPLICATE_DROP", # accepts DUPLICATE_DROP, INTERPOLATE, FRAMEFORMER, MAINTAIN_FRAME_COUNT
         
     | 
| 
       5243 
5336 
     | 
    
         
             
                #             framerate_denominator: 1,
         
     | 
| 
       5244 
5337 
     | 
    
         
             
                #             framerate_numerator: 1,
         
     | 
| 
       5245 
     | 
    
         
            -
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR
         
     | 
| 
      
 5338 
     | 
    
         
            +
                #             per_frame_metrics: ["PSNR"], # accepts PSNR, SSIM, MS_SSIM, PSNR_HVS, VMAF, QVBR, SHOT_CHANGE
         
     | 
| 
       5246 
5339 
     | 
    
         
             
                #             profile: "XAVC_HD_INTRA_CBG", # accepts XAVC_HD_INTRA_CBG, XAVC_4K_INTRA_CBG, XAVC_4K_INTRA_VBR, XAVC_HD, XAVC_4K
         
     | 
| 
       5247 
5340 
     | 
    
         
             
                #             slow_pal: "DISABLED", # accepts DISABLED, ENABLED
         
     | 
| 
       5248 
5341 
     | 
    
         
             
                #             softness: 1,
         
     | 
| 
         @@ -5733,7 +5826,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5733 
5826 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.max_bitrate #=> Integer
         
     | 
| 
       5734 
5827 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.number_b_frames_between_reference_frames #=> Integer
         
     | 
| 
       5735 
5828 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.per_frame_metrics #=> Array
         
     | 
| 
       5736 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 5829 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       5737 
5830 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.qvbr_settings.qvbr_quality_level #=> Integer
         
     | 
| 
       5738 
5831 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.qvbr_settings.qvbr_quality_level_fine_tune #=> Float
         
     | 
| 
       5739 
5832 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.av_1_settings.rate_control_mode #=> String, one of "QVBR"
         
     | 
| 
         @@ -5747,7 +5840,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5747 
5840 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.framerate_numerator #=> Integer
         
     | 
| 
       5748 
5841 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.interlace_mode #=> String, one of "PROGRESSIVE", "TOP_FIELD", "BOTTOM_FIELD", "FOLLOW_TOP_FIELD", "FOLLOW_BOTTOM_FIELD"
         
     | 
| 
       5749 
5842 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.per_frame_metrics #=> Array
         
     | 
| 
       5750 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 5843 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       5751 
5844 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
         
     | 
| 
       5752 
5845 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.slow_pal #=> String, one of "DISABLED", "ENABLED"
         
     | 
| 
       5753 
5846 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.avc_intra_settings.telecine #=> String, one of "NONE", "HARD"
         
     | 
| 
         @@ -5791,7 +5884,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5791 
5884 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.par_denominator #=> Integer
         
     | 
| 
       5792 
5885 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.par_numerator #=> Integer
         
     | 
| 
       5793 
5886 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.per_frame_metrics #=> Array
         
     | 
| 
       5794 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.h264_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 5887 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.h264_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       5795 
5888 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "SINGLE_PASS_HQ", "MULTI_PASS_HQ"
         
     | 
| 
       5796 
5889 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.qvbr_settings.max_average_bitrate #=> Integer
         
     | 
| 
       5797 
5890 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h264_settings.qvbr_settings.qvbr_quality_level #=> Integer
         
     | 
| 
         @@ -5841,7 +5934,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5841 
5934 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.par_denominator #=> Integer
         
     | 
| 
       5842 
5935 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.par_numerator #=> Integer
         
     | 
| 
       5843 
5936 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.per_frame_metrics #=> Array
         
     | 
| 
       5844 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.h265_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 5937 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.h265_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       5845 
5938 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "SINGLE_PASS_HQ", "MULTI_PASS_HQ"
         
     | 
| 
       5846 
5939 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.qvbr_settings.max_average_bitrate #=> Integer
         
     | 
| 
       5847 
5940 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.h265_settings.qvbr_settings.qvbr_quality_level #=> Integer
         
     | 
| 
         @@ -5883,7 +5976,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5883 
5976 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.par_denominator #=> Integer
         
     | 
| 
       5884 
5977 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.par_numerator #=> Integer
         
     | 
| 
       5885 
5978 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.per_frame_metrics #=> Array
         
     | 
| 
       5886 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 5979 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       5887 
5980 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.quality_tuning_level #=> String, one of "SINGLE_PASS", "MULTI_PASS"
         
     | 
| 
       5888 
5981 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.rate_control_mode #=> String, one of "VBR", "CBR"
         
     | 
| 
       5889 
5982 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.mpeg_2_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
         
     | 
| 
         @@ -5905,7 +5998,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5905 
5998 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.par_denominator #=> Integer
         
     | 
| 
       5906 
5999 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.par_numerator #=> Integer
         
     | 
| 
       5907 
6000 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.per_frame_metrics #=> Array
         
     | 
| 
       5908 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.prores_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 6001 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.prores_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       5909 
6002 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.scan_type_conversion_mode #=> String, one of "INTERLACED", "INTERLACED_OPTIMIZE"
         
     | 
| 
       5910 
6003 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.slow_pal #=> String, one of "DISABLED", "ENABLED"
         
     | 
| 
       5911 
6004 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.prores_settings.telecine #=> String, one of "NONE", "HARD"
         
     | 
| 
         @@ -5960,7 +6053,7 @@ module Aws::MediaConvert 
     | 
|
| 
       5960 
6053 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.framerate_denominator #=> Integer
         
     | 
| 
       5961 
6054 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.framerate_numerator #=> Integer
         
     | 
| 
       5962 
6055 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.per_frame_metrics #=> Array
         
     | 
| 
       5963 
     | 
    
         
            -
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR"
         
     | 
| 
      
 6056 
     | 
    
         
            +
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.per_frame_metrics[0] #=> String, one of "PSNR", "SSIM", "MS_SSIM", "PSNR_HVS", "VMAF", "QVBR", "SHOT_CHANGE"
         
     | 
| 
       5964 
6057 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.profile #=> String, one of "XAVC_HD_INTRA_CBG", "XAVC_4K_INTRA_CBG", "XAVC_4K_INTRA_VBR", "XAVC_HD", "XAVC_4K"
         
     | 
| 
       5965 
6058 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.slow_pal #=> String, one of "DISABLED", "ENABLED"
         
     | 
| 
       5966 
6059 
     | 
    
         
             
                #   resp.preset.settings.video_description.codec_settings.xavc_settings.softness #=> Integer
         
     | 
| 
         @@ -6180,7 +6273,7 @@ module Aws::MediaConvert 
     | 
|
| 
       6180 
6273 
     | 
    
         
             
                    tracer: tracer
         
     | 
| 
       6181 
6274 
     | 
    
         
             
                  )
         
     | 
| 
       6182 
6275 
     | 
    
         
             
                  context[:gem_name] = 'aws-sdk-mediaconvert'
         
     | 
| 
       6183 
     | 
    
         
            -
                  context[:gem_version] = '1. 
     | 
| 
      
 6276 
     | 
    
         
            +
                  context[:gem_version] = '1.171.0'
         
     | 
| 
       6184 
6277 
     | 
    
         
             
                  Seahorse::Client::Request.new(handlers, context)
         
     | 
| 
       6185 
6278 
     | 
    
         
             
                end
         
     | 
| 
       6186 
6279 
     | 
    
         |