You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-mediaconvert): This release adds the ability to reconfigure concurrent job settings for existing queues and create queues with custom concurrent job settings.
* 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.
70
+
* @public
71
+
*/
72
+
exportinterfaceServiceOverride{
73
+
/**
74
+
* Details about the service override that MediaConvert has applied.
75
+
* @public
76
+
*/
77
+
Message?: string|undefined;
78
+
79
+
/**
80
+
* The name of the setting that MediaConvert has applied an override to.
81
+
* @public
82
+
*/
83
+
Name?: string|undefined;
84
+
85
+
/**
86
+
* The current value of the service override that MediaConvert has applied.
87
+
* @public
88
+
*/
89
+
OverrideValue?: string|undefined;
90
+
91
+
/**
92
+
* The value of the setting that you configured, prior to any overrides that MediaConvert has applied.
93
+
* @public
94
+
*/
95
+
Value?: string|undefined;
96
+
}
97
+
68
98
/**
69
99
* @public
70
100
* @enum
@@ -90,6 +120,12 @@ export interface Queue {
90
120
*/
91
121
Arn?: string|undefined;
92
122
123
+
/**
124
+
* The maximum number of jobs your queue can process concurrently.
125
+
* @public
126
+
*/
127
+
ConcurrentJobs?: number|undefined;
128
+
93
129
/**
94
130
* The timestamp in epoch seconds for when you created the queue.
95
131
* @public
@@ -132,6 +168,12 @@ export interface Queue {
132
168
*/
133
169
ReservationPlan?: ReservationPlan|undefined;
134
170
171
+
/**
172
+
* 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.
173
+
* @public
174
+
*/
175
+
ServiceOverrides?: ServiceOverride[]|undefined;
176
+
135
177
/**
136
178
* Queues can be ACTIVE or PAUSED. If you pause a queue, the service won't begin processing jobs in that queue. Jobs that are running when you pause the queue continue to run until they finish or result in an error.
* 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.
612
+
* @public
613
+
*/
614
+
ConcurrentJobs?: number|undefined;
615
+
568
616
/**
569
617
* Optional. A description of the queue that you are creating.
* The maximum number of jobs that MediaConvert can process at one time, across all of your on-demand queues in the current AWS Region.
1197
+
* @public
1198
+
*/
1199
+
TotalConcurrentJobs?: number|undefined;
1200
+
1201
+
/**
1202
+
* 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.
* 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.
1522
+
* @public
1523
+
*/
1524
+
ConcurrentJobs?: number|undefined;
1525
+
1460
1526
/**
1461
1527
* The new description for the queue, if you are changing it.
0 commit comments