aws-sdk-mediaconvert 1.182.0 → 1.184.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 +21 -7
- data/lib/aws-sdk-mediaconvert/client_api.rb +23 -0
- data/lib/aws-sdk-mediaconvert/types.rb +65 -0
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- data/sig/client.rbs +7 -5
- data/sig/types.rbs +17 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3c00c43005cf4db9ff70c3115a4ea8d30f226357b28b6d8a542dbc7b561cd2e
|
|
4
|
+
data.tar.gz: 9d4c352384bdca69a5339cfecd0270c1ce6310097ad17384c6731e72f5b00359
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 454a7c66aedf7fa1796f7aef04a4b14c67f4437223092c7fb641f7b7136574e9ef3f0b0ca2d11e06e80af52db3a82bd7628fbfad682149f4e09ff86daa904ef8
|
|
7
|
+
data.tar.gz: dff3ef960ba8258e535cfc72857ee9eab34953462cb83f2bd407d7dc7a9c23403b1aff1a2658f01daf463eefc8de389bbadae579aabf87de1e1d7a8f1125540d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.184.0 (2026-05-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.183.0 (2026-04-16)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for Elemental Inference powered smart crop feature, enabling video verticalization
|
|
13
|
+
|
|
4
14
|
1.182.0 (2026-04-10)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.184.0
|
|
@@ -1469,7 +1469,7 @@ module Aws::MediaConvert
|
|
|
1469
1469
|
# y: 1,
|
|
1470
1470
|
# },
|
|
1471
1471
|
# respond_to_afd: "NONE", # accepts NONE, RESPOND, PASSTHROUGH
|
|
1472
|
-
# scaling_behavior: "DEFAULT", # accepts DEFAULT, STRETCH_TO_OUTPUT, FIT, FIT_NO_UPSCALE, FILL
|
|
1472
|
+
# scaling_behavior: "DEFAULT", # accepts DEFAULT, STRETCH_TO_OUTPUT, FIT, FIT_NO_UPSCALE, FILL, SMART_CROP
|
|
1473
1473
|
# sharpness: 1,
|
|
1474
1474
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
|
1475
1475
|
# timecode_track: "DISABLED", # accepts DISABLED, ENABLED
|
|
@@ -2204,7 +2204,7 @@ module Aws::MediaConvert
|
|
|
2204
2204
|
# resp.preset.settings.video_description.position.x #=> Integer
|
|
2205
2205
|
# resp.preset.settings.video_description.position.y #=> Integer
|
|
2206
2206
|
# resp.preset.settings.video_description.respond_to_afd #=> String, one of "NONE", "RESPOND", "PASSTHROUGH"
|
|
2207
|
-
# resp.preset.settings.video_description.scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT", "FIT", "FIT_NO_UPSCALE", "FILL"
|
|
2207
|
+
# resp.preset.settings.video_description.scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT", "FIT", "FIT_NO_UPSCALE", "FILL", "SMART_CROP"
|
|
2208
2208
|
# resp.preset.settings.video_description.sharpness #=> Integer
|
|
2209
2209
|
# resp.preset.settings.video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
2210
2210
|
# resp.preset.settings.video_description.timecode_track #=> String, one of "DISABLED", "ENABLED"
|
|
@@ -2301,6 +2301,10 @@ module Aws::MediaConvert
|
|
|
2301
2301
|
# @option params [String] :description
|
|
2302
2302
|
# Optional. A description of the queue that you are creating.
|
|
2303
2303
|
#
|
|
2304
|
+
# @option params [Integer] :maximum_concurrent_feeds
|
|
2305
|
+
# Specify the maximum number of Elemental Inference feeds MediaConvert
|
|
2306
|
+
# can process concurrently.
|
|
2307
|
+
#
|
|
2304
2308
|
# @option params [required, String] :name
|
|
2305
2309
|
# The name of the queue that you are creating.
|
|
2306
2310
|
#
|
|
@@ -2333,6 +2337,7 @@ module Aws::MediaConvert
|
|
|
2333
2337
|
# resp = client.create_queue({
|
|
2334
2338
|
# concurrent_jobs: 1,
|
|
2335
2339
|
# description: "__string",
|
|
2340
|
+
# maximum_concurrent_feeds: 1,
|
|
2336
2341
|
# name: "__string", # required
|
|
2337
2342
|
# pricing_plan: "ON_DEMAND", # accepts ON_DEMAND, RESERVED
|
|
2338
2343
|
# reservation_plan_settings: {
|
|
@@ -2353,6 +2358,7 @@ module Aws::MediaConvert
|
|
|
2353
2358
|
# resp.queue.created_at #=> Time
|
|
2354
2359
|
# resp.queue.description #=> String
|
|
2355
2360
|
# resp.queue.last_updated #=> Time
|
|
2361
|
+
# resp.queue.maximum_concurrent_feeds #=> Integer
|
|
2356
2362
|
# resp.queue.name #=> String
|
|
2357
2363
|
# resp.queue.pricing_plan #=> String, one of "ON_DEMAND", "RESERVED"
|
|
2358
2364
|
# resp.queue.progressing_jobs_count #=> Integer
|
|
@@ -3294,7 +3300,7 @@ module Aws::MediaConvert
|
|
|
3294
3300
|
# resp.preset.settings.video_description.position.x #=> Integer
|
|
3295
3301
|
# resp.preset.settings.video_description.position.y #=> Integer
|
|
3296
3302
|
# resp.preset.settings.video_description.respond_to_afd #=> String, one of "NONE", "RESPOND", "PASSTHROUGH"
|
|
3297
|
-
# resp.preset.settings.video_description.scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT", "FIT", "FIT_NO_UPSCALE", "FILL"
|
|
3303
|
+
# resp.preset.settings.video_description.scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT", "FIT", "FIT_NO_UPSCALE", "FILL", "SMART_CROP"
|
|
3298
3304
|
# resp.preset.settings.video_description.sharpness #=> Integer
|
|
3299
3305
|
# resp.preset.settings.video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
3300
3306
|
# resp.preset.settings.video_description.timecode_track #=> String, one of "DISABLED", "ENABLED"
|
|
@@ -3398,6 +3404,7 @@ module Aws::MediaConvert
|
|
|
3398
3404
|
# resp.queue.created_at #=> Time
|
|
3399
3405
|
# resp.queue.description #=> String
|
|
3400
3406
|
# resp.queue.last_updated #=> Time
|
|
3407
|
+
# resp.queue.maximum_concurrent_feeds #=> Integer
|
|
3401
3408
|
# resp.queue.name #=> String
|
|
3402
3409
|
# resp.queue.pricing_plan #=> String, one of "ON_DEMAND", "RESERVED"
|
|
3403
3410
|
# resp.queue.progressing_jobs_count #=> Integer
|
|
@@ -4198,7 +4205,7 @@ module Aws::MediaConvert
|
|
|
4198
4205
|
# resp.presets[0].settings.video_description.position.x #=> Integer
|
|
4199
4206
|
# resp.presets[0].settings.video_description.position.y #=> Integer
|
|
4200
4207
|
# resp.presets[0].settings.video_description.respond_to_afd #=> String, one of "NONE", "RESPOND", "PASSTHROUGH"
|
|
4201
|
-
# resp.presets[0].settings.video_description.scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT", "FIT", "FIT_NO_UPSCALE", "FILL"
|
|
4208
|
+
# resp.presets[0].settings.video_description.scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT", "FIT", "FIT_NO_UPSCALE", "FILL", "SMART_CROP"
|
|
4202
4209
|
# resp.presets[0].settings.video_description.sharpness #=> Integer
|
|
4203
4210
|
# resp.presets[0].settings.video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
4204
4211
|
# resp.presets[0].settings.video_description.timecode_track #=> String, one of "DISABLED", "ENABLED"
|
|
@@ -4329,6 +4336,7 @@ module Aws::MediaConvert
|
|
|
4329
4336
|
# resp.queues[0].created_at #=> Time
|
|
4330
4337
|
# resp.queues[0].description #=> String
|
|
4331
4338
|
# resp.queues[0].last_updated #=> Time
|
|
4339
|
+
# resp.queues[0].maximum_concurrent_feeds #=> Integer
|
|
4332
4340
|
# resp.queues[0].name #=> String
|
|
4333
4341
|
# resp.queues[0].pricing_plan #=> String, one of "ON_DEMAND", "RESERVED"
|
|
4334
4342
|
# resp.queues[0].progressing_jobs_count #=> Integer
|
|
@@ -5552,7 +5560,7 @@ module Aws::MediaConvert
|
|
|
5552
5560
|
# y: 1,
|
|
5553
5561
|
# },
|
|
5554
5562
|
# respond_to_afd: "NONE", # accepts NONE, RESPOND, PASSTHROUGH
|
|
5555
|
-
# scaling_behavior: "DEFAULT", # accepts DEFAULT, STRETCH_TO_OUTPUT, FIT, FIT_NO_UPSCALE, FILL
|
|
5563
|
+
# scaling_behavior: "DEFAULT", # accepts DEFAULT, STRETCH_TO_OUTPUT, FIT, FIT_NO_UPSCALE, FILL, SMART_CROP
|
|
5556
5564
|
# sharpness: 1,
|
|
5557
5565
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
|
5558
5566
|
# timecode_track: "DISABLED", # accepts DISABLED, ENABLED
|
|
@@ -6284,7 +6292,7 @@ module Aws::MediaConvert
|
|
|
6284
6292
|
# resp.preset.settings.video_description.position.x #=> Integer
|
|
6285
6293
|
# resp.preset.settings.video_description.position.y #=> Integer
|
|
6286
6294
|
# resp.preset.settings.video_description.respond_to_afd #=> String, one of "NONE", "RESPOND", "PASSTHROUGH"
|
|
6287
|
-
# resp.preset.settings.video_description.scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT", "FIT", "FIT_NO_UPSCALE", "FILL"
|
|
6295
|
+
# resp.preset.settings.video_description.scaling_behavior #=> String, one of "DEFAULT", "STRETCH_TO_OUTPUT", "FIT", "FIT_NO_UPSCALE", "FILL", "SMART_CROP"
|
|
6288
6296
|
# resp.preset.settings.video_description.sharpness #=> Integer
|
|
6289
6297
|
# resp.preset.settings.video_description.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
|
6290
6298
|
# resp.preset.settings.video_description.timecode_track #=> String, one of "DISABLED", "ENABLED"
|
|
@@ -6379,6 +6387,10 @@ module Aws::MediaConvert
|
|
|
6379
6387
|
# @option params [String] :description
|
|
6380
6388
|
# The new description for the queue, if you are changing it.
|
|
6381
6389
|
#
|
|
6390
|
+
# @option params [Integer] :maximum_concurrent_feeds
|
|
6391
|
+
# Specify the maximum number of Elemental Inference feeds MediaConvert
|
|
6392
|
+
# can process concurrently.
|
|
6393
|
+
#
|
|
6382
6394
|
# @option params [required, String] :name
|
|
6383
6395
|
# The name of the queue that you are modifying.
|
|
6384
6396
|
#
|
|
@@ -6405,6 +6417,7 @@ module Aws::MediaConvert
|
|
|
6405
6417
|
# resp = client.update_queue({
|
|
6406
6418
|
# concurrent_jobs: 1,
|
|
6407
6419
|
# description: "__string",
|
|
6420
|
+
# maximum_concurrent_feeds: 1,
|
|
6408
6421
|
# name: "__string", # required
|
|
6409
6422
|
# reservation_plan_settings: {
|
|
6410
6423
|
# commitment: "ONE_YEAR", # required, accepts ONE_YEAR
|
|
@@ -6421,6 +6434,7 @@ module Aws::MediaConvert
|
|
|
6421
6434
|
# resp.queue.created_at #=> Time
|
|
6422
6435
|
# resp.queue.description #=> String
|
|
6423
6436
|
# resp.queue.last_updated #=> Time
|
|
6437
|
+
# resp.queue.maximum_concurrent_feeds #=> Integer
|
|
6424
6438
|
# resp.queue.name #=> String
|
|
6425
6439
|
# resp.queue.pricing_plan #=> String, one of "ON_DEMAND", "RESERVED"
|
|
6426
6440
|
# resp.queue.progressing_jobs_count #=> Integer
|
|
@@ -6466,7 +6480,7 @@ module Aws::MediaConvert
|
|
|
6466
6480
|
tracer: tracer
|
|
6467
6481
|
)
|
|
6468
6482
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
|
6469
|
-
context[:gem_version] = '1.
|
|
6483
|
+
context[:gem_version] = '1.184.0'
|
|
6470
6484
|
Seahorse::Client::Request.new(handlers, context)
|
|
6471
6485
|
end
|
|
6472
6486
|
|
|
@@ -275,6 +275,10 @@ module Aws::MediaConvert
|
|
|
275
275
|
Eac3StereoDownmix = Shapes::StringShape.new(name: 'Eac3StereoDownmix')
|
|
276
276
|
Eac3SurroundExMode = Shapes::StringShape.new(name: 'Eac3SurroundExMode')
|
|
277
277
|
Eac3SurroundMode = Shapes::StringShape.new(name: 'Eac3SurroundMode')
|
|
278
|
+
ElementalInferenceConfiguration = Shapes::StructureShape.new(name: 'ElementalInferenceConfiguration')
|
|
279
|
+
ElementalInferenceFeature = Shapes::StringShape.new(name: 'ElementalInferenceFeature')
|
|
280
|
+
ElementalInferenceFeed = Shapes::StructureShape.new(name: 'ElementalInferenceFeed')
|
|
281
|
+
ElementalInferenceFeedManagementState = Shapes::StringShape.new(name: 'ElementalInferenceFeedManagementState')
|
|
278
282
|
EmbeddedConvert608To708 = Shapes::StringShape.new(name: 'EmbeddedConvert608To708')
|
|
279
283
|
EmbeddedDestinationSettings = Shapes::StructureShape.new(name: 'EmbeddedDestinationSettings')
|
|
280
284
|
EmbeddedSourceSettings = Shapes::StructureShape.new(name: 'EmbeddedSourceSettings')
|
|
@@ -779,6 +783,7 @@ module Aws::MediaConvert
|
|
|
779
783
|
__doubleMinNegative6Max3 = Shapes::FloatShape.new(name: '__doubleMinNegative6Max3')
|
|
780
784
|
__doubleMinNegative8Max0 = Shapes::FloatShape.new(name: '__doubleMinNegative8Max0')
|
|
781
785
|
__integer = Shapes::IntegerShape.new(name: '__integer')
|
|
786
|
+
__integerMin0 = Shapes::IntegerShape.new(name: '__integerMin0')
|
|
782
787
|
__integerMin0Max0 = Shapes::IntegerShape.new(name: '__integerMin0Max0')
|
|
783
788
|
__integerMin0Max1 = Shapes::IntegerShape.new(name: '__integerMin0Max1')
|
|
784
789
|
__integerMin0Max10 = Shapes::IntegerShape.new(name: '__integerMin0Max10')
|
|
@@ -896,6 +901,8 @@ module Aws::MediaConvert
|
|
|
896
901
|
__listOfCmafAdditionalManifest = Shapes::ListShape.new(name: '__listOfCmafAdditionalManifest')
|
|
897
902
|
__listOfColorConversion3DLUTSetting = Shapes::ListShape.new(name: '__listOfColorConversion3DLUTSetting')
|
|
898
903
|
__listOfDashAdditionalManifest = Shapes::ListShape.new(name: '__listOfDashAdditionalManifest')
|
|
904
|
+
__listOfElementalInferenceFeature = Shapes::ListShape.new(name: '__listOfElementalInferenceFeature')
|
|
905
|
+
__listOfElementalInferenceFeed = Shapes::ListShape.new(name: '__listOfElementalInferenceFeed')
|
|
899
906
|
__listOfEndpoint = Shapes::ListShape.new(name: '__listOfEndpoint')
|
|
900
907
|
__listOfForceIncludeRenditionSize = Shapes::ListShape.new(name: '__listOfForceIncludeRenditionSize')
|
|
901
908
|
__listOfFrameMetricType = Shapes::ListShape.new(name: '__listOfFrameMetricType')
|
|
@@ -1468,6 +1475,7 @@ module Aws::MediaConvert
|
|
|
1468
1475
|
|
|
1469
1476
|
CreateQueueRequest.add_member(:concurrent_jobs, Shapes::ShapeRef.new(shape: __integer, location_name: "concurrentJobs"))
|
|
1470
1477
|
CreateQueueRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
|
1478
|
+
CreateQueueRequest.add_member(:maximum_concurrent_feeds, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "maximumConcurrentFeeds"))
|
|
1471
1479
|
CreateQueueRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
|
1472
1480
|
CreateQueueRequest.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, location_name: "pricingPlan"))
|
|
1473
1481
|
CreateQueueRequest.add_member(:reservation_plan_settings, Shapes::ShapeRef.new(shape: ReservationPlanSettings, location_name: "reservationPlanSettings"))
|
|
@@ -1678,6 +1686,14 @@ module Aws::MediaConvert
|
|
|
1678
1686
|
Eac3Settings.add_member(:surround_mode, Shapes::ShapeRef.new(shape: Eac3SurroundMode, location_name: "surroundMode"))
|
|
1679
1687
|
Eac3Settings.struct_class = Types::Eac3Settings
|
|
1680
1688
|
|
|
1689
|
+
ElementalInferenceConfiguration.add_member(:features, Shapes::ShapeRef.new(shape: __listOfElementalInferenceFeature, location_name: "features"))
|
|
1690
|
+
ElementalInferenceConfiguration.add_member(:feeds, Shapes::ShapeRef.new(shape: __listOfElementalInferenceFeed, location_name: "feeds"))
|
|
1691
|
+
ElementalInferenceConfiguration.struct_class = Types::ElementalInferenceConfiguration
|
|
1692
|
+
|
|
1693
|
+
ElementalInferenceFeed.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
|
1694
|
+
ElementalInferenceFeed.add_member(:feed_management_state, Shapes::ShapeRef.new(shape: ElementalInferenceFeedManagementState, location_name: "feedManagementState"))
|
|
1695
|
+
ElementalInferenceFeed.struct_class = Types::ElementalInferenceFeed
|
|
1696
|
+
|
|
1681
1697
|
EmbeddedDestinationSettings.add_member(:destination_608_channel_number, Shapes::ShapeRef.new(shape: __integerMin1Max4, location_name: "destination608ChannelNumber"))
|
|
1682
1698
|
EmbeddedDestinationSettings.add_member(:destination_708_service_number, Shapes::ShapeRef.new(shape: __integerMin1Max6, location_name: "destination708ServiceNumber"))
|
|
1683
1699
|
EmbeddedDestinationSettings.struct_class = Types::EmbeddedDestinationSettings
|
|
@@ -2120,6 +2136,7 @@ module Aws::MediaConvert
|
|
|
2120
2136
|
Job.add_member(:client_request_token, Shapes::ShapeRef.new(shape: __string, location_name: "clientRequestToken"))
|
|
2121
2137
|
Job.add_member(:created_at, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "createdAt"))
|
|
2122
2138
|
Job.add_member(:current_phase, Shapes::ShapeRef.new(shape: JobPhase, location_name: "currentPhase"))
|
|
2139
|
+
Job.add_member(:elemental_inference_configuration, Shapes::ShapeRef.new(shape: ElementalInferenceConfiguration, location_name: "elementalInferenceConfiguration"))
|
|
2123
2140
|
Job.add_member(:error_code, Shapes::ShapeRef.new(shape: __integer, location_name: "errorCode"))
|
|
2124
2141
|
Job.add_member(:error_message, Shapes::ShapeRef.new(shape: __string, location_name: "errorMessage"))
|
|
2125
2142
|
Job.add_member(:hop_destinations, Shapes::ShapeRef.new(shape: __listOfHopDestination, location_name: "hopDestinations"))
|
|
@@ -2658,6 +2675,7 @@ module Aws::MediaConvert
|
|
|
2658
2675
|
Queue.add_member(:created_at, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "createdAt"))
|
|
2659
2676
|
Queue.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
|
2660
2677
|
Queue.add_member(:last_updated, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "lastUpdated"))
|
|
2678
|
+
Queue.add_member(:maximum_concurrent_feeds, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "maximumConcurrentFeeds"))
|
|
2661
2679
|
Queue.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
|
2662
2680
|
Queue.add_member(:pricing_plan, Shapes::ShapeRef.new(shape: PricingPlan, location_name: "pricingPlan"))
|
|
2663
2681
|
Queue.add_member(:progressing_jobs_count, Shapes::ShapeRef.new(shape: __integer, location_name: "progressingJobsCount"))
|
|
@@ -2871,6 +2889,7 @@ module Aws::MediaConvert
|
|
|
2871
2889
|
|
|
2872
2890
|
UpdateQueueRequest.add_member(:concurrent_jobs, Shapes::ShapeRef.new(shape: __integer, location_name: "concurrentJobs"))
|
|
2873
2891
|
UpdateQueueRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
|
2892
|
+
UpdateQueueRequest.add_member(:maximum_concurrent_feeds, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "maximumConcurrentFeeds"))
|
|
2874
2893
|
UpdateQueueRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "name"))
|
|
2875
2894
|
UpdateQueueRequest.add_member(:reservation_plan_settings, Shapes::ShapeRef.new(shape: ReservationPlanSettings, location_name: "reservationPlanSettings"))
|
|
2876
2895
|
UpdateQueueRequest.add_member(:status, Shapes::ShapeRef.new(shape: QueueStatus, location_name: "status"))
|
|
@@ -3127,6 +3146,10 @@ module Aws::MediaConvert
|
|
|
3127
3146
|
|
|
3128
3147
|
__listOfDashAdditionalManifest.member = Shapes::ShapeRef.new(shape: DashAdditionalManifest)
|
|
3129
3148
|
|
|
3149
|
+
__listOfElementalInferenceFeature.member = Shapes::ShapeRef.new(shape: ElementalInferenceFeature)
|
|
3150
|
+
|
|
3151
|
+
__listOfElementalInferenceFeed.member = Shapes::ShapeRef.new(shape: ElementalInferenceFeed)
|
|
3152
|
+
|
|
3130
3153
|
__listOfEndpoint.member = Shapes::ShapeRef.new(shape: Endpoint)
|
|
3131
3154
|
|
|
3132
3155
|
__listOfForceIncludeRenditionSize.member = Shapes::ShapeRef.new(shape: ForceIncludeRenditionSize)
|
|
@@ -3802,6 +3802,11 @@ module Aws::MediaConvert
|
|
|
3802
3802
|
# Optional. A description of the queue that you are creating.
|
|
3803
3803
|
# @return [String]
|
|
3804
3804
|
#
|
|
3805
|
+
# @!attribute [rw] maximum_concurrent_feeds
|
|
3806
|
+
# Specify the maximum number of Elemental Inference feeds MediaConvert
|
|
3807
|
+
# can process concurrently.
|
|
3808
|
+
# @return [Integer]
|
|
3809
|
+
#
|
|
3805
3810
|
# @!attribute [rw] name
|
|
3806
3811
|
# The name of the queue that you are creating.
|
|
3807
3812
|
# @return [String]
|
|
@@ -3835,6 +3840,7 @@ module Aws::MediaConvert
|
|
|
3835
3840
|
class CreateQueueRequest < Struct.new(
|
|
3836
3841
|
:concurrent_jobs,
|
|
3837
3842
|
:description,
|
|
3843
|
+
:maximum_concurrent_feeds,
|
|
3838
3844
|
:name,
|
|
3839
3845
|
:pricing_plan,
|
|
3840
3846
|
:reservation_plan_settings,
|
|
@@ -5403,6 +5409,44 @@ module Aws::MediaConvert
|
|
|
5403
5409
|
include Aws::Structure
|
|
5404
5410
|
end
|
|
5405
5411
|
|
|
5412
|
+
# The Elemental Inference configuration used in this job.
|
|
5413
|
+
#
|
|
5414
|
+
# @!attribute [rw] features
|
|
5415
|
+
# A list of Elemental Inference features used in this job.
|
|
5416
|
+
# @return [Array<String>]
|
|
5417
|
+
#
|
|
5418
|
+
# @!attribute [rw] feeds
|
|
5419
|
+
# A list of Elemental Inference feeds used by this job.
|
|
5420
|
+
# @return [Array<Types::ElementalInferenceFeed>]
|
|
5421
|
+
#
|
|
5422
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ElementalInferenceConfiguration AWS API Documentation
|
|
5423
|
+
#
|
|
5424
|
+
class ElementalInferenceConfiguration < Struct.new(
|
|
5425
|
+
:features,
|
|
5426
|
+
:feeds)
|
|
5427
|
+
SENSITIVE = []
|
|
5428
|
+
include Aws::Structure
|
|
5429
|
+
end
|
|
5430
|
+
|
|
5431
|
+
# Elemental Inference Feed.
|
|
5432
|
+
#
|
|
5433
|
+
# @!attribute [rw] arn
|
|
5434
|
+
# Feed ARN.
|
|
5435
|
+
# @return [String]
|
|
5436
|
+
#
|
|
5437
|
+
# @!attribute [rw] feed_management_state
|
|
5438
|
+
# Elemental Inference Feed management state.
|
|
5439
|
+
# @return [String]
|
|
5440
|
+
#
|
|
5441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ElementalInferenceFeed AWS API Documentation
|
|
5442
|
+
#
|
|
5443
|
+
class ElementalInferenceFeed < Struct.new(
|
|
5444
|
+
:arn,
|
|
5445
|
+
:feed_management_state)
|
|
5446
|
+
SENSITIVE = []
|
|
5447
|
+
include Aws::Structure
|
|
5448
|
+
end
|
|
5449
|
+
|
|
5406
5450
|
# Settings related to CEA/EIA-608 and CEA/EIA-708 (also called embedded
|
|
5407
5451
|
# or ancillary) captions. Set up embedded captions in the same output as
|
|
5408
5452
|
# your video. For more information, see
|
|
@@ -9154,6 +9198,10 @@ module Aws::MediaConvert
|
|
|
9154
9198
|
# A job's phase can be PROBING, TRANSCODING OR UPLOADING
|
|
9155
9199
|
# @return [String]
|
|
9156
9200
|
#
|
|
9201
|
+
# @!attribute [rw] elemental_inference_configuration
|
|
9202
|
+
# The Elemental Inference configuration used in this job.
|
|
9203
|
+
# @return [Types::ElementalInferenceConfiguration]
|
|
9204
|
+
#
|
|
9157
9205
|
# @!attribute [rw] error_code
|
|
9158
9206
|
# Error code for the job
|
|
9159
9207
|
# @return [Integer]
|
|
@@ -9302,6 +9350,7 @@ module Aws::MediaConvert
|
|
|
9302
9350
|
:client_request_token,
|
|
9303
9351
|
:created_at,
|
|
9304
9352
|
:current_phase,
|
|
9353
|
+
:elemental_inference_configuration,
|
|
9305
9354
|
:error_code,
|
|
9306
9355
|
:error_message,
|
|
9307
9356
|
:hop_destinations,
|
|
@@ -13092,6 +13141,11 @@ module Aws::MediaConvert
|
|
|
13092
13141
|
# the queue.
|
|
13093
13142
|
# @return [Time]
|
|
13094
13143
|
#
|
|
13144
|
+
# @!attribute [rw] maximum_concurrent_feeds
|
|
13145
|
+
# Specify the maximum number of Elemental Inference feeds MediaConvert
|
|
13146
|
+
# can process concurrently.
|
|
13147
|
+
# @return [Integer]
|
|
13148
|
+
#
|
|
13095
13149
|
# @!attribute [rw] name
|
|
13096
13150
|
# A name that you create for each queue. Each name must be unique
|
|
13097
13151
|
# within your account.
|
|
@@ -13145,6 +13199,7 @@ module Aws::MediaConvert
|
|
|
13145
13199
|
:created_at,
|
|
13146
13200
|
:description,
|
|
13147
13201
|
:last_updated,
|
|
13202
|
+
:maximum_concurrent_feeds,
|
|
13148
13203
|
:name,
|
|
13149
13204
|
:pricing_plan,
|
|
13150
13205
|
:progressing_jobs_count,
|
|
@@ -14480,6 +14535,11 @@ module Aws::MediaConvert
|
|
|
14480
14535
|
# The new description for the queue, if you are changing it.
|
|
14481
14536
|
# @return [String]
|
|
14482
14537
|
#
|
|
14538
|
+
# @!attribute [rw] maximum_concurrent_feeds
|
|
14539
|
+
# Specify the maximum number of Elemental Inference feeds MediaConvert
|
|
14540
|
+
# can process concurrently.
|
|
14541
|
+
# @return [Integer]
|
|
14542
|
+
#
|
|
14483
14543
|
# @!attribute [rw] name
|
|
14484
14544
|
# The name of the queue that you are modifying.
|
|
14485
14545
|
# @return [String]
|
|
@@ -14505,6 +14565,7 @@ module Aws::MediaConvert
|
|
|
14505
14565
|
class UpdateQueueRequest < Struct.new(
|
|
14506
14566
|
:concurrent_jobs,
|
|
14507
14567
|
:description,
|
|
14568
|
+
:maximum_concurrent_feeds,
|
|
14508
14569
|
:name,
|
|
14509
14570
|
:reservation_plan_settings,
|
|
14510
14571
|
:status)
|
|
@@ -14853,6 +14914,10 @@ module Aws::MediaConvert
|
|
|
14853
14914
|
# Specify the video Scaling behavior when your output has a different
|
|
14854
14915
|
# resolution than your input. For more information, see
|
|
14855
14916
|
# https://docs.aws.amazon.com/mediaconvert/latest/ug/video-scaling.html
|
|
14917
|
+
# Select Smart Cropping using Elemental Inference as your scaling
|
|
14918
|
+
# behavior to have Elemental Inference automatically crop your video.
|
|
14919
|
+
# Smart Crop requires a vertical output aspect ratio (1:1 is the
|
|
14920
|
+
# widest aspect ratio supported).
|
|
14856
14921
|
# @return [String]
|
|
14857
14922
|
#
|
|
14858
14923
|
# @!attribute [rw] sharpness
|
data/lib/aws-sdk-mediaconvert.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1561,7 +1561,7 @@ module Aws
|
|
|
1561
1561
|
y: ::Integer?
|
|
1562
1562
|
}?,
|
|
1563
1563
|
respond_to_afd: ("NONE" | "RESPOND" | "PASSTHROUGH")?,
|
|
1564
|
-
scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT" | "FIT" | "FIT_NO_UPSCALE" | "FILL")?,
|
|
1564
|
+
scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT" | "FIT" | "FIT_NO_UPSCALE" | "FILL" | "SMART_CROP")?,
|
|
1565
1565
|
sharpness: ::Integer?,
|
|
1566
1566
|
timecode_insertion: ("DISABLED" | "PIC_TIMING_SEI")?,
|
|
1567
1567
|
timecode_track: ("DISABLED" | "ENABLED")?,
|
|
@@ -3133,7 +3133,7 @@ module Aws
|
|
|
3133
3133
|
y: ::Integer?
|
|
3134
3134
|
}?,
|
|
3135
3135
|
respond_to_afd: ("NONE" | "RESPOND" | "PASSTHROUGH")?,
|
|
3136
|
-
scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT" | "FIT" | "FIT_NO_UPSCALE" | "FILL")?,
|
|
3136
|
+
scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT" | "FIT" | "FIT_NO_UPSCALE" | "FILL" | "SMART_CROP")?,
|
|
3137
3137
|
sharpness: ::Integer?,
|
|
3138
3138
|
timecode_insertion: ("DISABLED" | "PIC_TIMING_SEI")?,
|
|
3139
3139
|
timecode_track: ("DISABLED" | "ENABLED")?,
|
|
@@ -4024,7 +4024,7 @@ module Aws
|
|
|
4024
4024
|
y: ::Integer?
|
|
4025
4025
|
}?,
|
|
4026
4026
|
respond_to_afd: ("NONE" | "RESPOND" | "PASSTHROUGH")?,
|
|
4027
|
-
scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT" | "FIT" | "FIT_NO_UPSCALE" | "FILL")?,
|
|
4027
|
+
scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT" | "FIT" | "FIT_NO_UPSCALE" | "FILL" | "SMART_CROP")?,
|
|
4028
4028
|
sharpness: ::Integer?,
|
|
4029
4029
|
timecode_insertion: ("DISABLED" | "PIC_TIMING_SEI")?,
|
|
4030
4030
|
timecode_track: ("DISABLED" | "ENABLED")?,
|
|
@@ -4144,6 +4144,7 @@ module Aws
|
|
|
4144
4144
|
def create_queue: (
|
|
4145
4145
|
?concurrent_jobs: ::Integer,
|
|
4146
4146
|
?description: ::String,
|
|
4147
|
+
?maximum_concurrent_feeds: ::Integer,
|
|
4147
4148
|
name: ::String,
|
|
4148
4149
|
?pricing_plan: ("ON_DEMAND" | "RESERVED"),
|
|
4149
4150
|
?reservation_plan_settings: {
|
|
@@ -5888,7 +5889,7 @@ module Aws
|
|
|
5888
5889
|
y: ::Integer?
|
|
5889
5890
|
}?,
|
|
5890
5891
|
respond_to_afd: ("NONE" | "RESPOND" | "PASSTHROUGH")?,
|
|
5891
|
-
scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT" | "FIT" | "FIT_NO_UPSCALE" | "FILL")?,
|
|
5892
|
+
scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT" | "FIT" | "FIT_NO_UPSCALE" | "FILL" | "SMART_CROP")?,
|
|
5892
5893
|
sharpness: ::Integer?,
|
|
5893
5894
|
timecode_insertion: ("DISABLED" | "PIC_TIMING_SEI")?,
|
|
5894
5895
|
timecode_track: ("DISABLED" | "ENABLED")?,
|
|
@@ -6778,7 +6779,7 @@ module Aws
|
|
|
6778
6779
|
y: ::Integer?
|
|
6779
6780
|
}?,
|
|
6780
6781
|
respond_to_afd: ("NONE" | "RESPOND" | "PASSTHROUGH")?,
|
|
6781
|
-
scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT" | "FIT" | "FIT_NO_UPSCALE" | "FILL")?,
|
|
6782
|
+
scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT" | "FIT" | "FIT_NO_UPSCALE" | "FILL" | "SMART_CROP")?,
|
|
6782
6783
|
sharpness: ::Integer?,
|
|
6783
6784
|
timecode_insertion: ("DISABLED" | "PIC_TIMING_SEI")?,
|
|
6784
6785
|
timecode_track: ("DISABLED" | "ENABLED")?,
|
|
@@ -6897,6 +6898,7 @@ module Aws
|
|
|
6897
6898
|
def update_queue: (
|
|
6898
6899
|
?concurrent_jobs: ::Integer,
|
|
6899
6900
|
?description: ::String,
|
|
6901
|
+
?maximum_concurrent_feeds: ::Integer,
|
|
6900
6902
|
name: ::String,
|
|
6901
6903
|
?reservation_plan_settings: {
|
|
6902
6904
|
commitment: ("ONE_YEAR"),
|
data/sig/types.rbs
CHANGED
|
@@ -577,6 +577,7 @@ module Aws::MediaConvert
|
|
|
577
577
|
class CreateQueueRequest
|
|
578
578
|
attr_accessor concurrent_jobs: ::Integer
|
|
579
579
|
attr_accessor description: ::String
|
|
580
|
+
attr_accessor maximum_concurrent_feeds: ::Integer
|
|
580
581
|
attr_accessor name: ::String
|
|
581
582
|
attr_accessor pricing_plan: ("ON_DEMAND" | "RESERVED")
|
|
582
583
|
attr_accessor reservation_plan_settings: Types::ReservationPlanSettings
|
|
@@ -845,6 +846,18 @@ module Aws::MediaConvert
|
|
|
845
846
|
SENSITIVE: []
|
|
846
847
|
end
|
|
847
848
|
|
|
849
|
+
class ElementalInferenceConfiguration
|
|
850
|
+
attr_accessor features: ::Array[("SMART_CROP")]
|
|
851
|
+
attr_accessor feeds: ::Array[Types::ElementalInferenceFeed]
|
|
852
|
+
SENSITIVE: []
|
|
853
|
+
end
|
|
854
|
+
|
|
855
|
+
class ElementalInferenceFeed
|
|
856
|
+
attr_accessor arn: ::String
|
|
857
|
+
attr_accessor feed_management_state: ("CREATED" | "ASSOCIATED" | "PENDING_DELETION" | "DELETED")
|
|
858
|
+
SENSITIVE: []
|
|
859
|
+
end
|
|
860
|
+
|
|
848
861
|
class EmbeddedDestinationSettings
|
|
849
862
|
attr_accessor destination_608_channel_number: ::Integer
|
|
850
863
|
attr_accessor destination_708_service_number: ::Integer
|
|
@@ -1397,6 +1410,7 @@ module Aws::MediaConvert
|
|
|
1397
1410
|
attr_accessor client_request_token: ::String
|
|
1398
1411
|
attr_accessor created_at: ::Time
|
|
1399
1412
|
attr_accessor current_phase: ("PROBING" | "TRANSCODING" | "UPLOADING")
|
|
1413
|
+
attr_accessor elemental_inference_configuration: Types::ElementalInferenceConfiguration
|
|
1400
1414
|
attr_accessor error_code: ::Integer
|
|
1401
1415
|
attr_accessor error_message: ::String
|
|
1402
1416
|
attr_accessor hop_destinations: ::Array[Types::HopDestination]
|
|
@@ -2075,6 +2089,7 @@ module Aws::MediaConvert
|
|
|
2075
2089
|
attr_accessor created_at: ::Time
|
|
2076
2090
|
attr_accessor description: ::String
|
|
2077
2091
|
attr_accessor last_updated: ::Time
|
|
2092
|
+
attr_accessor maximum_concurrent_feeds: ::Integer
|
|
2078
2093
|
attr_accessor name: ::String
|
|
2079
2094
|
attr_accessor pricing_plan: ("ON_DEMAND" | "RESERVED")
|
|
2080
2095
|
attr_accessor progressing_jobs_count: ::Integer
|
|
@@ -2368,6 +2383,7 @@ module Aws::MediaConvert
|
|
|
2368
2383
|
class UpdateQueueRequest
|
|
2369
2384
|
attr_accessor concurrent_jobs: ::Integer
|
|
2370
2385
|
attr_accessor description: ::String
|
|
2386
|
+
attr_accessor maximum_concurrent_feeds: ::Integer
|
|
2371
2387
|
attr_accessor name: ::String
|
|
2372
2388
|
attr_accessor reservation_plan_settings: Types::ReservationPlanSettings
|
|
2373
2389
|
attr_accessor status: ("ACTIVE" | "PAUSED")
|
|
@@ -2423,7 +2439,7 @@ module Aws::MediaConvert
|
|
|
2423
2439
|
attr_accessor height: ::Integer
|
|
2424
2440
|
attr_accessor position: Types::Rectangle
|
|
2425
2441
|
attr_accessor respond_to_afd: ("NONE" | "RESPOND" | "PASSTHROUGH")
|
|
2426
|
-
attr_accessor scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT" | "FIT" | "FIT_NO_UPSCALE" | "FILL")
|
|
2442
|
+
attr_accessor scaling_behavior: ("DEFAULT" | "STRETCH_TO_OUTPUT" | "FIT" | "FIT_NO_UPSCALE" | "FILL" | "SMART_CROP")
|
|
2427
2443
|
attr_accessor sharpness: ::Integer
|
|
2428
2444
|
attr_accessor timecode_insertion: ("DISABLED" | "PIC_TIMING_SEI")
|
|
2429
2445
|
attr_accessor timecode_track: ("DISABLED" | "ENABLED")
|
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.
|
|
4
|
+
version: 1.184.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.247.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.247.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|