Skip to content

Commit c949512

Browse files
author
AWS
committed
AWS Elemental MediaConvert Update: This release adds the ability to reconfigure concurrent job settings for existing queues and create queues with custom concurrent job settings.
1 parent aca39be commit c949512

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Elemental MediaConvert",
4+
"contributor": "",
5+
"description": "This release adds the ability to reconfigure concurrent job settings for existing queues and create queues with custom concurrent job settings."
6+
}

services/mediaconvert/src/main/resources/codegen-resources/service-2.json

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4031,6 +4031,11 @@
40314031
"CreateQueueRequest": {
40324032
"type": "structure",
40334033
"members": {
4034+
"ConcurrentJobs": {
4035+
"shape": "__integer",
4036+
"locationName": "concurrentJobs",
4037+
"documentation": "Specify the maximum number of jobs your queue can process concurrently. For on-demand queues, the value you enter is constrained by your service quotas for Maximum concurrent jobs, per on-demand queue and Maximum concurrent jobs, per account. For reserved queues, specify the number of jobs you can process concurrently in your reservation plan instead."
4038+
},
40344039
"Description": {
40354040
"shape": "__string",
40364041
"locationName": "description",
@@ -8947,6 +8952,16 @@
89478952
"shape": "__listOfQueue",
89488953
"locationName": "queues",
89498954
"documentation": "List of queues."
8955+
},
8956+
"TotalConcurrentJobs": {
8957+
"shape": "__integer",
8958+
"locationName": "totalConcurrentJobs",
8959+
"documentation": "The maximum number of jobs that MediaConvert can process at one time, across all of your on-demand queues in the current AWS Region."
8960+
},
8961+
"UnallocatedConcurrentJobs": {
8962+
"shape": "__integer",
8963+
"locationName": "unallocatedConcurrentJobs",
8964+
"documentation": "The remaining number of concurrent jobs that are not associated with a queue and are available to allocate to a queue. You can allocate these jobs when you create or update a queue."
89508965
}
89518966
}
89528967
},
@@ -11275,6 +11290,11 @@
1127511290
"locationName": "arn",
1127611291
"documentation": "An identifier for this resource that is unique within all of AWS."
1127711292
},
11293+
"ConcurrentJobs": {
11294+
"shape": "__integer",
11295+
"locationName": "concurrentJobs",
11296+
"documentation": "The maximum number of jobs your queue can process concurrently."
11297+
},
1127811298
"CreatedAt": {
1127911299
"shape": "__timestampUnix",
1128011300
"locationName": "createdAt",
@@ -11310,6 +11330,11 @@
1131011330
"locationName": "reservationPlan",
1131111331
"documentation": "Details about the pricing plan for your reserved queue. Required for reserved queues and not applicable to on-demand queues."
1131211332
},
11333+
"ServiceOverrides": {
11334+
"shape": "__listOfServiceOverride",
11335+
"locationName": "serviceOverrides",
11336+
"documentation": "A list of any service overrides applied by MediaConvert to the settings that you have configured. If you see any overrides, we recommend that you contact AWS Support."
11337+
},
1131311338
"Status": {
1131411339
"shape": "QueueStatus",
1131511340
"locationName": "status",
@@ -11728,6 +11753,32 @@
1172811753
}
1172911754
}
1173011755
},
11756+
"ServiceOverride": {
11757+
"type": "structure",
11758+
"members": {
11759+
"Message": {
11760+
"shape": "__string",
11761+
"locationName": "message",
11762+
"documentation": "Details about the service override that MediaConvert has applied."
11763+
},
11764+
"Name": {
11765+
"shape": "__string",
11766+
"locationName": "name",
11767+
"documentation": "The name of the setting that MediaConvert has applied an override to."
11768+
},
11769+
"OverrideValue": {
11770+
"shape": "__string",
11771+
"locationName": "overrideValue",
11772+
"documentation": "The current value of the service override that MediaConvert has applied."
11773+
},
11774+
"Value": {
11775+
"shape": "__string",
11776+
"locationName": "value",
11777+
"documentation": "The value of the setting that you configured, prior to any overrides that MediaConvert has applied."
11778+
}
11779+
},
11780+
"documentation": "A service override applied by MediaConvert to the settings that you have configured. If you see any overrides, we recommend that you contact AWS Support."
11781+
},
1173111782
"SimulateReservedQueue": {
1173211783
"type": "string",
1173311784
"documentation": "Enable this setting when you run a test job to estimate how many reserved transcoding slots (RTS) you need. When this is enabled, MediaConvert runs your job from an on-demand queue with similar performance to what you will see with one RTS in a reserved queue. This setting is disabled by default.",
@@ -12340,6 +12391,11 @@
1234012391
"UpdateQueueRequest": {
1234112392
"type": "structure",
1234212393
"members": {
12394+
"ConcurrentJobs": {
12395+
"shape": "__integer",
12396+
"locationName": "concurrentJobs",
12397+
"documentation": "Specify the maximum number of jobs your queue can process concurrently. For on-demand queues, the value you enter is constrained by your service quotas for Maximum concurrent jobs, per on-demand queue and Maximum concurrent jobs, per account. For reserved queues, update your reservation plan instead in order to increase your yearly commitment."
12398+
},
1234312399
"Description": {
1234412400
"shape": "__string",
1234512401
"locationName": "description",
@@ -14432,6 +14488,12 @@
1443214488
"shape": "QueueTransition"
1443314489
}
1443414490
},
14491+
"__listOfServiceOverride": {
14492+
"type": "list",
14493+
"member": {
14494+
"shape": "ServiceOverride"
14495+
}
14496+
},
1443514497
"__listOfTeletextPageType": {
1443614498
"type": "list",
1443714499
"member": {

0 commit comments

Comments
 (0)