aws-sdk-mediaconvert 1.168.0 → 1.169.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f23f93ffecf5ef3718d146592a5a85ed10eb7fdbed801d7b41468817339c13d3
4
- data.tar.gz: fc316ecac7b2a616ec630ba97ece0b8c1783194417fbc6f99e1ea77bdc23d162
3
+ metadata.gz: e519f8bcd516ec511e7f0d33e8690704cbff345ae0f321309359cf84b937b593
4
+ data.tar.gz: 03bf91539c8ade32317f32da7d920391da3907d99cc8e5f61b25b9612f273c1e
5
5
  SHA512:
6
- metadata.gz: 97ad02de7b66338a25e9c3fe61d6215f95468cedccf2b71eb97855d389d522c165e896ed7309ac0016a39dedcff238821bf6eac0b173ddba1f8e60d62a65420d
7
- data.tar.gz: 473998d85f1f3c7b38aaf9785b2a2ed2a0bf37bbeec99731b6817f9a629fcd3fb06cbb930c272bc562310a9b8a6c1f3f434114df7ec5856e1e1564d349c3780d
6
+ metadata.gz: 8bd956411b5b8cd090f3ff2da30073d1f5997f7f778643af0aeb14d50742323f34d1c497498522abc84194671453afbc8c781e60849610c7707dce1d7021b2f3
7
+ data.tar.gz: 74e41eb1cccf2ee160d153f40d599b68e0a3d53c205725d9e38e6fed74f56866ac0a3f2fae1419e7b25954e4e771a5ffcd7ff1c7eabbd66430f93abe504fdf55
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.169.0 (2025-08-25)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for input rendition selection for HLS input, adds new Share API to enable sharing jobs with AWS Support for support investigations, and adds INCLUDE_AS_TS to iFrameOnlyManifest setting for HLS outputs.
8
+
4
9
  1.168.0 (2025-08-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.168.0
1
+ 1.169.0
@@ -816,6 +816,7 @@ module Aws::MediaConvert
816
816
  # sample_rate: 1,
817
817
  # },
818
818
  # mp_2_settings: {
819
+ # audio_description_mix: "BROADCASTER_MIXED_AD", # accepts BROADCASTER_MIXED_AD, NONE
819
820
  # bitrate: 1,
820
821
  # channels: 1,
821
822
  # sample_rate: 1,
@@ -1632,6 +1633,7 @@ module Aws::MediaConvert
1632
1633
  # resp.preset.settings.audio_descriptions[0].codec_settings.flac_settings.bit_depth #=> Integer
1633
1634
  # resp.preset.settings.audio_descriptions[0].codec_settings.flac_settings.channels #=> Integer
1634
1635
  # resp.preset.settings.audio_descriptions[0].codec_settings.flac_settings.sample_rate #=> Integer
1636
+ # resp.preset.settings.audio_descriptions[0].codec_settings.mp_2_settings.audio_description_mix #=> String, one of "BROADCASTER_MIXED_AD", "NONE"
1635
1637
  # resp.preset.settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Integer
1636
1638
  # resp.preset.settings.audio_descriptions[0].codec_settings.mp_2_settings.channels #=> Integer
1637
1639
  # resp.preset.settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Integer
@@ -2310,6 +2312,33 @@ module Aws::MediaConvert
2310
2312
  req.send_request(options)
2311
2313
  end
2312
2314
 
2315
+ # Create a new resource share request for MediaConvert resources with
2316
+ # AWS Support.
2317
+ #
2318
+ # @option params [required, String] :job_id
2319
+ # Specify MediaConvert Job ID or ARN to share
2320
+ #
2321
+ # @option params [required, String] :support_case_id
2322
+ # AWS Support case identifier
2323
+ #
2324
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2325
+ #
2326
+ # @example Request syntax with placeholder values
2327
+ #
2328
+ # resp = client.create_resource_share({
2329
+ # job_id: "__string", # required
2330
+ # support_case_id: "__string", # required
2331
+ # })
2332
+ #
2333
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/CreateResourceShare AWS API Documentation
2334
+ #
2335
+ # @overload create_resource_share(params = {})
2336
+ # @param [Hash] params ({})
2337
+ def create_resource_share(params = {}, options = {})
2338
+ req = build_request(:create_resource_share, params)
2339
+ req.send_request(options)
2340
+ end
2341
+
2313
2342
  # Permanently delete a job template you have created.
2314
2343
  #
2315
2344
  # @option params [required, String] :name
@@ -2637,6 +2666,7 @@ module Aws::MediaConvert
2637
2666
  # resp.preset.settings.audio_descriptions[0].codec_settings.flac_settings.bit_depth #=> Integer
2638
2667
  # resp.preset.settings.audio_descriptions[0].codec_settings.flac_settings.channels #=> Integer
2639
2668
  # resp.preset.settings.audio_descriptions[0].codec_settings.flac_settings.sample_rate #=> Integer
2669
+ # resp.preset.settings.audio_descriptions[0].codec_settings.mp_2_settings.audio_description_mix #=> String, one of "BROADCASTER_MIXED_AD", "NONE"
2640
2670
  # resp.preset.settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Integer
2641
2671
  # resp.preset.settings.audio_descriptions[0].codec_settings.mp_2_settings.channels #=> Integer
2642
2672
  # resp.preset.settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Integer
@@ -3510,6 +3540,7 @@ module Aws::MediaConvert
3510
3540
  # resp.presets[0].settings.audio_descriptions[0].codec_settings.flac_settings.bit_depth #=> Integer
3511
3541
  # resp.presets[0].settings.audio_descriptions[0].codec_settings.flac_settings.channels #=> Integer
3512
3542
  # resp.presets[0].settings.audio_descriptions[0].codec_settings.flac_settings.sample_rate #=> Integer
3543
+ # resp.presets[0].settings.audio_descriptions[0].codec_settings.mp_2_settings.audio_description_mix #=> String, one of "BROADCASTER_MIXED_AD", "NONE"
3513
3544
  # resp.presets[0].settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Integer
3514
3545
  # resp.presets[0].settings.audio_descriptions[0].codec_settings.mp_2_settings.channels #=> Integer
3515
3546
  # resp.presets[0].settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Integer
@@ -4650,6 +4681,7 @@ module Aws::MediaConvert
4650
4681
  # sample_rate: 1,
4651
4682
  # },
4652
4683
  # mp_2_settings: {
4684
+ # audio_description_mix: "BROADCASTER_MIXED_AD", # accepts BROADCASTER_MIXED_AD, NONE
4653
4685
  # bitrate: 1,
4654
4686
  # channels: 1,
4655
4687
  # sample_rate: 1,
@@ -5463,6 +5495,7 @@ module Aws::MediaConvert
5463
5495
  # resp.preset.settings.audio_descriptions[0].codec_settings.flac_settings.bit_depth #=> Integer
5464
5496
  # resp.preset.settings.audio_descriptions[0].codec_settings.flac_settings.channels #=> Integer
5465
5497
  # resp.preset.settings.audio_descriptions[0].codec_settings.flac_settings.sample_rate #=> Integer
5498
+ # resp.preset.settings.audio_descriptions[0].codec_settings.mp_2_settings.audio_description_mix #=> String, one of "BROADCASTER_MIXED_AD", "NONE"
5466
5499
  # resp.preset.settings.audio_descriptions[0].codec_settings.mp_2_settings.bitrate #=> Integer
5467
5500
  # resp.preset.settings.audio_descriptions[0].codec_settings.mp_2_settings.channels #=> Integer
5468
5501
  # resp.preset.settings.audio_descriptions[0].codec_settings.mp_2_settings.sample_rate #=> Integer
@@ -6147,7 +6180,7 @@ module Aws::MediaConvert
6147
6180
  tracer: tracer
6148
6181
  )
6149
6182
  context[:gem_name] = 'aws-sdk-mediaconvert'
6150
- context[:gem_version] = '1.168.0'
6183
+ context[:gem_version] = '1.169.0'
6151
6184
  Seahorse::Client::Request.new(handlers, context)
6152
6185
  end
6153
6186
 
@@ -177,6 +177,8 @@ module Aws::MediaConvert
177
177
  CreatePresetResponse = Shapes::StructureShape.new(name: 'CreatePresetResponse')
178
178
  CreateQueueRequest = Shapes::StructureShape.new(name: 'CreateQueueRequest')
179
179
  CreateQueueResponse = Shapes::StructureShape.new(name: 'CreateQueueResponse')
180
+ CreateResourceShareRequest = Shapes::StructureShape.new(name: 'CreateResourceShareRequest')
181
+ CreateResourceShareResponse = Shapes::StructureShape.new(name: 'CreateResourceShareResponse')
180
182
  DashAdditionalManifest = Shapes::StructureShape.new(name: 'DashAdditionalManifest')
181
183
  DashIsoEncryptionSettings = Shapes::StructureShape.new(name: 'DashIsoEncryptionSettings')
182
184
  DashIsoGroupAudioChannelConfigSchemeIdUri = Shapes::StringShape.new(name: 'DashIsoGroupAudioChannelConfigSchemeIdUri')
@@ -483,6 +485,7 @@ module Aws::MediaConvert
483
485
  MovPaddingControl = Shapes::StringShape.new(name: 'MovPaddingControl')
484
486
  MovReference = Shapes::StringShape.new(name: 'MovReference')
485
487
  MovSettings = Shapes::StructureShape.new(name: 'MovSettings')
488
+ Mp2AudioDescriptionMix = Shapes::StringShape.new(name: 'Mp2AudioDescriptionMix')
486
489
  Mp2Settings = Shapes::StructureShape.new(name: 'Mp2Settings')
487
490
  Mp3RateControlMode = Shapes::StringShape.new(name: 'Mp3RateControlMode')
488
491
  Mp3Settings = Shapes::StructureShape.new(name: 'Mp3Settings')
@@ -610,6 +613,7 @@ module Aws::MediaConvert
610
613
  SearchJobsRequest = Shapes::StructureShape.new(name: 'SearchJobsRequest')
611
614
  SearchJobsResponse = Shapes::StructureShape.new(name: 'SearchJobsResponse')
612
615
  ServiceOverride = Shapes::StructureShape.new(name: 'ServiceOverride')
616
+ ShareStatus = Shapes::StringShape.new(name: 'ShareStatus')
613
617
  SimulateReservedQueue = Shapes::StringShape.new(name: 'SimulateReservedQueue')
614
618
  SpekeKeyProvider = Shapes::StructureShape.new(name: 'SpekeKeyProvider')
615
619
  SpekeKeyProviderCmaf = Shapes::StructureShape.new(name: 'SpekeKeyProviderCmaf')
@@ -681,6 +685,7 @@ module Aws::MediaConvert
681
685
  VideoPreprocessor = Shapes::StructureShape.new(name: 'VideoPreprocessor')
682
686
  VideoProperties = Shapes::StructureShape.new(name: 'VideoProperties')
683
687
  VideoSelector = Shapes::StructureShape.new(name: 'VideoSelector')
688
+ VideoSelectorType = Shapes::StringShape.new(name: 'VideoSelectorType')
684
689
  VideoTimecodeInsertion = Shapes::StringShape.new(name: 'VideoTimecodeInsertion')
685
690
  VorbisSettings = Shapes::StructureShape.new(name: 'VorbisSettings')
686
691
  Vp8FramerateControl = Shapes::StringShape.new(name: 'Vp8FramerateControl')
@@ -1395,6 +1400,12 @@ module Aws::MediaConvert
1395
1400
  CreateQueueResponse.add_member(:queue, Shapes::ShapeRef.new(shape: Queue, location_name: "queue"))
1396
1401
  CreateQueueResponse.struct_class = Types::CreateQueueResponse
1397
1402
 
1403
+ CreateResourceShareRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "jobId"))
1404
+ CreateResourceShareRequest.add_member(:support_case_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "supportCaseId"))
1405
+ CreateResourceShareRequest.struct_class = Types::CreateResourceShareRequest
1406
+
1407
+ CreateResourceShareResponse.struct_class = Types::CreateResourceShareResponse
1408
+
1398
1409
  DashAdditionalManifest.add_member(:manifest_name_modifier, Shapes::ShapeRef.new(shape: __stringMin1, location_name: "manifestNameModifier"))
1399
1410
  DashAdditionalManifest.add_member(:selected_outputs, Shapes::ShapeRef.new(shape: __listOf__stringMin1, location_name: "selectedOutputs"))
1400
1411
  DashAdditionalManifest.struct_class = Types::DashAdditionalManifest
@@ -2019,6 +2030,7 @@ module Aws::MediaConvert
2019
2030
  Job.add_member(:job_engine_version_used, Shapes::ShapeRef.new(shape: __string, location_name: "jobEngineVersionUsed"))
2020
2031
  Job.add_member(:job_percent_complete, Shapes::ShapeRef.new(shape: __integer, location_name: "jobPercentComplete"))
2021
2032
  Job.add_member(:job_template, Shapes::ShapeRef.new(shape: __string, location_name: "jobTemplate"))
2033
+ Job.add_member(:last_share_details, Shapes::ShapeRef.new(shape: __string, location_name: "lastShareDetails"))
2022
2034
  Job.add_member(:messages, Shapes::ShapeRef.new(shape: JobMessages, location_name: "messages"))
2023
2035
  Job.add_member(:output_group_details, Shapes::ShapeRef.new(shape: __listOfOutputGroupDetail, location_name: "outputGroupDetails"))
2024
2036
  Job.add_member(:priority, Shapes::ShapeRef.new(shape: __integerMinNegative50Max50, location_name: "priority"))
@@ -2027,6 +2039,7 @@ module Aws::MediaConvert
2027
2039
  Job.add_member(:retry_count, Shapes::ShapeRef.new(shape: __integer, location_name: "retryCount"))
2028
2040
  Job.add_member(:role, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "role"))
2029
2041
  Job.add_member(:settings, Shapes::ShapeRef.new(shape: JobSettings, required: true, location_name: "settings"))
2042
+ Job.add_member(:share_status, Shapes::ShapeRef.new(shape: ShareStatus, location_name: "shareStatus"))
2030
2043
  Job.add_member(:simulate_reserved_queue, Shapes::ShapeRef.new(shape: SimulateReservedQueue, location_name: "simulateReservedQueue"))
2031
2044
  Job.add_member(:status, Shapes::ShapeRef.new(shape: JobStatus, location_name: "status"))
2032
2045
  Job.add_member(:status_update_interval, Shapes::ShapeRef.new(shape: StatusUpdateInterval, location_name: "statusUpdateInterval"))
@@ -2273,6 +2286,7 @@ module Aws::MediaConvert
2273
2286
  MovSettings.add_member(:reference, Shapes::ShapeRef.new(shape: MovReference, location_name: "reference"))
2274
2287
  MovSettings.struct_class = Types::MovSettings
2275
2288
 
2289
+ Mp2Settings.add_member(:audio_description_mix, Shapes::ShapeRef.new(shape: Mp2AudioDescriptionMix, location_name: "audioDescriptionMix"))
2276
2290
  Mp2Settings.add_member(:bitrate, Shapes::ShapeRef.new(shape: __integerMin32000Max384000, location_name: "bitrate"))
2277
2291
  Mp2Settings.add_member(:channels, Shapes::ShapeRef.new(shape: __integerMin1Max2, location_name: "channels"))
2278
2292
  Mp2Settings.add_member(:sample_rate, Shapes::ShapeRef.new(shape: __integerMin32000Max48000, location_name: "sampleRate"))
@@ -2855,6 +2869,8 @@ module Aws::MediaConvert
2855
2869
  VideoSelector.add_member(:program_number, Shapes::ShapeRef.new(shape: __integerMinNegative2147483648Max2147483647, location_name: "programNumber"))
2856
2870
  VideoSelector.add_member(:rotate, Shapes::ShapeRef.new(shape: InputRotate, location_name: "rotate"))
2857
2871
  VideoSelector.add_member(:sample_range, Shapes::ShapeRef.new(shape: InputSampleRange, location_name: "sampleRange"))
2872
+ VideoSelector.add_member(:selector_type, Shapes::ShapeRef.new(shape: VideoSelectorType, location_name: "selectorType"))
2873
+ VideoSelector.add_member(:streams, Shapes::ShapeRef.new(shape: __listOf__integerMin1Max2147483647, location_name: "streams"))
2858
2874
  VideoSelector.struct_class = Types::VideoSelector
2859
2875
 
2860
2876
  VorbisSettings.add_member(:channels, Shapes::ShapeRef.new(shape: __integerMin1Max2, location_name: "channels"))
@@ -3185,6 +3201,20 @@ module Aws::MediaConvert
3185
3201
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3186
3202
  end)
3187
3203
 
3204
+ api.add_operation(:create_resource_share, Seahorse::Model::Operation.new.tap do |o|
3205
+ o.name = "CreateResourceShare"
3206
+ o.http_method = "POST"
3207
+ o.http_request_uri = "/2017-08-29/resourceShares"
3208
+ o.input = Shapes::ShapeRef.new(shape: CreateResourceShareRequest)
3209
+ o.output = Shapes::ShapeRef.new(shape: CreateResourceShareResponse)
3210
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
3211
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
3212
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
3213
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
3214
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
3215
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3216
+ end)
3217
+
3188
3218
  api.add_operation(:delete_job_template, Seahorse::Model::Operation.new.tap do |o|
3189
3219
  o.name = "DeleteJobTemplate"
3190
3220
  o.http_method = "DELETE"
@@ -49,7 +49,8 @@ module Aws::MediaConvert
49
49
  # HEV1 or HEV2. HEV1 (AAC-HE v1) adds spectral band replication to
50
50
  # improve speech audio at low bitrates. HEV2 (AAC-HE v2) adds
51
51
  # parametric stereo, which optimizes for encoding stereo audio at very
52
- # low bitrates.
52
+ # low bitrates. For improved audio quality at lower bitrates, adaptive
53
+ # audio bitrate switching, and loudness control: Choose XHE.
53
54
  # @return [String]
54
55
  #
55
56
  # @!attribute [rw] coding_mode
@@ -3500,6 +3501,31 @@ module Aws::MediaConvert
3500
3501
  include Aws::Structure
3501
3502
  end
3502
3503
 
3504
+ # The request to share MediaConvert resources with Support.
3505
+ #
3506
+ # @!attribute [rw] job_id
3507
+ # Specify MediaConvert Job ID or ARN to share
3508
+ # @return [String]
3509
+ #
3510
+ # @!attribute [rw] support_case_id
3511
+ # AWS Support case identifier
3512
+ # @return [String]
3513
+ #
3514
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/CreateResourceShareRequest AWS API Documentation
3515
+ #
3516
+ class CreateResourceShareRequest < Struct.new(
3517
+ :job_id,
3518
+ :support_case_id)
3519
+ SENSITIVE = []
3520
+ include Aws::Structure
3521
+ end
3522
+
3523
+ # Successfully accepted the request to share MediaConvert resources.
3524
+ #
3525
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/CreateResourceShareResponse AWS API Documentation
3526
+ #
3527
+ class CreateResourceShareResponse < Aws::EmptyStructure; end
3528
+
3503
3529
  # Specify the details for each additional DASH manifest that you want
3504
3530
  # the service to generate for this output group. Each manifest can
3505
3531
  # reference a different subset of outputs in the group.
@@ -7566,13 +7592,17 @@ module Aws::MediaConvert
7566
7592
  # @return [String]
7567
7593
  #
7568
7594
  # @!attribute [rw] i_frame_only_manifest
7569
- # Choose Include to have MediaConvert generate a child manifest that
7570
- # lists only the I-frames for this rendition, in addition to your
7571
- # regular manifest for this rendition. You might use this manifest as
7572
- # part of a workflow that creates preview functions for your video.
7573
- # MediaConvert adds both the I-frame only child manifest and the
7574
- # regular child manifest to the parent manifest. When you don't need
7575
- # the I-frame only child manifest, keep the default value Exclude.
7595
+ # Generate a variant manifest that lists only the I-frames for this
7596
+ # rendition. You might use this manifest as part of a workflow that
7597
+ # creates preview functions for your video. MediaConvert adds both the
7598
+ # I-frame only variant manifest and the regular variant manifest to
7599
+ # the multivariant manifest. To have MediaConvert write a variant
7600
+ # manifest that references I-frames from your output content using
7601
+ # EXT-X-BYTERANGE tags: Choose Include. To have MediaConvert output
7602
+ # I-frames as single frame TS files and a corresponding variant
7603
+ # manifest that references them: Choose Include as TS. When you don't
7604
+ # need the I-frame only variant manifest: Keep the default value,
7605
+ # Exclude.
7576
7606
  # @return [String]
7577
7607
  #
7578
7608
  # @!attribute [rw] segment_modifier
@@ -8120,6 +8150,7 @@ module Aws::MediaConvert
8120
8150
  # secretsmanager:DescribeSecret, and secretsmanager:GetSecretValue
8121
8151
  # permissions. Format:
8122
8152
  # arn:aws:events:region:account-id:connection/connection-name/unique-id
8153
+ # This setting is required when you include TAMS settings in your job.
8123
8154
  # @return [String]
8124
8155
  #
8125
8156
  # @!attribute [rw] gap_handling
@@ -8144,7 +8175,7 @@ module Aws::MediaConvert
8144
8175
  # can reference multiple flows for audio, video, or combined
8145
8176
  # audio/video content. MediaConvert automatically selects the highest
8146
8177
  # quality flows available for your job. This setting is required when
8147
- # include TAMS settings in your job.
8178
+ # you include TAMS settings in your job.
8148
8179
  # @return [String]
8149
8180
  #
8150
8181
  # @!attribute [rw] timerange
@@ -8154,8 +8185,8 @@ module Aws::MediaConvert
8154
8185
  # This must be two timestamp values with the format
8155
8186
  # \{sign?}\{seconds}:\{nanoseconds}, separated by an underscore,
8156
8187
  # surrounded by either parentheses or square brackets. Example:
8157
- # \[15:0\_35:0) This setting is required when include TAMS settings in
8158
- # your job.
8188
+ # \[15:0\_35:0) This setting is required when you include TAMS
8189
+ # settings in your job.
8159
8190
  # @return [String]
8160
8191
  #
8161
8192
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/InputTamsSettings AWS API Documentation
@@ -8647,6 +8678,12 @@ module Aws::MediaConvert
8647
8678
  # a job template.
8648
8679
  # @return [String]
8649
8680
  #
8681
+ # @!attribute [rw] last_share_details
8682
+ # Contains information about the most recent share attempt for the
8683
+ # job. For more information, see
8684
+ # https://docs.aws.amazon.com/mediaconvert/latest/ug/creating-resource-share.html
8685
+ # @return [String]
8686
+ #
8650
8687
  # @!attribute [rw] messages
8651
8688
  # Provides messages from the service about jobs that you have already
8652
8689
  # successfully submitted.
@@ -8686,6 +8723,10 @@ module Aws::MediaConvert
8686
8723
  # JobSettings contains all the transcode settings for a job.
8687
8724
  # @return [Types::JobSettings]
8688
8725
  #
8726
+ # @!attribute [rw] share_status
8727
+ # A job's share status can be NOT\_SHARED, INITIATED, or SHARED
8728
+ # @return [String]
8729
+ #
8689
8730
  # @!attribute [rw] simulate_reserved_queue
8690
8731
  # Enable this setting when you run a test job to estimate how many
8691
8732
  # reserved transcoding slots (RTS) you need. When this is enabled,
@@ -8742,6 +8783,7 @@ module Aws::MediaConvert
8742
8783
  :job_engine_version_used,
8743
8784
  :job_percent_complete,
8744
8785
  :job_template,
8786
+ :last_share_details,
8745
8787
  :messages,
8746
8788
  :output_group_details,
8747
8789
  :priority,
@@ -8750,6 +8792,7 @@ module Aws::MediaConvert
8750
8792
  :retry_count,
8751
8793
  :role,
8752
8794
  :settings,
8795
+ :share_status,
8753
8796
  :simulate_reserved_queue,
8754
8797
  :status,
8755
8798
  :status_update_interval,
@@ -10423,6 +10466,20 @@ module Aws::MediaConvert
10423
10466
 
10424
10467
  # Required when you set Codec to the value MP2.
10425
10468
  #
10469
+ # @!attribute [rw] audio_description_mix
10470
+ # Choose BROADCASTER\_MIXED\_AD when the input contains pre-mixed main
10471
+ # audio + audio description (AD) as a stereo pair. The value for
10472
+ # AudioType will be set to 3, which signals to downstream systems that
10473
+ # this stream contains "broadcaster mixed AD". Note that the input
10474
+ # received by the encoder must contain pre-mixed audio; the encoder
10475
+ # does not perform the mixing. When you choose BROADCASTER\_MIXED\_AD,
10476
+ # the encoder ignores any values you provide in AudioType and
10477
+ # FollowInputAudioType. Choose NONE when the input does not contain
10478
+ # pre-mixed audio + audio description (AD). In this case, the encoder
10479
+ # will use any values you provide for AudioType and
10480
+ # FollowInputAudioType.
10481
+ # @return [String]
10482
+ #
10426
10483
  # @!attribute [rw] bitrate
10427
10484
  # Specify the average bitrate in bits per second.
10428
10485
  # @return [Integer]
@@ -10440,6 +10497,7 @@ module Aws::MediaConvert
10440
10497
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/Mp2Settings AWS API Documentation
10441
10498
  #
10442
10499
  class Mp2Settings < Struct.new(
10500
+ :audio_description_mix,
10443
10501
  :bitrate,
10444
10502
  :channels,
10445
10503
  :sample_rate)
@@ -14695,6 +14753,21 @@ module Aws::MediaConvert
14695
14753
  # metadata.
14696
14754
  # @return [String]
14697
14755
  #
14756
+ # @!attribute [rw] selector_type
14757
+ # Choose the video selector type for your HLS input. Use to specify
14758
+ # which video rendition MediaConvert uses from your HLS input. To have
14759
+ # MediaConvert automatically use the highest bitrate rendition from
14760
+ # your HLS input: Keep the default value, Auto. To manually specify a
14761
+ # rendition: Choose Stream. Then enter the unique stream number in the
14762
+ # Streams array, starting at 1, corresponding to the stream order in
14763
+ # the manifest.
14764
+ # @return [String]
14765
+ #
14766
+ # @!attribute [rw] streams
14767
+ # Specify a stream for MediaConvert to use from your HLS input. Enter
14768
+ # an integer corresponding to the stream order in your HLS manifest.
14769
+ # @return [Array<Integer>]
14770
+ #
14698
14771
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/VideoSelector AWS API Documentation
14699
14772
  #
14700
14773
  class VideoSelector < Struct.new(
@@ -14708,7 +14781,9 @@ module Aws::MediaConvert
14708
14781
  :pid,
14709
14782
  :program_number,
14710
14783
  :rotate,
14711
- :sample_range)
14784
+ :sample_range,
14785
+ :selector_type,
14786
+ :streams)
14712
14787
  SENSITIVE = []
14713
14788
  include Aws::Structure
14714
14789
  end
@@ -54,7 +54,7 @@ module Aws::MediaConvert
54
54
  autoload :EndpointProvider, 'aws-sdk-mediaconvert/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-mediaconvert/endpoints'
56
56
 
57
- GEM_VERSION = '1.168.0'
57
+ GEM_VERSION = '1.169.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -376,7 +376,9 @@ module Aws
376
376
  pid: ::Integer?,
377
377
  program_number: ::Integer?,
378
378
  rotate: ("DEGREE_0" | "DEGREES_90" | "DEGREES_180" | "DEGREES_270" | "AUTO")?,
379
- sample_range: ("FOLLOW" | "FULL_RANGE" | "LIMITED_RANGE")?
379
+ sample_range: ("FOLLOW" | "FULL_RANGE" | "LIMITED_RANGE")?,
380
+ selector_type: ("AUTO" | "STREAM")?,
381
+ streams: Array[::Integer]?
380
382
  }?
381
383
  },
382
384
  ]?,
@@ -846,6 +848,7 @@ module Aws
846
848
  sample_rate: ::Integer?
847
849
  }?,
848
850
  mp_2_settings: {
851
+ audio_description_mix: ("BROADCASTER_MIXED_AD" | "NONE")?,
849
852
  bitrate: ::Integer?,
850
853
  channels: ::Integer?,
851
854
  sample_rate: ::Integer?
@@ -1143,7 +1146,7 @@ module Aws
1143
1146
  audio_rendition_sets: ::String?,
1144
1147
  audio_track_type: ("ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" | "ALTERNATE_AUDIO_AUTO_SELECT" | "ALTERNATE_AUDIO_NOT_AUTO_SELECT" | "AUDIO_ONLY_VARIANT_STREAM")?,
1145
1148
  descriptive_video_service_flag: ("DONT_FLAG" | "FLAG")?,
1146
- i_frame_only_manifest: ("INCLUDE" | "EXCLUDE")?,
1149
+ i_frame_only_manifest: ("INCLUDE" | "INCLUDE_AS_TS" | "EXCLUDE")?,
1147
1150
  segment_modifier: ::String?
1148
1151
  }?
1149
1152
  }?,
@@ -1865,7 +1868,9 @@ module Aws
1865
1868
  pid: ::Integer?,
1866
1869
  program_number: ::Integer?,
1867
1870
  rotate: ("DEGREE_0" | "DEGREES_90" | "DEGREES_180" | "DEGREES_270" | "AUTO")?,
1868
- sample_range: ("FOLLOW" | "FULL_RANGE" | "LIMITED_RANGE")?
1871
+ sample_range: ("FOLLOW" | "FULL_RANGE" | "LIMITED_RANGE")?,
1872
+ selector_type: ("AUTO" | "STREAM")?,
1873
+ streams: Array[::Integer]?
1869
1874
  }?
1870
1875
  },
1871
1876
  ]?,
@@ -2335,6 +2340,7 @@ module Aws
2335
2340
  sample_rate: ::Integer?
2336
2341
  }?,
2337
2342
  mp_2_settings: {
2343
+ audio_description_mix: ("BROADCASTER_MIXED_AD" | "NONE")?,
2338
2344
  bitrate: ::Integer?,
2339
2345
  channels: ::Integer?,
2340
2346
  sample_rate: ::Integer?
@@ -2632,7 +2638,7 @@ module Aws
2632
2638
  audio_rendition_sets: ::String?,
2633
2639
  audio_track_type: ("ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" | "ALTERNATE_AUDIO_AUTO_SELECT" | "ALTERNATE_AUDIO_NOT_AUTO_SELECT" | "AUDIO_ONLY_VARIANT_STREAM")?,
2634
2640
  descriptive_video_service_flag: ("DONT_FLAG" | "FLAG")?,
2635
- i_frame_only_manifest: ("INCLUDE" | "EXCLUDE")?,
2641
+ i_frame_only_manifest: ("INCLUDE" | "INCLUDE_AS_TS" | "EXCLUDE")?,
2636
2642
  segment_modifier: ::String?
2637
2643
  }?
2638
2644
  }?,
@@ -3204,6 +3210,7 @@ module Aws
3204
3210
  sample_rate: ::Integer?
3205
3211
  }?,
3206
3212
  mp_2_settings: {
3213
+ audio_description_mix: ("BROADCASTER_MIXED_AD" | "NONE")?,
3207
3214
  bitrate: ::Integer?,
3208
3215
  channels: ::Integer?,
3209
3216
  sample_rate: ::Integer?
@@ -3950,6 +3957,16 @@ module Aws
3950
3957
  ) -> _CreateQueueResponseSuccess
3951
3958
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateQueueResponseSuccess
3952
3959
 
3960
+ interface _CreateResourceShareResponseSuccess
3961
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateResourceShareResponse]
3962
+ end
3963
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConvert/Client.html#create_resource_share-instance_method
3964
+ def create_resource_share: (
3965
+ job_id: ::String,
3966
+ support_case_id: ::String
3967
+ ) -> _CreateResourceShareResponseSuccess
3968
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResourceShareResponseSuccess
3969
+
3953
3970
  interface _DeleteJobTemplateResponseSuccess
3954
3971
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteJobTemplateResponse]
3955
3972
  end
@@ -4460,7 +4477,9 @@ module Aws
4460
4477
  pid: ::Integer?,
4461
4478
  program_number: ::Integer?,
4462
4479
  rotate: ("DEGREE_0" | "DEGREES_90" | "DEGREES_180" | "DEGREES_270" | "AUTO")?,
4463
- sample_range: ("FOLLOW" | "FULL_RANGE" | "LIMITED_RANGE")?
4480
+ sample_range: ("FOLLOW" | "FULL_RANGE" | "LIMITED_RANGE")?,
4481
+ selector_type: ("AUTO" | "STREAM")?,
4482
+ streams: Array[::Integer]?
4464
4483
  }?
4465
4484
  },
4466
4485
  ]?,
@@ -4930,6 +4949,7 @@ module Aws
4930
4949
  sample_rate: ::Integer?
4931
4950
  }?,
4932
4951
  mp_2_settings: {
4952
+ audio_description_mix: ("BROADCASTER_MIXED_AD" | "NONE")?,
4933
4953
  bitrate: ::Integer?,
4934
4954
  channels: ::Integer?,
4935
4955
  sample_rate: ::Integer?
@@ -5227,7 +5247,7 @@ module Aws
5227
5247
  audio_rendition_sets: ::String?,
5228
5248
  audio_track_type: ("ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" | "ALTERNATE_AUDIO_AUTO_SELECT" | "ALTERNATE_AUDIO_NOT_AUTO_SELECT" | "AUDIO_ONLY_VARIANT_STREAM")?,
5229
5249
  descriptive_video_service_flag: ("DONT_FLAG" | "FLAG")?,
5230
- i_frame_only_manifest: ("INCLUDE" | "EXCLUDE")?,
5250
+ i_frame_only_manifest: ("INCLUDE" | "INCLUDE_AS_TS" | "EXCLUDE")?,
5231
5251
  segment_modifier: ::String?
5232
5252
  }?
5233
5253
  }?,
@@ -5798,6 +5818,7 @@ module Aws
5798
5818
  sample_rate: ::Integer?
5799
5819
  }?,
5800
5820
  mp_2_settings: {
5821
+ audio_description_mix: ("BROADCASTER_MIXED_AD" | "NONE")?,
5801
5822
  bitrate: ::Integer?,
5802
5823
  channels: ::Integer?,
5803
5824
  sample_rate: ::Integer?
data/sig/types.rbs CHANGED
@@ -545,6 +545,15 @@ module Aws::MediaConvert
545
545
  SENSITIVE: []
546
546
  end
547
547
 
548
+ class CreateResourceShareRequest
549
+ attr_accessor job_id: ::String
550
+ attr_accessor support_case_id: ::String
551
+ SENSITIVE: []
552
+ end
553
+
554
+ class CreateResourceShareResponse < Aws::EmptyStructure
555
+ end
556
+
548
557
  class DashAdditionalManifest
549
558
  attr_accessor manifest_name_modifier: ::String
550
559
  attr_accessor selected_outputs: ::Array[::String]
@@ -1173,7 +1182,7 @@ module Aws::MediaConvert
1173
1182
  attr_accessor audio_rendition_sets: ::String
1174
1183
  attr_accessor audio_track_type: ("ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" | "ALTERNATE_AUDIO_AUTO_SELECT" | "ALTERNATE_AUDIO_NOT_AUTO_SELECT" | "AUDIO_ONLY_VARIANT_STREAM")
1175
1184
  attr_accessor descriptive_video_service_flag: ("DONT_FLAG" | "FLAG")
1176
- attr_accessor i_frame_only_manifest: ("INCLUDE" | "EXCLUDE")
1185
+ attr_accessor i_frame_only_manifest: ("INCLUDE" | "INCLUDE_AS_TS" | "EXCLUDE")
1177
1186
  attr_accessor segment_modifier: ::String
1178
1187
  SENSITIVE: []
1179
1188
  end
@@ -1327,6 +1336,7 @@ module Aws::MediaConvert
1327
1336
  attr_accessor job_engine_version_used: ::String
1328
1337
  attr_accessor job_percent_complete: ::Integer
1329
1338
  attr_accessor job_template: ::String
1339
+ attr_accessor last_share_details: ::String
1330
1340
  attr_accessor messages: Types::JobMessages
1331
1341
  attr_accessor output_group_details: ::Array[Types::OutputGroupDetail]
1332
1342
  attr_accessor priority: ::Integer
@@ -1335,6 +1345,7 @@ module Aws::MediaConvert
1335
1345
  attr_accessor retry_count: ::Integer
1336
1346
  attr_accessor role: ::String
1337
1347
  attr_accessor settings: Types::JobSettings
1348
+ attr_accessor share_status: ("NOT_SHARED" | "INITIATED" | "SHARED")
1338
1349
  attr_accessor simulate_reserved_queue: ("DISABLED" | "ENABLED")
1339
1350
  attr_accessor status: ("SUBMITTED" | "PROGRESSING" | "COMPLETE" | "CANCELED" | "ERROR")
1340
1351
  attr_accessor status_update_interval: ("SECONDS_10" | "SECONDS_12" | "SECONDS_15" | "SECONDS_20" | "SECONDS_30" | "SECONDS_60" | "SECONDS_120" | "SECONDS_180" | "SECONDS_240" | "SECONDS_300" | "SECONDS_360" | "SECONDS_420" | "SECONDS_480" | "SECONDS_540" | "SECONDS_600")
@@ -1639,6 +1650,7 @@ module Aws::MediaConvert
1639
1650
  end
1640
1651
 
1641
1652
  class Mp2Settings
1653
+ attr_accessor audio_description_mix: ("BROADCASTER_MIXED_AD" | "NONE")
1642
1654
  attr_accessor bitrate: ::Integer
1643
1655
  attr_accessor channels: ::Integer
1644
1656
  attr_accessor sample_rate: ::Integer
@@ -2397,6 +2409,8 @@ module Aws::MediaConvert
2397
2409
  attr_accessor program_number: ::Integer
2398
2410
  attr_accessor rotate: ("DEGREE_0" | "DEGREES_90" | "DEGREES_180" | "DEGREES_270" | "AUTO")
2399
2411
  attr_accessor sample_range: ("FOLLOW" | "FULL_RANGE" | "LIMITED_RANGE")
2412
+ attr_accessor selector_type: ("AUTO" | "STREAM")
2413
+ attr_accessor streams: ::Array[::Integer]
2400
2414
  SENSITIVE: []
2401
2415
  end
2402
2416
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconvert
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.168.0
4
+ version: 1.169.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services