aws-sdk-mediaconvert 1.170.0 → 1.172.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 +161 -48
 - data/lib/aws-sdk-mediaconvert/client_api.rb +133 -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 +492 -81
 - data/lib/aws-sdk-mediaconvert.rb +1 -1
 - data/sig/client.rbs +122 -48
 - data/sig/errors.rbs +3 -0
 - data/sig/types.rbs +81 -12
 - metadata +3 -3
 
| 
         @@ -546,6 +546,10 @@ module Aws::MediaConvert 
     | 
|
| 
       546 
546 
     | 
    
         
             
                #   you need to comply with a loudness standard.
         
     | 
| 
       547 
547 
     | 
    
         
             
                #   @return [Types::AudioNormalizationSettings]
         
     | 
| 
       548 
548 
     | 
    
         
             
                #
         
     | 
| 
      
 549 
     | 
    
         
            +
                # @!attribute [rw] audio_pitch_correction_settings
         
     | 
| 
      
 550 
     | 
    
         
            +
                #   Settings for audio pitch correction during framerate conversion.
         
     | 
| 
      
 551 
     | 
    
         
            +
                #   @return [Types::AudioPitchCorrectionSettings]
         
     | 
| 
      
 552 
     | 
    
         
            +
                #
         
     | 
| 
       549 
553 
     | 
    
         
             
                # @!attribute [rw] audio_source_name
         
     | 
| 
       550 
554 
     | 
    
         
             
                #   Specifies which audio data to use from each input. In the simplest
         
     | 
| 
       551 
555 
     | 
    
         
             
                #   case, specify an "Audio Selector":#inputs-audio\_selector by name
         
     | 
| 
         @@ -597,11 +601,16 @@ module Aws::MediaConvert 
     | 
|
| 
       597 
601 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       598 
602 
     | 
    
         
             
                #
         
     | 
| 
       599 
603 
     | 
    
         
             
                # @!attribute [rw] language_code
         
     | 
| 
       600 
     | 
    
         
            -
                #    
     | 
| 
       601 
     | 
    
         
            -
                #   language  
     | 
| 
       602 
     | 
    
         
            -
                #    
     | 
| 
       603 
     | 
    
         
            -
                #    
     | 
| 
       604 
     | 
    
         
            -
                #    
     | 
| 
      
 604 
     | 
    
         
            +
                #   Specify the language for your output audio track. To follow the
         
     | 
| 
      
 605 
     | 
    
         
            +
                #   input language: Leave blank. When you do, also set Language code
         
     | 
| 
      
 606 
     | 
    
         
            +
                #   control to Follow input. If no input language is detected
         
     | 
| 
      
 607 
     | 
    
         
            +
                #   MediaConvert will not write an output language code. To follow the
         
     | 
| 
      
 608 
     | 
    
         
            +
                #   input langauge, but fall back to a specified language code if there
         
     | 
| 
      
 609 
     | 
    
         
            +
                #   is no input language to follow: Enter an ISO 639-2 three-letter
         
     | 
| 
      
 610 
     | 
    
         
            +
                #   language code in all capital letters. When you do, also set Language
         
     | 
| 
      
 611 
     | 
    
         
            +
                #   code control to Follow input. To specify the language code: Enter an
         
     | 
| 
      
 612 
     | 
    
         
            +
                #   ISO 639 three-letter language code in all capital letters. When you
         
     | 
| 
      
 613 
     | 
    
         
            +
                #   do, also set Language code control to Use configured.
         
     | 
| 
       605 
614 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       606 
615 
     | 
    
         
             
                #
         
     | 
| 
       607 
616 
     | 
    
         
             
                # @!attribute [rw] language_code_control
         
     | 
| 
         @@ -630,6 +639,7 @@ module Aws::MediaConvert 
     | 
|
| 
       630 
639 
     | 
    
         
             
                class AudioDescription < Struct.new(
         
     | 
| 
       631 
640 
     | 
    
         
             
                  :audio_channel_tagging_settings,
         
     | 
| 
       632 
641 
     | 
    
         
             
                  :audio_normalization_settings,
         
     | 
| 
      
 642 
     | 
    
         
            +
                  :audio_pitch_correction_settings,
         
     | 
| 
       633 
643 
     | 
    
         
             
                  :audio_source_name,
         
     | 
| 
       634 
644 
     | 
    
         
             
                  :audio_type,
         
     | 
| 
       635 
645 
     | 
    
         
             
                  :audio_type_control,
         
     | 
| 
         @@ -710,6 +720,26 @@ module Aws::MediaConvert 
     | 
|
| 
       710 
720 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       711 
721 
     | 
    
         
             
                end
         
     | 
| 
       712 
722 
     | 
    
         | 
| 
      
 723 
     | 
    
         
            +
                # Settings for audio pitch correction during framerate conversion.
         
     | 
| 
      
 724 
     | 
    
         
            +
                #
         
     | 
| 
      
 725 
     | 
    
         
            +
                # @!attribute [rw] slow_pal_pitch_correction
         
     | 
| 
      
 726 
     | 
    
         
            +
                #   Use Slow PAL pitch correction to compensate for audio pitch changes
         
     | 
| 
      
 727 
     | 
    
         
            +
                #   during slow PAL frame rate conversion. This setting only applies
         
     | 
| 
      
 728 
     | 
    
         
            +
                #   when Slow PAL is enabled in your output video codec settings. To
         
     | 
| 
      
 729 
     | 
    
         
            +
                #   automatically apply audio pitch correction: Choose Enabled.
         
     | 
| 
      
 730 
     | 
    
         
            +
                #   MediaConvert automatically applies a pitch correction to your output
         
     | 
| 
      
 731 
     | 
    
         
            +
                #   to match the original content's audio pitch. To not apply audio
         
     | 
| 
      
 732 
     | 
    
         
            +
                #   pitch correction: Keep the default value, Disabled.
         
     | 
| 
      
 733 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 734 
     | 
    
         
            +
                #
         
     | 
| 
      
 735 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/AudioPitchCorrectionSettings AWS API Documentation
         
     | 
| 
      
 736 
     | 
    
         
            +
                #
         
     | 
| 
      
 737 
     | 
    
         
            +
                class AudioPitchCorrectionSettings < Struct.new(
         
     | 
| 
      
 738 
     | 
    
         
            +
                  :slow_pal_pitch_correction)
         
     | 
| 
      
 739 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 740 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 741 
     | 
    
         
            +
                end
         
     | 
| 
      
 742 
     | 
    
         
            +
             
     | 
| 
       713 
743 
     | 
    
         
             
                # Details about the media file's audio track.
         
     | 
| 
       714 
744 
     | 
    
         
             
                #
         
     | 
| 
       715 
745 
     | 
    
         
             
                # @!attribute [rw] bit_depth
         
     | 
| 
         @@ -725,7 +755,8 @@ module Aws::MediaConvert 
     | 
|
| 
       725 
755 
     | 
    
         
             
                #   @return [Integer]
         
     | 
| 
       726 
756 
     | 
    
         
             
                #
         
     | 
| 
       727 
757 
     | 
    
         
             
                # @!attribute [rw] frame_rate
         
     | 
| 
       728 
     | 
    
         
            -
                #   The frame rate of the video or audio track 
     | 
| 
      
 758 
     | 
    
         
            +
                #   The frame rate of the video or audio track, expressed as a fraction
         
     | 
| 
      
 759 
     | 
    
         
            +
                #   with numerator and denominator values.
         
     | 
| 
       729 
760 
     | 
    
         
             
                #   @return [Types::FrameRate]
         
     | 
| 
       730 
761 
     | 
    
         
             
                #
         
     | 
| 
       731 
762 
     | 
    
         
             
                # @!attribute [rw] language_code
         
     | 
| 
         @@ -808,9 +839,8 @@ module Aws::MediaConvert 
     | 
|
| 
       808 
839 
     | 
    
         
             
                #   @return [Types::HlsRenditionGroupSettings]
         
     | 
| 
       809 
840 
     | 
    
         
             
                #
         
     | 
| 
       810 
841 
     | 
    
         
             
                # @!attribute [rw] language_code
         
     | 
| 
       811 
     | 
    
         
            -
                #   Specify the language  
     | 
| 
       812 
     | 
    
         
            -
                #    
     | 
| 
       813 
     | 
    
         
            -
                #   job settings choose from an ISO 639-2 three-letter code listed at
         
     | 
| 
      
 842 
     | 
    
         
            +
                #   Specify the language, using an ISO 639-2 three-letter code in all
         
     | 
| 
      
 843 
     | 
    
         
            +
                #   capital letters. You can find a list of codes at:
         
     | 
| 
       814 
844 
     | 
    
         
             
                #   https://www.loc.gov/standards/iso639-2/php/code\_list.php
         
     | 
| 
       815 
845 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       816 
846 
     | 
    
         
             
                #
         
     | 
| 
         @@ -849,24 +879,48 @@ module Aws::MediaConvert 
     | 
|
| 
       849 
879 
     | 
    
         
             
                #   Identifier (PID) values for MPEG Transport Stream inputs. Use this
         
     | 
| 
       850 
880 
     | 
    
         
             
                #   when you know the exact PID values of your audio streams. Track:
         
     | 
| 
       851 
881 
     | 
    
         
             
                #   Default. Select audio by track number. This is the most common
         
     | 
| 
       852 
     | 
    
         
            -
                #   option and works with most input container formats.  
     | 
| 
       853 
     | 
    
         
            -
                #    
     | 
| 
       854 
     | 
    
         
            -
                #    
     | 
| 
       855 
     | 
    
         
            -
                #    
     | 
| 
       856 
     | 
    
         
            -
                #    
     | 
| 
       857 
     | 
    
         
            -
                #    
     | 
| 
       858 
     | 
    
         
            -
                #    
     | 
| 
       859 
     | 
    
         
            -
                #    
     | 
| 
       860 
     | 
    
         
            -
                #    
     | 
| 
       861 
     | 
    
         
            -
                #    
     | 
| 
      
 882 
     | 
    
         
            +
                #   option and works with most input container formats. If more types of
         
     | 
| 
      
 883 
     | 
    
         
            +
                #   audio data get recognized in the future, these numberings may shift,
         
     | 
| 
      
 884 
     | 
    
         
            +
                #   but the numberings used for Stream mode will not. Language code:
         
     | 
| 
      
 885 
     | 
    
         
            +
                #   Select audio by language using an ISO 639-2 or ISO 639-3
         
     | 
| 
      
 886 
     | 
    
         
            +
                #   three-letter code in all capital letters. Use this when your source
         
     | 
| 
      
 887 
     | 
    
         
            +
                #   has embedded language metadata and you want to select tracks based
         
     | 
| 
      
 888 
     | 
    
         
            +
                #   on their language. HLS rendition group: Select audio from an HLS
         
     | 
| 
      
 889 
     | 
    
         
            +
                #   rendition group. Use this when your input is an HLS package with
         
     | 
| 
      
 890 
     | 
    
         
            +
                #   multiple audio renditions and you want to select specific rendition
         
     | 
| 
      
 891 
     | 
    
         
            +
                #   groups. All PCM: Select all uncompressed PCM audio tracks from your
         
     | 
| 
      
 892 
     | 
    
         
            +
                #   input automatically. This is useful when you want to include all PCM
         
     | 
| 
      
 893 
     | 
    
         
            +
                #   audio tracks without specifying individual track numbers. Stream:
         
     | 
| 
      
 894 
     | 
    
         
            +
                #   Select audio by stream number. Stream numbers include all tracks in
         
     | 
| 
      
 895 
     | 
    
         
            +
                #   the source file, regardless of type, and correspond to either the
         
     | 
| 
      
 896 
     | 
    
         
            +
                #   order of tracks in the file, or if applicable, the stream number
         
     | 
| 
      
 897 
     | 
    
         
            +
                #   metadata of the track. Although all tracks count toward these stream
         
     | 
| 
      
 898 
     | 
    
         
            +
                #   numbers, in this audio selector context, only the stream number of a
         
     | 
| 
      
 899 
     | 
    
         
            +
                #   track containing audio data may be used. If your source file
         
     | 
| 
      
 900 
     | 
    
         
            +
                #   contains a track which is not recognized by the service, then the
         
     | 
| 
      
 901 
     | 
    
         
            +
                #   corresponding stream number will still be reserved for future use.
         
     | 
| 
      
 902 
     | 
    
         
            +
                #   If more types of audio data get recognized in the future, these
         
     | 
| 
      
 903 
     | 
    
         
            +
                #   numberings will not shift.
         
     | 
| 
       862 
904 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       863 
905 
     | 
    
         
             
                #
         
     | 
| 
      
 906 
     | 
    
         
            +
                # @!attribute [rw] streams
         
     | 
| 
      
 907 
     | 
    
         
            +
                #   Identify a track from the input audio to include in this selector by
         
     | 
| 
      
 908 
     | 
    
         
            +
                #   entering the stream index number. These numberings count all tracks
         
     | 
| 
      
 909 
     | 
    
         
            +
                #   in the input file, but only a track containing audio data may be
         
     | 
| 
      
 910 
     | 
    
         
            +
                #   used here. To include several tracks in a single audio selector,
         
     | 
| 
      
 911 
     | 
    
         
            +
                #   specify multiple tracks as follows. Using the console, enter a
         
     | 
| 
      
 912 
     | 
    
         
            +
                #   comma-separated list. For example, type "1,2,3" to include tracks
         
     | 
| 
      
 913 
     | 
    
         
            +
                #   1 through 3.
         
     | 
| 
      
 914 
     | 
    
         
            +
                #   @return [Array<Integer>]
         
     | 
| 
      
 915 
     | 
    
         
            +
                #
         
     | 
| 
       864 
916 
     | 
    
         
             
                # @!attribute [rw] tracks
         
     | 
| 
       865 
917 
     | 
    
         
             
                #   Identify a track from the input audio to include in this selector by
         
     | 
| 
       866 
     | 
    
         
            -
                #   entering the track index number.  
     | 
| 
       867 
     | 
    
         
            -
                #    
     | 
| 
       868 
     | 
    
         
            -
                #    
     | 
| 
       869 
     | 
    
         
            -
                #    
     | 
| 
      
 918 
     | 
    
         
            +
                #   entering the track index number. These numberings include only
         
     | 
| 
      
 919 
     | 
    
         
            +
                #   tracks recognized as audio. If the service recognizes more types of
         
     | 
| 
      
 920 
     | 
    
         
            +
                #   audio tracks in the future, these numberings may shift. To include
         
     | 
| 
      
 921 
     | 
    
         
            +
                #   several tracks in a single audio selector, specify multiple tracks
         
     | 
| 
      
 922 
     | 
    
         
            +
                #   as follows. Using the console, enter a comma-separated list. For
         
     | 
| 
      
 923 
     | 
    
         
            +
                #   example, type "1,2,3" to include tracks 1 through 3.
         
     | 
| 
       870 
924 
     | 
    
         
             
                #   @return [Array<Integer>]
         
     | 
| 
       871 
925 
     | 
    
         
             
                #
         
     | 
| 
       872 
926 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/AudioSelector AWS API Documentation
         
     | 
| 
         @@ -883,6 +937,7 @@ module Aws::MediaConvert 
     | 
|
| 
       883 
937 
     | 
    
         
             
                  :program_selection,
         
     | 
| 
       884 
938 
     | 
    
         
             
                  :remix_settings,
         
     | 
| 
       885 
939 
     | 
    
         
             
                  :selector_type,
         
     | 
| 
      
 940 
     | 
    
         
            +
                  :streams,
         
     | 
| 
       886 
941 
     | 
    
         
             
                  :tracks)
         
     | 
| 
       887 
942 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       888 
943 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
         @@ -1233,7 +1288,8 @@ module Aws::MediaConvert 
     | 
|
| 
       1233 
1288 
     | 
    
         
             
                #   Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
         
     | 
| 
       1234 
1289 
     | 
    
         
             
                #   System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
         
     | 
| 
       1235 
1290 
     | 
    
         
             
                #   Quality-Defined Variable Bitrate. This option is only available when
         
     | 
| 
       1236 
     | 
    
         
            -
                #   your output uses the QVBR rate control mode.
         
     | 
| 
      
 1291 
     | 
    
         
            +
                #   your output uses the QVBR rate control mode. * SHOT\_CHANGE: Shot
         
     | 
| 
      
 1292 
     | 
    
         
            +
                #   Changes
         
     | 
| 
       1237 
1293 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       1238 
1294 
     | 
    
         
             
                #
         
     | 
| 
       1239 
1295 
     | 
    
         
             
                # @!attribute [rw] qvbr_settings
         
     | 
| 
         @@ -1423,7 +1479,8 @@ module Aws::MediaConvert 
     | 
|
| 
       1423 
1479 
     | 
    
         
             
                #   Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
         
     | 
| 
       1424 
1480 
     | 
    
         
             
                #   System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
         
     | 
| 
       1425 
1481 
     | 
    
         
             
                #   Quality-Defined Variable Bitrate. This option is only available when
         
     | 
| 
       1426 
     | 
    
         
            -
                #   your output uses the QVBR rate control mode.
         
     | 
| 
      
 1482 
     | 
    
         
            +
                #   your output uses the QVBR rate control mode. * SHOT\_CHANGE: Shot
         
     | 
| 
      
 1483 
     | 
    
         
            +
                #   Changes
         
     | 
| 
       1427 
1484 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       1428 
1485 
     | 
    
         
             
                #
         
     | 
| 
       1429 
1486 
     | 
    
         
             
                # @!attribute [rw] scan_type_conversion_mode
         
     | 
| 
         @@ -2369,13 +2426,16 @@ module Aws::MediaConvert 
     | 
|
| 
       2369 
2426 
     | 
    
         
             
                #
         
     | 
| 
       2370 
2427 
     | 
    
         
             
                # @!attribute [rw] dash_manifest_style
         
     | 
| 
       2371 
2428 
     | 
    
         
             
                #   Specify how MediaConvert writes SegmentTimeline in your output DASH
         
     | 
| 
       2372 
     | 
    
         
            -
                #   manifest. To write a SegmentTimeline  
     | 
| 
       2373 
     | 
    
         
            -
                #   Keep the default value, Basic.  
     | 
| 
       2374 
     | 
    
         
            -
                #    
     | 
| 
       2375 
     | 
    
         
            -
                #    
     | 
| 
       2376 
     | 
    
         
            -
                #    
     | 
| 
       2377 
     | 
    
         
            -
                #    
     | 
| 
       2378 
     | 
    
         
            -
                #    
     | 
| 
      
 2429 
     | 
    
         
            +
                #   manifest. To write a SegmentTimeline for outputs that you also
         
     | 
| 
      
 2430 
     | 
    
         
            +
                #   specify a Name modifier for: Keep the default value, Basic. Note
         
     | 
| 
      
 2431 
     | 
    
         
            +
                #   that if you do not specify a name modifier for an output,
         
     | 
| 
      
 2432 
     | 
    
         
            +
                #   MediaConvert will not write a SegmentTimeline for it. To write a
         
     | 
| 
      
 2433 
     | 
    
         
            +
                #   common SegmentTimeline in the video AdaptationSet: Choose Compact.
         
     | 
| 
      
 2434 
     | 
    
         
            +
                #   Note that MediaConvert will still write a SegmentTimeline in any
         
     | 
| 
      
 2435 
     | 
    
         
            +
                #   Representation that does not share a common timeline. To write a
         
     | 
| 
      
 2436 
     | 
    
         
            +
                #   video AdaptationSet for each different output framerate, and a
         
     | 
| 
      
 2437 
     | 
    
         
            +
                #   common SegmentTimeline in each AdaptationSet: Choose Distinct. To
         
     | 
| 
      
 2438 
     | 
    
         
            +
                #   write a SegmentTimeline in each AdaptationSet: Choose Full.
         
     | 
| 
       2379 
2439 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2380 
2440 
     | 
    
         
             
                #
         
     | 
| 
       2381 
2441 
     | 
    
         
             
                # @!attribute [rw] destination
         
     | 
| 
         @@ -2852,6 +2912,99 @@ module Aws::MediaConvert 
     | 
|
| 
       2852 
2912 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2853 
2913 
     | 
    
         
             
                end
         
     | 
| 
       2854 
2914 
     | 
    
         | 
| 
      
 2915 
     | 
    
         
            +
                # Codec-specific parameters parsed from the video essence headers. This
         
     | 
| 
      
 2916 
     | 
    
         
            +
                # information provides detailed technical specifications about how the
         
     | 
| 
      
 2917 
     | 
    
         
            +
                # video was encoded, including profile settings, resolution details, and
         
     | 
| 
      
 2918 
     | 
    
         
            +
                # color space information that can help you understand the source video
         
     | 
| 
      
 2919 
     | 
    
         
            +
                # characteristics and make informed encoding decisions.
         
     | 
| 
      
 2920 
     | 
    
         
            +
                #
         
     | 
| 
      
 2921 
     | 
    
         
            +
                # @!attribute [rw] bit_depth
         
     | 
| 
      
 2922 
     | 
    
         
            +
                #   The number of bits used per color component in the video essence
         
     | 
| 
      
 2923 
     | 
    
         
            +
                #   such as 8, 10, or 12 bits. Standard range (SDR) video typically uses
         
     | 
| 
      
 2924 
     | 
    
         
            +
                #   8-bit, while 10-bit is common for high dynamic range (HDR).
         
     | 
| 
      
 2925 
     | 
    
         
            +
                #   @return [Integer]
         
     | 
| 
      
 2926 
     | 
    
         
            +
                #
         
     | 
| 
      
 2927 
     | 
    
         
            +
                # @!attribute [rw] chroma_subsampling
         
     | 
| 
      
 2928 
     | 
    
         
            +
                #   The chroma subsampling format used in the video encoding, such as
         
     | 
| 
      
 2929 
     | 
    
         
            +
                #   "4:2:0" or "4:4:4". This describes how color information is
         
     | 
| 
      
 2930 
     | 
    
         
            +
                #   sampled relative to brightness information. Different subsampling
         
     | 
| 
      
 2931 
     | 
    
         
            +
                #   ratios affect video quality and file size, with "4:4:4" providing
         
     | 
| 
      
 2932 
     | 
    
         
            +
                #   the highest color fidelity and "4:2:0" being most common for
         
     | 
| 
      
 2933 
     | 
    
         
            +
                #   standard video.
         
     | 
| 
      
 2934 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2935 
     | 
    
         
            +
                #
         
     | 
| 
      
 2936 
     | 
    
         
            +
                # @!attribute [rw] coded_frame_rate
         
     | 
| 
      
 2937 
     | 
    
         
            +
                #   The frame rate of the video or audio track, expressed as a fraction
         
     | 
| 
      
 2938 
     | 
    
         
            +
                #   with numerator and denominator values.
         
     | 
| 
      
 2939 
     | 
    
         
            +
                #   @return [Types::FrameRate]
         
     | 
| 
      
 2940 
     | 
    
         
            +
                #
         
     | 
| 
      
 2941 
     | 
    
         
            +
                # @!attribute [rw] color_primaries
         
     | 
| 
      
 2942 
     | 
    
         
            +
                #   The color space primaries of the video track, defining the red,
         
     | 
| 
      
 2943 
     | 
    
         
            +
                #   green, and blue color coordinates used for the video. This
         
     | 
| 
      
 2944 
     | 
    
         
            +
                #   information helps ensure accurate color reproduction during playback
         
     | 
| 
      
 2945 
     | 
    
         
            +
                #   and transcoding.
         
     | 
| 
      
 2946 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2947 
     | 
    
         
            +
                #
         
     | 
| 
      
 2948 
     | 
    
         
            +
                # @!attribute [rw] height
         
     | 
| 
      
 2949 
     | 
    
         
            +
                #   The height in pixels as coded by the codec. This represents the
         
     | 
| 
      
 2950 
     | 
    
         
            +
                #   actual encoded video height as specified in the video stream
         
     | 
| 
      
 2951 
     | 
    
         
            +
                #   headers.
         
     | 
| 
      
 2952 
     | 
    
         
            +
                #   @return [Integer]
         
     | 
| 
      
 2953 
     | 
    
         
            +
                #
         
     | 
| 
      
 2954 
     | 
    
         
            +
                # @!attribute [rw] level
         
     | 
| 
      
 2955 
     | 
    
         
            +
                #   The codec level or tier that specifies the maximum processing
         
     | 
| 
      
 2956 
     | 
    
         
            +
                #   requirements and capabilities. Levels define constraints such as
         
     | 
| 
      
 2957 
     | 
    
         
            +
                #   maximum bit rate, frame rate, and resolution.
         
     | 
| 
      
 2958 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2959 
     | 
    
         
            +
                #
         
     | 
| 
      
 2960 
     | 
    
         
            +
                # @!attribute [rw] matrix_coefficients
         
     | 
| 
      
 2961 
     | 
    
         
            +
                #   The color space matrix coefficients of the video track, defining how
         
     | 
| 
      
 2962 
     | 
    
         
            +
                #   RGB color values are converted to and from YUV color space. This
         
     | 
| 
      
 2963 
     | 
    
         
            +
                #   affects color accuracy during encoding and decoding processes.
         
     | 
| 
      
 2964 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2965 
     | 
    
         
            +
                #
         
     | 
| 
      
 2966 
     | 
    
         
            +
                # @!attribute [rw] profile
         
     | 
| 
      
 2967 
     | 
    
         
            +
                #   The codec profile used to encode the video. Profiles define specific
         
     | 
| 
      
 2968 
     | 
    
         
            +
                #   feature sets and capabilities within a codec standard. For example,
         
     | 
| 
      
 2969 
     | 
    
         
            +
                #   H.264 profiles include Baseline, Main, and High, each supporting
         
     | 
| 
      
 2970 
     | 
    
         
            +
                #   different encoding features and complexity levels.
         
     | 
| 
      
 2971 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2972 
     | 
    
         
            +
                #
         
     | 
| 
      
 2973 
     | 
    
         
            +
                # @!attribute [rw] scan_type
         
     | 
| 
      
 2974 
     | 
    
         
            +
                #   The scanning method specified in the video essence, indicating
         
     | 
| 
      
 2975 
     | 
    
         
            +
                #   whether the video uses progressive or interlaced scanning.
         
     | 
| 
      
 2976 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2977 
     | 
    
         
            +
                #
         
     | 
| 
      
 2978 
     | 
    
         
            +
                # @!attribute [rw] transfer_characteristics
         
     | 
| 
      
 2979 
     | 
    
         
            +
                #   The color space transfer characteristics of the video track,
         
     | 
| 
      
 2980 
     | 
    
         
            +
                #   defining the relationship between linear light values and the
         
     | 
| 
      
 2981 
     | 
    
         
            +
                #   encoded signal values. This affects brightness and contrast
         
     | 
| 
      
 2982 
     | 
    
         
            +
                #   reproduction.
         
     | 
| 
      
 2983 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2984 
     | 
    
         
            +
                #
         
     | 
| 
      
 2985 
     | 
    
         
            +
                # @!attribute [rw] width
         
     | 
| 
      
 2986 
     | 
    
         
            +
                #   The width in pixels as coded by the codec. This represents the
         
     | 
| 
      
 2987 
     | 
    
         
            +
                #   actual encoded video width as specified in the video stream headers.
         
     | 
| 
      
 2988 
     | 
    
         
            +
                #   @return [Integer]
         
     | 
| 
      
 2989 
     | 
    
         
            +
                #
         
     | 
| 
      
 2990 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/CodecMetadata AWS API Documentation
         
     | 
| 
      
 2991 
     | 
    
         
            +
                #
         
     | 
| 
      
 2992 
     | 
    
         
            +
                class CodecMetadata < Struct.new(
         
     | 
| 
      
 2993 
     | 
    
         
            +
                  :bit_depth,
         
     | 
| 
      
 2994 
     | 
    
         
            +
                  :chroma_subsampling,
         
     | 
| 
      
 2995 
     | 
    
         
            +
                  :coded_frame_rate,
         
     | 
| 
      
 2996 
     | 
    
         
            +
                  :color_primaries,
         
     | 
| 
      
 2997 
     | 
    
         
            +
                  :height,
         
     | 
| 
      
 2998 
     | 
    
         
            +
                  :level,
         
     | 
| 
      
 2999 
     | 
    
         
            +
                  :matrix_coefficients,
         
     | 
| 
      
 3000 
     | 
    
         
            +
                  :profile,
         
     | 
| 
      
 3001 
     | 
    
         
            +
                  :scan_type,
         
     | 
| 
      
 3002 
     | 
    
         
            +
                  :transfer_characteristics,
         
     | 
| 
      
 3003 
     | 
    
         
            +
                  :width)
         
     | 
| 
      
 3004 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 3005 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 3006 
     | 
    
         
            +
                end
         
     | 
| 
      
 3007 
     | 
    
         
            +
             
     | 
| 
       2855 
3008 
     | 
    
         
             
                # Custom 3D lut settings
         
     | 
| 
       2856 
3009 
     | 
    
         
             
                #
         
     | 
| 
       2857 
3010 
     | 
    
         
             
                # @!attribute [rw] file_input
         
     | 
| 
         @@ -3169,10 +3322,12 @@ module Aws::MediaConvert 
     | 
|
| 
       3169 
3322 
     | 
    
         
             
                #
         
     | 
| 
       3170 
3323 
     | 
    
         
             
                # @!attribute [rw] job_engine_version
         
     | 
| 
       3171 
3324 
     | 
    
         
             
                #   Use Job engine versions to run jobs for your production workflow on
         
     | 
| 
       3172 
     | 
    
         
            -
                #   one version, while you test and validate the latest version.  
     | 
| 
       3173 
     | 
    
         
            -
                #    
     | 
| 
       3174 
     | 
    
         
            -
                #    
     | 
| 
       3175 
     | 
    
         
            -
                #    
     | 
| 
      
 3325 
     | 
    
         
            +
                #   one version, while you test and validate the latest version. Job
         
     | 
| 
      
 3326 
     | 
    
         
            +
                #   engine versions represent periodically grouped MediaConvert releases
         
     | 
| 
      
 3327 
     | 
    
         
            +
                #   with new features, updates, improvements, and fixes. Job engine
         
     | 
| 
      
 3328 
     | 
    
         
            +
                #   versions are in a YYYY-MM-DD format. Note that the Job engine
         
     | 
| 
      
 3329 
     | 
    
         
            +
                #   version feature is not publicly available at this time. To request
         
     | 
| 
      
 3330 
     | 
    
         
            +
                #   access, contact AWS support.
         
     | 
| 
       3176 
3331 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       3177 
3332 
     | 
    
         
             
                #
         
     | 
| 
       3178 
3333 
     | 
    
         
             
                # @!attribute [rw] job_template
         
     | 
| 
         @@ -3628,13 +3783,16 @@ module Aws::MediaConvert 
     | 
|
| 
       3628 
3783 
     | 
    
         
             
                #
         
     | 
| 
       3629 
3784 
     | 
    
         
             
                # @!attribute [rw] dash_manifest_style
         
     | 
| 
       3630 
3785 
     | 
    
         
             
                #   Specify how MediaConvert writes SegmentTimeline in your output DASH
         
     | 
| 
       3631 
     | 
    
         
            -
                #   manifest. To write a SegmentTimeline  
     | 
| 
       3632 
     | 
    
         
            -
                #   Keep the default value, Basic.  
     | 
| 
       3633 
     | 
    
         
            -
                #    
     | 
| 
       3634 
     | 
    
         
            -
                #    
     | 
| 
       3635 
     | 
    
         
            -
                #    
     | 
| 
       3636 
     | 
    
         
            -
                #    
     | 
| 
       3637 
     | 
    
         
            -
                #    
     | 
| 
      
 3786 
     | 
    
         
            +
                #   manifest. To write a SegmentTimeline for outputs that you also
         
     | 
| 
      
 3787 
     | 
    
         
            +
                #   specify a Name modifier for: Keep the default value, Basic. Note
         
     | 
| 
      
 3788 
     | 
    
         
            +
                #   that if you do not specify a name modifier for an output,
         
     | 
| 
      
 3789 
     | 
    
         
            +
                #   MediaConvert will not write a SegmentTimeline for it. To write a
         
     | 
| 
      
 3790 
     | 
    
         
            +
                #   common SegmentTimeline in the video AdaptationSet: Choose Compact.
         
     | 
| 
      
 3791 
     | 
    
         
            +
                #   Note that MediaConvert will still write a SegmentTimeline in any
         
     | 
| 
      
 3792 
     | 
    
         
            +
                #   Representation that does not share a common timeline. To write a
         
     | 
| 
      
 3793 
     | 
    
         
            +
                #   video AdaptationSet for each different output framerate, and a
         
     | 
| 
      
 3794 
     | 
    
         
            +
                #   common SegmentTimeline in each AdaptationSet: Choose Distinct. To
         
     | 
| 
      
 3795 
     | 
    
         
            +
                #   write a SegmentTimeline in each AdaptationSet: Choose Full.
         
     | 
| 
       3638 
3796 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       3639 
3797 
     | 
    
         
             
                #
         
     | 
| 
       3640 
3798 
     | 
    
         
             
                # @!attribute [rw] destination
         
     | 
| 
         @@ -4638,9 +4796,8 @@ module Aws::MediaConvert 
     | 
|
| 
       4638 
4796 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       4639 
4797 
     | 
    
         
             
                #
         
     | 
| 
       4640 
4798 
     | 
    
         
             
                # @!attribute [rw] language_code
         
     | 
| 
       4641 
     | 
    
         
            -
                #   Specify the language  
     | 
| 
       4642 
     | 
    
         
            -
                #    
     | 
| 
       4643 
     | 
    
         
            -
                #   job settings choose from an ISO 639-2 three-letter code listed at
         
     | 
| 
      
 4799 
     | 
    
         
            +
                #   Specify the language, using an ISO 639-2 three-letter code in all
         
     | 
| 
      
 4800 
     | 
    
         
            +
                #   capital letters. You can find a list of codes at:
         
     | 
| 
       4644 
4801 
     | 
    
         
             
                #   https://www.loc.gov/standards/iso639-2/php/code\_list.php
         
     | 
| 
       4645 
4802 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       4646 
4803 
     | 
    
         
             
                #
         
     | 
| 
         @@ -5521,7 +5678,8 @@ module Aws::MediaConvert 
     | 
|
| 
       5521 
5678 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       5522 
5679 
     | 
    
         
             
                end
         
     | 
| 
       5523 
5680 
     | 
    
         | 
| 
       5524 
     | 
    
         
            -
                # The frame rate of the video or audio track 
     | 
| 
      
 5681 
     | 
    
         
            +
                # The frame rate of the video or audio track, expressed as a fraction
         
     | 
| 
      
 5682 
     | 
    
         
            +
                # with numerator and denominator values.
         
     | 
| 
       5525 
5683 
     | 
    
         
             
                #
         
     | 
| 
       5526 
5684 
     | 
    
         
             
                # @!attribute [rw] denominator
         
     | 
| 
       5527 
5685 
     | 
    
         
             
                #   The denominator, or bottom number, in the fractional frame rate. For
         
     | 
| 
         @@ -5605,6 +5763,49 @@ module Aws::MediaConvert 
     | 
|
| 
       5605 
5763 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       5606 
5764 
     | 
    
         
             
                end
         
     | 
| 
       5607 
5765 
     | 
    
         | 
| 
      
 5766 
     | 
    
         
            +
                # Retrieve a JSON array of up to twenty of your most recent jobs matched
         
     | 
| 
      
 5767 
     | 
    
         
            +
                # by a jobs query.
         
     | 
| 
      
 5768 
     | 
    
         
            +
                #
         
     | 
| 
      
 5769 
     | 
    
         
            +
                # @!attribute [rw] id
         
     | 
| 
      
 5770 
     | 
    
         
            +
                #   The ID of the jobs query.
         
     | 
| 
      
 5771 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 5772 
     | 
    
         
            +
                #
         
     | 
| 
      
 5773 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/GetJobsQueryResultsRequest AWS API Documentation
         
     | 
| 
      
 5774 
     | 
    
         
            +
                #
         
     | 
| 
      
 5775 
     | 
    
         
            +
                class GetJobsQueryResultsRequest < Struct.new(
         
     | 
| 
      
 5776 
     | 
    
         
            +
                  :id)
         
     | 
| 
      
 5777 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 5778 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 5779 
     | 
    
         
            +
                end
         
     | 
| 
      
 5780 
     | 
    
         
            +
             
     | 
| 
      
 5781 
     | 
    
         
            +
                # If the jobs query completed successfully, then a JSON array of jobs
         
     | 
| 
      
 5782 
     | 
    
         
            +
                # will be included in this response. To retrieve the twenty next most
         
     | 
| 
      
 5783 
     | 
    
         
            +
                # recent jobs matched by your jobs query, call the StartJobsQuery using
         
     | 
| 
      
 5784 
     | 
    
         
            +
                # the nextToken string returned in this response.
         
     | 
| 
      
 5785 
     | 
    
         
            +
                #
         
     | 
| 
      
 5786 
     | 
    
         
            +
                # @!attribute [rw] jobs
         
     | 
| 
      
 5787 
     | 
    
         
            +
                #   List of jobs.
         
     | 
| 
      
 5788 
     | 
    
         
            +
                #   @return [Array<Types::Job>]
         
     | 
| 
      
 5789 
     | 
    
         
            +
                #
         
     | 
| 
      
 5790 
     | 
    
         
            +
                # @!attribute [rw] next_token
         
     | 
| 
      
 5791 
     | 
    
         
            +
                #   Use this string to request the next batch of jobs via the
         
     | 
| 
      
 5792 
     | 
    
         
            +
                #   StartJobsQuery API.
         
     | 
| 
      
 5793 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 5794 
     | 
    
         
            +
                #
         
     | 
| 
      
 5795 
     | 
    
         
            +
                # @!attribute [rw] status
         
     | 
| 
      
 5796 
     | 
    
         
            +
                #   The status of the jobs query.
         
     | 
| 
      
 5797 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 5798 
     | 
    
         
            +
                #
         
     | 
| 
      
 5799 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/GetJobsQueryResultsResponse AWS API Documentation
         
     | 
| 
      
 5800 
     | 
    
         
            +
                #
         
     | 
| 
      
 5801 
     | 
    
         
            +
                class GetJobsQueryResultsResponse < Struct.new(
         
     | 
| 
      
 5802 
     | 
    
         
            +
                  :jobs,
         
     | 
| 
      
 5803 
     | 
    
         
            +
                  :next_token,
         
     | 
| 
      
 5804 
     | 
    
         
            +
                  :status)
         
     | 
| 
      
 5805 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 5806 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 5807 
     | 
    
         
            +
                end
         
     | 
| 
      
 5808 
     | 
    
         
            +
             
     | 
| 
       5608 
5809 
     | 
    
         
             
                # Send a request to retrieve the JSON for your policy.
         
     | 
| 
       5609 
5810 
     | 
    
         
             
                #
         
     | 
| 
       5610 
5811 
     | 
    
         
             
                # @api private
         
     | 
| 
         @@ -6115,7 +6316,8 @@ module Aws::MediaConvert 
     | 
|
| 
       6115 
6316 
     | 
    
         
             
                #   Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
         
     | 
| 
       6116 
6317 
     | 
    
         
             
                #   System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
         
     | 
| 
       6117 
6318 
     | 
    
         
             
                #   Quality-Defined Variable Bitrate. This option is only available when
         
     | 
| 
       6118 
     | 
    
         
            -
                #   your output uses the QVBR rate control mode.
         
     | 
| 
      
 6319 
     | 
    
         
            +
                #   your output uses the QVBR rate control mode. * SHOT\_CHANGE: Shot
         
     | 
| 
      
 6320 
     | 
    
         
            +
                #   Changes
         
     | 
| 
       6119 
6321 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       6120 
6322 
     | 
    
         
             
                #
         
     | 
| 
       6121 
6323 
     | 
    
         
             
                # @!attribute [rw] quality_tuning_level
         
     | 
| 
         @@ -6712,7 +6914,8 @@ module Aws::MediaConvert 
     | 
|
| 
       6712 
6914 
     | 
    
         
             
                #   Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
         
     | 
| 
       6713 
6915 
     | 
    
         
             
                #   System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
         
     | 
| 
       6714 
6916 
     | 
    
         
             
                #   Quality-Defined Variable Bitrate. This option is only available when
         
     | 
| 
       6715 
     | 
    
         
            -
                #   your output uses the QVBR rate control mode.
         
     | 
| 
      
 6917 
     | 
    
         
            +
                #   your output uses the QVBR rate control mode. * SHOT\_CHANGE: Shot
         
     | 
| 
      
 6918 
     | 
    
         
            +
                #   Changes
         
     | 
| 
       6716 
6919 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       6717 
6920 
     | 
    
         
             
                #
         
     | 
| 
       6718 
6921 
     | 
    
         
             
                # @!attribute [rw] quality_tuning_level
         
     | 
| 
         @@ -7082,13 +7285,15 @@ module Aws::MediaConvert 
     | 
|
| 
       7082 
7285 
     | 
    
         
             
                #   @return [Integer]
         
     | 
| 
       7083 
7286 
     | 
    
         
             
                #
         
     | 
| 
       7084 
7287 
     | 
    
         
             
                # @!attribute [rw] custom_language_code
         
     | 
| 
       7085 
     | 
    
         
            -
                #   Specify the language 
     | 
| 
       7086 
     | 
    
         
            -
                #    
     | 
| 
      
 7288 
     | 
    
         
            +
                #   Specify the language, using an ISO 639-2 three-letter code in all
         
     | 
| 
      
 7289 
     | 
    
         
            +
                #   capital letters. You can find a list of codes at:
         
     | 
| 
      
 7290 
     | 
    
         
            +
                #   https://www.loc.gov/standards/iso639-2/php/code\_list.php
         
     | 
| 
       7087 
7291 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       7088 
7292 
     | 
    
         
             
                #
         
     | 
| 
       7089 
7293 
     | 
    
         
             
                # @!attribute [rw] language_code
         
     | 
| 
       7090 
     | 
    
         
            -
                #   Specify the language, using  
     | 
| 
       7091 
     | 
    
         
            -
                #    
     | 
| 
      
 7294 
     | 
    
         
            +
                #   Specify the language, using an ISO 639-2 three-letter code in all
         
     | 
| 
      
 7295 
     | 
    
         
            +
                #   capital letters. You can find a list of codes at:
         
     | 
| 
      
 7296 
     | 
    
         
            +
                #   https://www.loc.gov/standards/iso639-2/php/code\_list.php
         
     | 
| 
       7092 
7297 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       7093 
7298 
     | 
    
         
             
                #
         
     | 
| 
       7094 
7299 
     | 
    
         
             
                # @!attribute [rw] language_description
         
     | 
| 
         @@ -7526,8 +7731,9 @@ module Aws::MediaConvert 
     | 
|
| 
       7526 
7731 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       7527 
7732 
     | 
    
         
             
                #
         
     | 
| 
       7528 
7733 
     | 
    
         
             
                # @!attribute [rw] rendition_language_code
         
     | 
| 
       7529 
     | 
    
         
            -
                #    
     | 
| 
       7530 
     | 
    
         
            -
                #    
     | 
| 
      
 7734 
     | 
    
         
            +
                #   Optionally specify the language, using an ISO 639-2 or ISO 639-3
         
     | 
| 
      
 7735 
     | 
    
         
            +
                #   three-letter code in all capital letters. You can find a list of
         
     | 
| 
      
 7736 
     | 
    
         
            +
                #   codes at: https://www.loc.gov/standards/iso639-2/php/code\_list.php
         
     | 
| 
       7531 
7737 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       7532 
7738 
     | 
    
         
             
                #
         
     | 
| 
       7533 
7739 
     | 
    
         
             
                # @!attribute [rw] rendition_name
         
     | 
| 
         @@ -7727,7 +7933,7 @@ module Aws::MediaConvert 
     | 
|
| 
       7727 
7933 
     | 
    
         
             
                #   to your output HLS or DASH manifest. For HLS manifests, MediaConvert
         
     | 
| 
       7728 
7934 
     | 
    
         
             
                #   adds the following accessibility attributes under EXT-X-MEDIA for
         
     | 
| 
       7729 
7935 
     | 
    
         
             
                #   this track:
         
     | 
| 
       7730 
     | 
    
         
            -
                #   CHARACTERISTICS="public.accessibility. 
     | 
| 
      
 7936 
     | 
    
         
            +
                #   CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog,public.accessibility.describes-music-and-sound"
         
     | 
| 
       7731 
7937 
     | 
    
         
             
                #   and AUTOSELECT="YES". For DASH manifests, MediaConvert adds the
         
     | 
| 
       7732 
7938 
     | 
    
         
             
                #   following in the adaptation set for this track: <Accessibility
         
     | 
| 
       7733 
7939 
     | 
    
         
             
                #   schemeIdUri="urn:mpeg:dash:role:2011" value="caption" />
         
     | 
| 
         @@ -8453,11 +8659,29 @@ module Aws::MediaConvert 
     | 
|
| 
       8453 
8659 
     | 
    
         
             
                #   denominator blank.
         
     | 
| 
       8454 
8660 
     | 
    
         
             
                #   @return [Integer]
         
     | 
| 
       8455 
8661 
     | 
    
         
             
                #
         
     | 
| 
      
 8662 
     | 
    
         
            +
                # @!attribute [rw] height
         
     | 
| 
      
 8663 
     | 
    
         
            +
                #   Specify the height, in pixels, for your video generator input. This
         
     | 
| 
      
 8664 
     | 
    
         
            +
                #   is useful for positioning when you include one or more video
         
     | 
| 
      
 8665 
     | 
    
         
            +
                #   overlays for this input. To use the default resolution 540x360:
         
     | 
| 
      
 8666 
     | 
    
         
            +
                #   Leave both width and height blank. To specify a height: Enter an
         
     | 
| 
      
 8667 
     | 
    
         
            +
                #   even integer from 32 to 8192. When you do, you must also specify a
         
     | 
| 
      
 8668 
     | 
    
         
            +
                #   value for width.
         
     | 
| 
      
 8669 
     | 
    
         
            +
                #   @return [Integer]
         
     | 
| 
      
 8670 
     | 
    
         
            +
                #
         
     | 
| 
       8456 
8671 
     | 
    
         
             
                # @!attribute [rw] sample_rate
         
     | 
| 
       8457 
8672 
     | 
    
         
             
                #   Specify the audio sample rate, in Hz, for the silent audio in your
         
     | 
| 
       8458 
8673 
     | 
    
         
             
                #   video generator input. Enter an integer from 32000 to 48000.
         
     | 
| 
       8459 
8674 
     | 
    
         
             
                #   @return [Integer]
         
     | 
| 
       8460 
8675 
     | 
    
         
             
                #
         
     | 
| 
      
 8676 
     | 
    
         
            +
                # @!attribute [rw] width
         
     | 
| 
      
 8677 
     | 
    
         
            +
                #   Specify the width, in pixels, for your video generator input. This
         
     | 
| 
      
 8678 
     | 
    
         
            +
                #   is useful for positioning when you include one or more video
         
     | 
| 
      
 8679 
     | 
    
         
            +
                #   overlays for this input. To use the default resolution 540x360:
         
     | 
| 
      
 8680 
     | 
    
         
            +
                #   Leave both width and height blank. To specify a width: Enter an even
         
     | 
| 
      
 8681 
     | 
    
         
            +
                #   integer from 32 to 8192. When you do, you must also specify a value
         
     | 
| 
      
 8682 
     | 
    
         
            +
                #   for height.
         
     | 
| 
      
 8683 
     | 
    
         
            +
                #   @return [Integer]
         
     | 
| 
      
 8684 
     | 
    
         
            +
                #
         
     | 
| 
       8461 
8685 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/InputVideoGenerator AWS API Documentation
         
     | 
| 
       8462 
8686 
     | 
    
         
             
                #
         
     | 
| 
       8463 
8687 
     | 
    
         
             
                class InputVideoGenerator < Struct.new(
         
     | 
| 
         @@ -8465,7 +8689,9 @@ module Aws::MediaConvert 
     | 
|
| 
       8465 
8689 
     | 
    
         
             
                  :duration,
         
     | 
| 
       8466 
8690 
     | 
    
         
             
                  :framerate_denominator,
         
     | 
| 
       8467 
8691 
     | 
    
         
             
                  :framerate_numerator,
         
     | 
| 
       8468 
     | 
    
         
            -
                  : 
     | 
| 
      
 8692 
     | 
    
         
            +
                  :height,
         
     | 
| 
      
 8693 
     | 
    
         
            +
                  :sample_rate,
         
     | 
| 
      
 8694 
     | 
    
         
            +
                  :width)
         
     | 
| 
       8469 
8695 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       8470 
8696 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       8471 
8697 
     | 
    
         
             
                end
         
     | 
| 
         @@ -8816,7 +9042,11 @@ module Aws::MediaConvert 
     | 
|
| 
       8816 
9042 
     | 
    
         
             
                # @!attribute [rw] version
         
     | 
| 
       8817 
9043 
     | 
    
         
             
                #   Use Job engine versions to run jobs for your production workflow on
         
     | 
| 
       8818 
9044 
     | 
    
         
             
                #   one version, while you test and validate the latest version. Job
         
     | 
| 
       8819 
     | 
    
         
            -
                #   engine versions  
     | 
| 
      
 9045 
     | 
    
         
            +
                #   engine versions represent periodically grouped MediaConvert releases
         
     | 
| 
      
 9046 
     | 
    
         
            +
                #   with new features, updates, improvements, and fixes. Job engine
         
     | 
| 
      
 9047 
     | 
    
         
            +
                #   versions are in a YYYY-MM-DD format. Note that the Job engine
         
     | 
| 
      
 9048 
     | 
    
         
            +
                #   version feature is not publicly available at this time. To request
         
     | 
| 
      
 9049 
     | 
    
         
            +
                #   access, contact AWS support.
         
     | 
| 
       8820 
9050 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       8821 
9051 
     | 
    
         
             
                #
         
     | 
| 
       8822 
9052 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/JobEngineVersion AWS API Documentation
         
     | 
| 
         @@ -9201,6 +9431,42 @@ module Aws::MediaConvert 
     | 
|
| 
       9201 
9431 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       9202 
9432 
     | 
    
         
             
                end
         
     | 
| 
       9203 
9433 
     | 
    
         | 
| 
      
 9434 
     | 
    
         
            +
                # Provide one or more JobsQueryFilter objects, each containing a Key
         
     | 
| 
      
 9435 
     | 
    
         
            +
                # with an associated Values array. Note that MediaConvert queries jobs
         
     | 
| 
      
 9436 
     | 
    
         
            +
                # using OR logic.
         
     | 
| 
      
 9437 
     | 
    
         
            +
                #
         
     | 
| 
      
 9438 
     | 
    
         
            +
                # @!attribute [rw] key
         
     | 
| 
      
 9439 
     | 
    
         
            +
                #   Specify job details to filter for while performing a jobs query. You
         
     | 
| 
      
 9440 
     | 
    
         
            +
                #   specify these filters as part of a key-value pair within the
         
     | 
| 
      
 9441 
     | 
    
         
            +
                #   JobsQueryFilter array. The following list describes which keys are
         
     | 
| 
      
 9442 
     | 
    
         
            +
                #   available and their possible values: * queue - Your Queue's name
         
     | 
| 
      
 9443 
     | 
    
         
            +
                #   or ARN. * status - Your job's status. (SUBMITTED \| PROGRESSING \|
         
     | 
| 
      
 9444 
     | 
    
         
            +
                #   COMPLETE \| CANCELED \| ERROR) * fileInput - Your input file URL,
         
     | 
| 
      
 9445 
     | 
    
         
            +
                #   or partial input file name. * jobEngineVersionRequested - The Job
         
     | 
| 
      
 9446 
     | 
    
         
            +
                #   engine version that you requested for your job. Valid versions are
         
     | 
| 
      
 9447 
     | 
    
         
            +
                #   in a YYYY-MM-DD format. * jobEngineVersionUsed - The Job engine
         
     | 
| 
      
 9448 
     | 
    
         
            +
                #   version that your job used. This may differ from the version that
         
     | 
| 
      
 9449 
     | 
    
         
            +
                #   you requested. Valid versions are in a YYYY-MM-DD format. *
         
     | 
| 
      
 9450 
     | 
    
         
            +
                #   audioCodec - Your output's audio codec. (AAC \| MP2 \| MP3 \| WAV
         
     | 
| 
      
 9451 
     | 
    
         
            +
                #   \| AIFF \| AC3\| EAC3 \| EAC3\_ATMOS \| VORBIS \| OPUS \|
         
     | 
| 
      
 9452 
     | 
    
         
            +
                #   PASSTHROUGH \| FLAC) * videoCodec - Your output's video codec.
         
     | 
| 
      
 9453 
     | 
    
         
            +
                #   (AV1 \| AVC\_INTRA \| FRAME\_CAPTURE \| H\_264 \| H\_265 \| MPEG2 \|
         
     | 
| 
      
 9454 
     | 
    
         
            +
                #   PASSTHROUGH \| PRORES \| UNCOMPRESSED \| VC3 \| VP8 \| VP9 \| XAVC)
         
     | 
| 
      
 9455 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 9456 
     | 
    
         
            +
                #
         
     | 
| 
      
 9457 
     | 
    
         
            +
                # @!attribute [rw] values
         
     | 
| 
      
 9458 
     | 
    
         
            +
                #   A list of values associated with a JobsQueryFilterKey.
         
     | 
| 
      
 9459 
     | 
    
         
            +
                #   @return [Array<String>]
         
     | 
| 
      
 9460 
     | 
    
         
            +
                #
         
     | 
| 
      
 9461 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/JobsQueryFilter AWS API Documentation
         
     | 
| 
      
 9462 
     | 
    
         
            +
                #
         
     | 
| 
      
 9463 
     | 
    
         
            +
                class JobsQueryFilter < Struct.new(
         
     | 
| 
      
 9464 
     | 
    
         
            +
                  :key,
         
     | 
| 
      
 9465 
     | 
    
         
            +
                  :values)
         
     | 
| 
      
 9466 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 9467 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 9468 
     | 
    
         
            +
                end
         
     | 
| 
      
 9469 
     | 
    
         
            +
             
     | 
| 
       9204 
9470 
     | 
    
         
             
                # Use these settings only when you use Kantar watermarking. Specify the
         
     | 
| 
       9205 
9471 
     | 
    
         
             
                # values that MediaConvert uses to generate and place Kantar watermarks
         
     | 
| 
       9206 
9472 
     | 
    
         
             
                # in your output audio. These settings apply to every output in your
         
     | 
| 
         @@ -9607,7 +9873,9 @@ module Aws::MediaConvert 
     | 
|
| 
       9607 
9873 
     | 
    
         
             
                end
         
     | 
| 
       9608 
9874 
     | 
    
         | 
| 
       9609 
9875 
     | 
    
         
             
                # Retrieve a JSON array of all available Job engine versions and the
         
     | 
| 
       9610 
     | 
    
         
            -
                # date they expire. Job engine versions are in YYYY-MM-DD format.
         
     | 
| 
      
 9876 
     | 
    
         
            +
                # date they expire. Job engine versions are in YYYY-MM-DD format. Note
         
     | 
| 
      
 9877 
     | 
    
         
            +
                # that the Job engine version feature is not publicly available at this
         
     | 
| 
      
 9878 
     | 
    
         
            +
                # time. To request access, contact AWS support.
         
     | 
| 
       9611 
9879 
     | 
    
         
             
                #
         
     | 
| 
       9612 
9880 
     | 
    
         
             
                # @!attribute [rw] max_results
         
     | 
| 
       9613 
9881 
     | 
    
         
             
                #   Optional. Number of valid Job engine versions, up to twenty, that
         
     | 
| 
         @@ -10667,12 +10935,12 @@ module Aws::MediaConvert 
     | 
|
| 
       10667 
10935 
     | 
    
         
             
                #
         
     | 
| 
       10668 
10936 
     | 
    
         
             
                # @!attribute [rw] caption_container_type
         
     | 
| 
       10669 
10937 
     | 
    
         
             
                #   Use this setting only in DASH output groups that include sidecar
         
     | 
| 
       10670 
     | 
    
         
            -
                #   TTML or  
     | 
| 
       10671 
     | 
    
         
            -
                #   output from your audio and video. Choose Raw for captions 
     | 
| 
       10672 
     | 
    
         
            -
                #   single XML file in a raw container. Choose Fragmented MPEG-4 
     | 
| 
       10673 
     | 
    
         
            -
                #   captions in XML format contained within fragmented MP4 files. 
     | 
| 
       10674 
     | 
    
         
            -
                #   set of fragmented MP4 files is separate from your video and 
     | 
| 
       10675 
     | 
    
         
            -
                #   fragmented MP4 files.
         
     | 
| 
      
 10938 
     | 
    
         
            +
                #   TTML, IMSC or WEBVTT captions. You specify sidecar captions in a
         
     | 
| 
      
 10939 
     | 
    
         
            +
                #   separate output from your audio and video. Choose Raw for captions
         
     | 
| 
      
 10940 
     | 
    
         
            +
                #   in a single XML file in a raw container. Choose Fragmented MPEG-4
         
     | 
| 
      
 10941 
     | 
    
         
            +
                #   for captions in XML format contained within fragmented MP4 files.
         
     | 
| 
      
 10942 
     | 
    
         
            +
                #   This set of fragmented MP4 files is separate from your video and
         
     | 
| 
      
 10943 
     | 
    
         
            +
                #   audio fragmented MP4 files.
         
     | 
| 
       10676 
10944 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       10677 
10945 
     | 
    
         
             
                #
         
     | 
| 
       10678 
10946 
     | 
    
         
             
                # @!attribute [rw] klv_metadata
         
     | 
| 
         @@ -10984,7 +11252,8 @@ module Aws::MediaConvert 
     | 
|
| 
       10984 
11252 
     | 
    
         
             
                #   Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
         
     | 
| 
       10985 
11253 
     | 
    
         
             
                #   System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
         
     | 
| 
       10986 
11254 
     | 
    
         
             
                #   Quality-Defined Variable Bitrate. This option is only available when
         
     | 
| 
       10987 
     | 
    
         
            -
                #   your output uses the QVBR rate control mode.
         
     | 
| 
      
 11255 
     | 
    
         
            +
                #   your output uses the QVBR rate control mode. * SHOT\_CHANGE: Shot
         
     | 
| 
      
 11256 
     | 
    
         
            +
                #   Changes
         
     | 
| 
       10988 
11257 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       10989 
11258 
     | 
    
         
             
                #
         
     | 
| 
       10990 
11259 
     | 
    
         
             
                # @!attribute [rw] quality_tuning_level
         
     | 
| 
         @@ -11915,7 +12184,8 @@ module Aws::MediaConvert 
     | 
|
| 
       11915 
12184 
     | 
    
         
             
                #   Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
         
     | 
| 
       11916 
12185 
     | 
    
         
             
                #   System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
         
     | 
| 
       11917 
12186 
     | 
    
         
             
                #   Quality-Defined Variable Bitrate. This option is only available when
         
     | 
| 
       11918 
     | 
    
         
            -
                #   your output uses the QVBR rate control mode.
         
     | 
| 
      
 12187 
     | 
    
         
            +
                #   your output uses the QVBR rate control mode. * SHOT\_CHANGE: Shot
         
     | 
| 
      
 12188 
     | 
    
         
            +
                #   Changes
         
     | 
| 
       11919 
12189 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       11920 
12190 
     | 
    
         
             
                #
         
     | 
| 
       11921 
12191 
     | 
    
         
             
                # @!attribute [rw] type
         
     | 
| 
         @@ -11969,6 +12239,25 @@ module Aws::MediaConvert 
     | 
|
| 
       11969 
12239 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       11970 
12240 
     | 
    
         
             
                end
         
     | 
| 
       11971 
12241 
     | 
    
         | 
| 
      
 12242 
     | 
    
         
            +
                # Optional settings when you set Codec to the value Passthrough.
         
     | 
| 
      
 12243 
     | 
    
         
            +
                #
         
     | 
| 
      
 12244 
     | 
    
         
            +
                # @!attribute [rw] video_selector_mode
         
     | 
| 
      
 12245 
     | 
    
         
            +
                #   AUTO will select the highest bitrate input in the video selector
         
     | 
| 
      
 12246 
     | 
    
         
            +
                #   source. REMUX\_ALL will passthrough all the selected streams in the
         
     | 
| 
      
 12247 
     | 
    
         
            +
                #   video selector source. When selecting streams from multiple
         
     | 
| 
      
 12248 
     | 
    
         
            +
                #   renditions (i.e. using Stream video selector type): REMUX\_ALL will
         
     | 
| 
      
 12249 
     | 
    
         
            +
                #   only remux all streams selected, and AUTO will use the highest
         
     | 
| 
      
 12250 
     | 
    
         
            +
                #   bitrate video stream among the selected streams as source.
         
     | 
| 
      
 12251 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 12252 
     | 
    
         
            +
                #
         
     | 
| 
      
 12253 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/PassthroughSettings AWS API Documentation
         
     | 
| 
      
 12254 
     | 
    
         
            +
                #
         
     | 
| 
      
 12255 
     | 
    
         
            +
                class PassthroughSettings < Struct.new(
         
     | 
| 
      
 12256 
     | 
    
         
            +
                  :video_selector_mode)
         
     | 
| 
      
 12257 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 12258 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 12259 
     | 
    
         
            +
                end
         
     | 
| 
      
 12260 
     | 
    
         
            +
             
     | 
| 
       11972 
12261 
     | 
    
         
             
                # A policy configures behavior that you allow or disallow for your
         
     | 
| 
       11973 
12262 
     | 
    
         
             
                # account. For information about MediaConvert policies, see the user
         
     | 
| 
       11974 
12263 
     | 
    
         
             
                # guide at
         
     | 
| 
         @@ -12288,7 +12577,8 @@ module Aws::MediaConvert 
     | 
|
| 
       12288 
12577 
     | 
    
         
             
                #   Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
         
     | 
| 
       12289 
12578 
     | 
    
         
             
                #   System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
         
     | 
| 
       12290 
12579 
     | 
    
         
             
                #   Quality-Defined Variable Bitrate. This option is only available when
         
     | 
| 
       12291 
     | 
    
         
            -
                #   your output uses the QVBR rate control mode.
         
     | 
| 
      
 12580 
     | 
    
         
            +
                #   your output uses the QVBR rate control mode. * SHOT\_CHANGE: Shot
         
     | 
| 
      
 12581 
     | 
    
         
            +
                #   Changes
         
     | 
| 
       12292 
12582 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       12293 
12583 
     | 
    
         
             
                #
         
     | 
| 
       12294 
12584 
     | 
    
         
             
                # @!attribute [rw] scan_type_conversion_mode
         
     | 
| 
         @@ -12937,6 +13227,17 @@ module Aws::MediaConvert 
     | 
|
| 
       12937 
13227 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       12938 
13228 
     | 
    
         
             
                end
         
     | 
| 
       12939 
13229 
     | 
    
         | 
| 
      
 13230 
     | 
    
         
            +
                # @!attribute [rw] message
         
     | 
| 
      
 13231 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 13232 
     | 
    
         
            +
                #
         
     | 
| 
      
 13233 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ServiceQuotaExceededException AWS API Documentation
         
     | 
| 
      
 13234 
     | 
    
         
            +
                #
         
     | 
| 
      
 13235 
     | 
    
         
            +
                class ServiceQuotaExceededException < Struct.new(
         
     | 
| 
      
 13236 
     | 
    
         
            +
                  :message)
         
     | 
| 
      
 13237 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 13238 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 13239 
     | 
    
         
            +
                end
         
     | 
| 
      
 13240 
     | 
    
         
            +
             
     | 
| 
       12940 
13241 
     | 
    
         
             
                # If your output group type is HLS, DASH, or Microsoft Smooth, use these
         
     | 
| 
       12941 
13242 
     | 
    
         
             
                # settings when doing DRM encryption with a SPEKE-compliant key
         
     | 
| 
       12942 
13243 
     | 
    
         
             
                # provider. If your output group type is CMAF, use the
         
     | 
| 
         @@ -13067,6 +13368,57 @@ module Aws::MediaConvert 
     | 
|
| 
       13067 
13368 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       13068 
13369 
     | 
    
         
             
                end
         
     | 
| 
       13069 
13370 
     | 
    
         | 
| 
      
 13371 
     | 
    
         
            +
                # Start an asynchronous jobs query using the provided filters. To
         
     | 
| 
      
 13372 
     | 
    
         
            +
                # receive the list of jobs that match your query, call the
         
     | 
| 
      
 13373 
     | 
    
         
            +
                # GetJobsQueryResults API using the query ID returned by this API.
         
     | 
| 
      
 13374 
     | 
    
         
            +
                #
         
     | 
| 
      
 13375 
     | 
    
         
            +
                # @!attribute [rw] filter_list
         
     | 
| 
      
 13376 
     | 
    
         
            +
                #   Optional. Provide an array of JobsQueryFilters for your
         
     | 
| 
      
 13377 
     | 
    
         
            +
                #   StartJobsQuery request.
         
     | 
| 
      
 13378 
     | 
    
         
            +
                #   @return [Array<Types::JobsQueryFilter>]
         
     | 
| 
      
 13379 
     | 
    
         
            +
                #
         
     | 
| 
      
 13380 
     | 
    
         
            +
                # @!attribute [rw] max_results
         
     | 
| 
      
 13381 
     | 
    
         
            +
                #   Optional. Number of jobs, up to twenty, that will be included in the
         
     | 
| 
      
 13382 
     | 
    
         
            +
                #   jobs query.
         
     | 
| 
      
 13383 
     | 
    
         
            +
                #   @return [Integer]
         
     | 
| 
      
 13384 
     | 
    
         
            +
                #
         
     | 
| 
      
 13385 
     | 
    
         
            +
                # @!attribute [rw] next_token
         
     | 
| 
      
 13386 
     | 
    
         
            +
                #   Use this string to request the next batch of jobs matched by a jobs
         
     | 
| 
      
 13387 
     | 
    
         
            +
                #   query.
         
     | 
| 
      
 13388 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 13389 
     | 
    
         
            +
                #
         
     | 
| 
      
 13390 
     | 
    
         
            +
                # @!attribute [rw] order
         
     | 
| 
      
 13391 
     | 
    
         
            +
                #   Optional. When you request lists of resources, you can specify
         
     | 
| 
      
 13392 
     | 
    
         
            +
                #   whether they are sorted in ASCENDING or DESCENDING order. Default
         
     | 
| 
      
 13393 
     | 
    
         
            +
                #   varies by resource.
         
     | 
| 
      
 13394 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 13395 
     | 
    
         
            +
                #
         
     | 
| 
      
 13396 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/StartJobsQueryRequest AWS API Documentation
         
     | 
| 
      
 13397 
     | 
    
         
            +
                #
         
     | 
| 
      
 13398 
     | 
    
         
            +
                class StartJobsQueryRequest < Struct.new(
         
     | 
| 
      
 13399 
     | 
    
         
            +
                  :filter_list,
         
     | 
| 
      
 13400 
     | 
    
         
            +
                  :max_results,
         
     | 
| 
      
 13401 
     | 
    
         
            +
                  :next_token,
         
     | 
| 
      
 13402 
     | 
    
         
            +
                  :order)
         
     | 
| 
      
 13403 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 13404 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 13405 
     | 
    
         
            +
                end
         
     | 
| 
      
 13406 
     | 
    
         
            +
             
     | 
| 
      
 13407 
     | 
    
         
            +
                # Successful requests return an ID that corresponds to an asynchronous
         
     | 
| 
      
 13408 
     | 
    
         
            +
                # jobs query.
         
     | 
| 
      
 13409 
     | 
    
         
            +
                #
         
     | 
| 
      
 13410 
     | 
    
         
            +
                # @!attribute [rw] id
         
     | 
| 
      
 13411 
     | 
    
         
            +
                #   The ID of the jobs query.
         
     | 
| 
      
 13412 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 13413 
     | 
    
         
            +
                #
         
     | 
| 
      
 13414 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/StartJobsQueryResponse AWS API Documentation
         
     | 
| 
      
 13415 
     | 
    
         
            +
                #
         
     | 
| 
      
 13416 
     | 
    
         
            +
                class StartJobsQueryResponse < Struct.new(
         
     | 
| 
      
 13417 
     | 
    
         
            +
                  :id)
         
     | 
| 
      
 13418 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 13419 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 13420 
     | 
    
         
            +
                end
         
     | 
| 
      
 13421 
     | 
    
         
            +
             
     | 
| 
       13070 
13422 
     | 
    
         
             
                # Use these settings to set up encryption with a static key provider.
         
     | 
| 
       13071 
13423 
     | 
    
         
             
                #
         
     | 
| 
       13072 
13424 
     | 
    
         
             
                # @!attribute [rw] key_format
         
     | 
| 
         @@ -13392,6 +13744,21 @@ module Aws::MediaConvert 
     | 
|
| 
       13392 
13744 
     | 
    
         
             
                # your caption source is IMSC 1.1 in a separate xml file, use
         
     | 
| 
       13393 
13745 
     | 
    
         
             
                # FileSourceSettings instead of TrackSourceSettings.
         
     | 
| 
       13394 
13746 
     | 
    
         
             
                #
         
     | 
| 
      
 13747 
     | 
    
         
            +
                # @!attribute [rw] stream_number
         
     | 
| 
      
 13748 
     | 
    
         
            +
                #   Use this setting to select a single captions track from a source.
         
     | 
| 
      
 13749 
     | 
    
         
            +
                #   Stream numbers include all tracks in the source file, regardless of
         
     | 
| 
      
 13750 
     | 
    
         
            +
                #   type, and correspond to either the order of tracks in the file, or
         
     | 
| 
      
 13751 
     | 
    
         
            +
                #   if applicable, the stream number metadata of the track. Although all
         
     | 
| 
      
 13752 
     | 
    
         
            +
                #   tracks count toward these stream numbers, in this caption selector
         
     | 
| 
      
 13753 
     | 
    
         
            +
                #   context, only the stream number of a track containing caption data
         
     | 
| 
      
 13754 
     | 
    
         
            +
                #   may be used. To include more than one captions track in your job
         
     | 
| 
      
 13755 
     | 
    
         
            +
                #   outputs, create multiple input captions selectors. Specify one
         
     | 
| 
      
 13756 
     | 
    
         
            +
                #   stream per selector. If your source file contains a track which is
         
     | 
| 
      
 13757 
     | 
    
         
            +
                #   not recognized by the service, then the corresponding stream number
         
     | 
| 
      
 13758 
     | 
    
         
            +
                #   will still be reserved for future use. If more types of caption data
         
     | 
| 
      
 13759 
     | 
    
         
            +
                #   get recognized in the future, these numberings will not shift.
         
     | 
| 
      
 13760 
     | 
    
         
            +
                #   @return [Integer]
         
     | 
| 
      
 13761 
     | 
    
         
            +
                #
         
     | 
| 
       13395 
13762 
     | 
    
         
             
                # @!attribute [rw] track_number
         
     | 
| 
       13396 
13763 
     | 
    
         
             
                #   Use this setting to select a single captions track from a source.
         
     | 
| 
       13397 
13764 
     | 
    
         
             
                #   Track numbers correspond to the order in the captions source file.
         
     | 
| 
         @@ -13399,12 +13766,15 @@ module Aws::MediaConvert 
     | 
|
| 
       13399 
13766 
     | 
    
         
             
                #   captions appear in the CPL. For example, use 1 to select the
         
     | 
| 
       13400 
13767 
     | 
    
         
             
                #   captions asset that is listed first in the CPL. To include more than
         
     | 
| 
       13401 
13768 
     | 
    
         
             
                #   one captions track in your job outputs, create multiple input
         
     | 
| 
       13402 
     | 
    
         
            -
                #   captions selectors. Specify one track per selector.
         
     | 
| 
      
 13769 
     | 
    
         
            +
                #   captions selectors. Specify one track per selector. If more types of
         
     | 
| 
      
 13770 
     | 
    
         
            +
                #   caption data get recognized in the future, these numberings may
         
     | 
| 
      
 13771 
     | 
    
         
            +
                #   shift, but the numberings used for streamNumber will not.
         
     | 
| 
       13403 
13772 
     | 
    
         
             
                #   @return [Integer]
         
     | 
| 
       13404 
13773 
     | 
    
         
             
                #
         
     | 
| 
       13405 
13774 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/TrackSourceSettings AWS API Documentation
         
     | 
| 
       13406 
13775 
     | 
    
         
             
                #
         
     | 
| 
       13407 
13776 
     | 
    
         
             
                class TrackSourceSettings < Struct.new(
         
     | 
| 
      
 13777 
     | 
    
         
            +
                  :stream_number,
         
     | 
| 
       13408 
13778 
     | 
    
         
             
                  :track_number)
         
     | 
| 
       13409 
13779 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       13410 
13780 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
         @@ -13944,6 +14314,10 @@ module Aws::MediaConvert 
     | 
|
| 
       13944 
14314 
     | 
    
         
             
                #   Required when you set Codec to the value MPEG2.
         
     | 
| 
       13945 
14315 
     | 
    
         
             
                #   @return [Types::Mpeg2Settings]
         
     | 
| 
       13946 
14316 
     | 
    
         
             
                #
         
     | 
| 
      
 14317 
     | 
    
         
            +
                # @!attribute [rw] passthrough_settings
         
     | 
| 
      
 14318 
     | 
    
         
            +
                #   Optional settings when you set Codec to the value Passthrough.
         
     | 
| 
      
 14319 
     | 
    
         
            +
                #   @return [Types::PassthroughSettings]
         
     | 
| 
      
 14320 
     | 
    
         
            +
                #
         
     | 
| 
       13947 
14321 
     | 
    
         
             
                # @!attribute [rw] prores_settings
         
     | 
| 
       13948 
14322 
     | 
    
         
             
                #   Required when you set Codec to the value PRORES.
         
     | 
| 
       13949 
14323 
     | 
    
         
             
                #   @return [Types::ProresSettings]
         
     | 
| 
         @@ -13980,6 +14354,7 @@ module Aws::MediaConvert 
     | 
|
| 
       13980 
14354 
     | 
    
         
             
                  :h264_settings,
         
     | 
| 
       13981 
14355 
     | 
    
         
             
                  :h265_settings,
         
     | 
| 
       13982 
14356 
     | 
    
         
             
                  :mpeg_2_settings,
         
     | 
| 
      
 14357 
     | 
    
         
            +
                  :passthrough_settings,
         
     | 
| 
       13983 
14358 
     | 
    
         
             
                  :prores_settings,
         
     | 
| 
       13984 
14359 
     | 
    
         
             
                  :uncompressed_settings,
         
     | 
| 
       13985 
14360 
     | 
    
         
             
                  :vc_3_settings,
         
     | 
| 
         @@ -14415,6 +14790,12 @@ module Aws::MediaConvert 
     | 
|
| 
       14415 
14790 
     | 
    
         
             
                #   enter a value for Height and leave Width blank.
         
     | 
| 
       14416 
14791 
     | 
    
         
             
                #   @return [Integer]
         
     | 
| 
       14417 
14792 
     | 
    
         
             
                #
         
     | 
| 
      
 14793 
     | 
    
         
            +
                # @!attribute [rw] opacity
         
     | 
| 
      
 14794 
     | 
    
         
            +
                #   Use Opacity to specify how much of the underlying video shows
         
     | 
| 
      
 14795 
     | 
    
         
            +
                #   through the overlay video. 0 is transparent and 100 is fully opaque.
         
     | 
| 
      
 14796 
     | 
    
         
            +
                #   Default is 100.
         
     | 
| 
      
 14797 
     | 
    
         
            +
                #   @return [Integer]
         
     | 
| 
      
 14798 
     | 
    
         
            +
                #
         
     | 
| 
       14418 
14799 
     | 
    
         
             
                # @!attribute [rw] unit
         
     | 
| 
       14419 
14800 
     | 
    
         
             
                #   Specify the Unit type to use when you enter a value for X position,
         
     | 
| 
       14420 
14801 
     | 
    
         
             
                #   Y position, Width, or Height. You can choose Pixels or Percentage.
         
     | 
| 
         @@ -14465,6 +14846,7 @@ module Aws::MediaConvert 
     | 
|
| 
       14465 
14846 
     | 
    
         
             
                #
         
     | 
| 
       14466 
14847 
     | 
    
         
             
                class VideoOverlayPosition < Struct.new(
         
     | 
| 
       14467 
14848 
     | 
    
         
             
                  :height,
         
     | 
| 
      
 14849 
     | 
    
         
            +
                  :opacity,
         
     | 
| 
       14468 
14850 
     | 
    
         
             
                  :unit,
         
     | 
| 
       14469 
14851 
     | 
    
         
             
                  :width,
         
     | 
| 
       14470 
14852 
     | 
    
         
             
                  :x_position,
         
     | 
| 
         @@ -14477,7 +14859,7 @@ module Aws::MediaConvert 
     | 
|
| 
       14477 
14859 
     | 
    
         
             
                # Transitions to reposition or resize your overlay over time. To use the
         
     | 
| 
       14478 
14860 
     | 
    
         
             
                # same position and size for the duration of your video overlay: Leave
         
     | 
| 
       14479 
14861 
     | 
    
         
             
                # blank. To specify a Transition: Enter a value for Start timecode, End
         
     | 
| 
       14480 
     | 
    
         
            -
                # Timecode, X Position, Y Position, Width, or  
     | 
| 
      
 14862 
     | 
    
         
            +
                # Timecode, X Position, Y Position, Width, Height, or Opacity
         
     | 
| 
       14481 
14863 
     | 
    
         
             
                #
         
     | 
| 
       14482 
14864 
     | 
    
         
             
                # @!attribute [rw] end_position
         
     | 
| 
       14483 
14865 
     | 
    
         
             
                #   Specify the ending position for this transition, relative to the
         
     | 
| 
         @@ -14581,19 +14963,34 @@ module Aws::MediaConvert 
     | 
|
| 
       14581 
14963 
     | 
    
         
             
                # Details about the media file's video track.
         
     | 
| 
       14582 
14964 
     | 
    
         
             
                #
         
     | 
| 
       14583 
14965 
     | 
    
         
             
                # @!attribute [rw] bit_depth
         
     | 
| 
       14584 
     | 
    
         
            -
                #   The  
     | 
| 
      
 14966 
     | 
    
         
            +
                #   The number of bits used per color component such as 8, 10, or 12
         
     | 
| 
      
 14967 
     | 
    
         
            +
                #   bits. Standard range (SDR) video typically uses 8-bit, while 10-bit
         
     | 
| 
      
 14968 
     | 
    
         
            +
                #   is common for high dynamic range (HDR).
         
     | 
| 
       14585 
14969 
     | 
    
         
             
                #   @return [Integer]
         
     | 
| 
       14586 
14970 
     | 
    
         
             
                #
         
     | 
| 
       14587 
14971 
     | 
    
         
             
                # @!attribute [rw] bit_rate
         
     | 
| 
       14588 
14972 
     | 
    
         
             
                #   The bit rate of the video track, in bits per second.
         
     | 
| 
       14589 
14973 
     | 
    
         
             
                #   @return [Integer]
         
     | 
| 
       14590 
14974 
     | 
    
         
             
                #
         
     | 
| 
      
 14975 
     | 
    
         
            +
                # @!attribute [rw] codec_metadata
         
     | 
| 
      
 14976 
     | 
    
         
            +
                #   Codec-specific parameters parsed from the video essence headers.
         
     | 
| 
      
 14977 
     | 
    
         
            +
                #   This information provides detailed technical specifications about
         
     | 
| 
      
 14978 
     | 
    
         
            +
                #   how the video was encoded, including profile settings, resolution
         
     | 
| 
      
 14979 
     | 
    
         
            +
                #   details, and color space information that can help you understand
         
     | 
| 
      
 14980 
     | 
    
         
            +
                #   the source video characteristics and make informed encoding
         
     | 
| 
      
 14981 
     | 
    
         
            +
                #   decisions.
         
     | 
| 
      
 14982 
     | 
    
         
            +
                #   @return [Types::CodecMetadata]
         
     | 
| 
      
 14983 
     | 
    
         
            +
                #
         
     | 
| 
       14591 
14984 
     | 
    
         
             
                # @!attribute [rw] color_primaries
         
     | 
| 
       14592 
     | 
    
         
            -
                #   The color space  
     | 
| 
      
 14985 
     | 
    
         
            +
                #   The color space primaries of the video track, defining the red,
         
     | 
| 
      
 14986 
     | 
    
         
            +
                #   green, and blue color coordinates used for the video. This
         
     | 
| 
      
 14987 
     | 
    
         
            +
                #   information helps ensure accurate color reproduction during playback
         
     | 
| 
      
 14988 
     | 
    
         
            +
                #   and transcoding.
         
     | 
| 
       14593 
14989 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       14594 
14990 
     | 
    
         
             
                #
         
     | 
| 
       14595 
14991 
     | 
    
         
             
                # @!attribute [rw] frame_rate
         
     | 
| 
       14596 
     | 
    
         
            -
                #   The frame rate of the video or audio track 
     | 
| 
      
 14992 
     | 
    
         
            +
                #   The frame rate of the video or audio track, expressed as a fraction
         
     | 
| 
      
 14993 
     | 
    
         
            +
                #   with numerator and denominator values.
         
     | 
| 
       14597 
14994 
     | 
    
         
             
                #   @return [Types::FrameRate]
         
     | 
| 
       14598 
14995 
     | 
    
         
             
                #
         
     | 
| 
       14599 
14996 
     | 
    
         
             
                # @!attribute [rw] height
         
     | 
| 
         @@ -14601,11 +14998,16 @@ module Aws::MediaConvert 
     | 
|
| 
       14601 
14998 
     | 
    
         
             
                #   @return [Integer]
         
     | 
| 
       14602 
14999 
     | 
    
         
             
                #
         
     | 
| 
       14603 
15000 
     | 
    
         
             
                # @!attribute [rw] matrix_coefficients
         
     | 
| 
       14604 
     | 
    
         
            -
                #   The color space matrix coefficients of the video track 
     | 
| 
      
 15001 
     | 
    
         
            +
                #   The color space matrix coefficients of the video track, defining how
         
     | 
| 
      
 15002 
     | 
    
         
            +
                #   RGB color values are converted to and from YUV color space. This
         
     | 
| 
      
 15003 
     | 
    
         
            +
                #   affects color accuracy during encoding and decoding processes.
         
     | 
| 
       14605 
15004 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       14606 
15005 
     | 
    
         
             
                #
         
     | 
| 
       14607 
15006 
     | 
    
         
             
                # @!attribute [rw] transfer_characteristics
         
     | 
| 
       14608 
     | 
    
         
            -
                #   The color space transfer characteristics of the video track 
     | 
| 
      
 15007 
     | 
    
         
            +
                #   The color space transfer characteristics of the video track,
         
     | 
| 
      
 15008 
     | 
    
         
            +
                #   defining the relationship between linear light values and the
         
     | 
| 
      
 15009 
     | 
    
         
            +
                #   encoded signal values. This affects brightness and contrast
         
     | 
| 
      
 15010 
     | 
    
         
            +
                #   reproduction.
         
     | 
| 
       14609 
15011 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       14610 
15012 
     | 
    
         
             
                #
         
     | 
| 
       14611 
15013 
     | 
    
         
             
                # @!attribute [rw] width
         
     | 
| 
         @@ -14617,6 +15019,7 @@ module Aws::MediaConvert 
     | 
|
| 
       14617 
15019 
     | 
    
         
             
                class VideoProperties < Struct.new(
         
     | 
| 
       14618 
15020 
     | 
    
         
             
                  :bit_depth,
         
     | 
| 
       14619 
15021 
     | 
    
         
             
                  :bit_rate,
         
     | 
| 
      
 15022 
     | 
    
         
            +
                  :codec_metadata,
         
     | 
| 
       14620 
15023 
     | 
    
         
             
                  :color_primaries,
         
     | 
| 
       14621 
15024 
     | 
    
         
             
                  :frame_rate,
         
     | 
| 
       14622 
15025 
     | 
    
         
             
                  :height,
         
     | 
| 
         @@ -14764,8 +15167,14 @@ module Aws::MediaConvert 
     | 
|
| 
       14764 
15167 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       14765 
15168 
     | 
    
         
             
                #
         
     | 
| 
       14766 
15169 
     | 
    
         
             
                # @!attribute [rw] streams
         
     | 
| 
       14767 
     | 
    
         
            -
                #   Specify  
     | 
| 
       14768 
     | 
    
         
            -
                #   an integer corresponding to the stream  
     | 
| 
      
 15170 
     | 
    
         
            +
                #   Specify one or more video streams for MediaConvert to use from your
         
     | 
| 
      
 15171 
     | 
    
         
            +
                #   HLS input. Enter an integer corresponding to the stream number, with
         
     | 
| 
      
 15172 
     | 
    
         
            +
                #   the first stream in your HLS multivariant playlist starting at 1.For
         
     | 
| 
      
 15173 
     | 
    
         
            +
                #   re-encoding workflows, MediaConvert uses the video stream that you
         
     | 
| 
      
 15174 
     | 
    
         
            +
                #   select with the highest bitrate as the input.For video passthrough
         
     | 
| 
      
 15175 
     | 
    
         
            +
                #   workflows, you specify whether to passthrough a single video stream
         
     | 
| 
      
 15176 
     | 
    
         
            +
                #   or multiple video streams under Video selector source in the output
         
     | 
| 
      
 15177 
     | 
    
         
            +
                #   video encoding settings.
         
     | 
| 
       14769 
15178 
     | 
    
         
             
                #   @return [Array<Integer>]
         
     | 
| 
       14770 
15179 
     | 
    
         
             
                #
         
     | 
| 
       14771 
15180 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/VideoSelector AWS API Documentation
         
     | 
| 
         @@ -15151,7 +15560,7 @@ module Aws::MediaConvert 
     | 
|
| 
       15151 
15560 
     | 
    
         
             
                #   attributes to your output HLS or DASH manifest. For HLS manifests,
         
     | 
| 
       15152 
15561 
     | 
    
         
             
                #   MediaConvert adds the following accessibility attributes under
         
     | 
| 
       15153 
15562 
     | 
    
         
             
                #   EXT-X-MEDIA for this track:
         
     | 
| 
       15154 
     | 
    
         
            -
                #   CHARACTERISTICS="public.accessibility. 
     | 
| 
      
 15563 
     | 
    
         
            +
                #   CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog,public.accessibility.describes-music-and-sound"
         
     | 
| 
       15155 
15564 
     | 
    
         
             
                #   and AUTOSELECT="YES". For DASH manifests, MediaConvert adds the
         
     | 
| 
       15156 
15565 
     | 
    
         
             
                #   following in the adaptation set for this track: <Accessibility
         
     | 
| 
       15157 
15566 
     | 
    
         
             
                #   schemeIdUri="urn:mpeg:dash:role:2011" value="caption" />
         
     | 
| 
         @@ -15207,8 +15616,9 @@ module Aws::MediaConvert 
     | 
|
| 
       15207 
15616 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       15208 
15617 
     | 
    
         
             
                #
         
     | 
| 
       15209 
15618 
     | 
    
         
             
                # @!attribute [rw] rendition_language_code
         
     | 
| 
       15210 
     | 
    
         
            -
                #    
     | 
| 
       15211 
     | 
    
         
            -
                #    
     | 
| 
      
 15619 
     | 
    
         
            +
                #   Optionally specify the language, using an ISO 639-2 or ISO 639-3
         
     | 
| 
      
 15620 
     | 
    
         
            +
                #   three-letter code in all capital letters. You can find a list of
         
     | 
| 
      
 15621 
     | 
    
         
            +
                #   codes at: https://www.loc.gov/standards/iso639-2/php/code\_list.php
         
     | 
| 
       15212 
15622 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       15213 
15623 
     | 
    
         
             
                #
         
     | 
| 
       15214 
15624 
     | 
    
         
             
                # @!attribute [rw] rendition_name
         
     | 
| 
         @@ -15546,7 +15956,8 @@ module Aws::MediaConvert 
     | 
|
| 
       15546 
15956 
     | 
    
         
             
                #   Measure * PSNR\_HVS: Peak Signal-to-Noise Ratio, Human Visual
         
     | 
| 
       15547 
15957 
     | 
    
         
             
                #   System * VMAF: Video Multi-Method Assessment Fusion * QVBR:
         
     | 
| 
       15548 
15958 
     | 
    
         
             
                #   Quality-Defined Variable Bitrate. This option is only available when
         
     | 
| 
       15549 
     | 
    
         
            -
                #   your output uses the QVBR rate control mode.
         
     | 
| 
      
 15959 
     | 
    
         
            +
                #   your output uses the QVBR rate control mode. * SHOT\_CHANGE: Shot
         
     | 
| 
      
 15960 
     | 
    
         
            +
                #   Changes
         
     | 
| 
       15550 
15961 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       15551 
15962 
     | 
    
         
             
                #
         
     | 
| 
       15552 
15963 
     | 
    
         
             
                # @!attribute [rw] profile
         
     |