@aws-sdk/client-mediaconvert 3.686.0 → 3.691.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.
- package/dist-types/models/models_0.d.ts +623 -623
- package/dist-types/models/models_1.d.ts +573 -573
- package/dist-types/models/models_2.d.ts +128 -128
- package/dist-types/ts3.4/models/models_0.d.ts +644 -622
- package/dist-types/ts3.4/models/models_1.d.ts +579 -571
- package/dist-types/ts3.4/models/models_2.d.ts +128 -128
- package/package.json +7 -7
|
@@ -11,32 +11,32 @@ export interface ReservationPlan {
|
|
|
11
11
|
* The length of the term of your reserved queue pricing plan commitment.
|
|
12
12
|
* @public
|
|
13
13
|
*/
|
|
14
|
-
Commitment?: Commitment;
|
|
14
|
+
Commitment?: Commitment | undefined;
|
|
15
15
|
/**
|
|
16
16
|
* The timestamp in epoch seconds for when the current pricing plan term for this reserved queue expires.
|
|
17
17
|
* @public
|
|
18
18
|
*/
|
|
19
|
-
ExpiresAt?: Date;
|
|
19
|
+
ExpiresAt?: Date | undefined;
|
|
20
20
|
/**
|
|
21
21
|
* The timestamp in epoch seconds for when you set up the current pricing plan for this reserved queue.
|
|
22
22
|
* @public
|
|
23
23
|
*/
|
|
24
|
-
PurchasedAt?: Date;
|
|
24
|
+
PurchasedAt?: Date | undefined;
|
|
25
25
|
/**
|
|
26
26
|
* Specifies whether the term of your reserved queue pricing plan is automatically extended (AUTO_RENEW) or expires (EXPIRE) at the end of the term.
|
|
27
27
|
* @public
|
|
28
28
|
*/
|
|
29
|
-
RenewalType?: RenewalType;
|
|
29
|
+
RenewalType?: RenewalType | undefined;
|
|
30
30
|
/**
|
|
31
31
|
* Specifies the number of reserved transcode slots (RTS) for this queue. The number of RTS determines how many jobs the queue can process in parallel; each RTS can process one job at a time. When you increase this number, you extend your existing commitment with a new 12-month commitment for a larger number of RTS. The new commitment begins when you purchase the additional capacity. You can't decrease the number of RTS in your reserved queue.
|
|
32
32
|
* @public
|
|
33
33
|
*/
|
|
34
|
-
ReservedSlots?: number;
|
|
34
|
+
ReservedSlots?: number | undefined;
|
|
35
35
|
/**
|
|
36
36
|
* Specifies whether the pricing plan for your reserved queue is ACTIVE or EXPIRED.
|
|
37
37
|
* @public
|
|
38
38
|
*/
|
|
39
|
-
Status?: ReservationPlanStatus;
|
|
39
|
+
Status?: ReservationPlanStatus | undefined;
|
|
40
40
|
}
|
|
41
41
|
/**
|
|
42
42
|
* @public
|
|
@@ -59,22 +59,22 @@ export interface Queue {
|
|
|
59
59
|
* An identifier for this resource that is unique within all of AWS.
|
|
60
60
|
* @public
|
|
61
61
|
*/
|
|
62
|
-
Arn?: string;
|
|
62
|
+
Arn?: string | undefined;
|
|
63
63
|
/**
|
|
64
64
|
* The timestamp in epoch seconds for when you created the queue.
|
|
65
65
|
* @public
|
|
66
66
|
*/
|
|
67
|
-
CreatedAt?: Date;
|
|
67
|
+
CreatedAt?: Date | undefined;
|
|
68
68
|
/**
|
|
69
69
|
* An optional description that you create for each queue.
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
|
-
Description?: string;
|
|
72
|
+
Description?: string | undefined;
|
|
73
73
|
/**
|
|
74
74
|
* The timestamp in epoch seconds for when you most recently updated the queue.
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
|
-
LastUpdated?: Date;
|
|
77
|
+
LastUpdated?: Date | undefined;
|
|
78
78
|
/**
|
|
79
79
|
* A name that you create for each queue. Each name must be unique within your account.
|
|
80
80
|
* @public
|
|
@@ -84,32 +84,32 @@ export interface Queue {
|
|
|
84
84
|
* Specifies whether the pricing plan for the queue is on-demand or reserved. For on-demand, you pay per minute, billed in increments of .01 minute. For reserved, you pay for the transcoding capacity of the entire queue, regardless of how much or how little you use it. Reserved pricing requires a 12-month commitment.
|
|
85
85
|
* @public
|
|
86
86
|
*/
|
|
87
|
-
PricingPlan?: PricingPlan;
|
|
87
|
+
PricingPlan?: PricingPlan | undefined;
|
|
88
88
|
/**
|
|
89
89
|
* The estimated number of jobs with a PROGRESSING status.
|
|
90
90
|
* @public
|
|
91
91
|
*/
|
|
92
|
-
ProgressingJobsCount?: number;
|
|
92
|
+
ProgressingJobsCount?: number | undefined;
|
|
93
93
|
/**
|
|
94
94
|
* Details about the pricing plan for your reserved queue. Required for reserved queues and not applicable to on-demand queues.
|
|
95
95
|
* @public
|
|
96
96
|
*/
|
|
97
|
-
ReservationPlan?: ReservationPlan;
|
|
97
|
+
ReservationPlan?: ReservationPlan | undefined;
|
|
98
98
|
/**
|
|
99
99
|
* 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.
|
|
100
100
|
* @public
|
|
101
101
|
*/
|
|
102
|
-
Status?: QueueStatus;
|
|
102
|
+
Status?: QueueStatus | undefined;
|
|
103
103
|
/**
|
|
104
104
|
* The estimated number of jobs with a SUBMITTED status.
|
|
105
105
|
* @public
|
|
106
106
|
*/
|
|
107
|
-
SubmittedJobsCount?: number;
|
|
107
|
+
SubmittedJobsCount?: number | undefined;
|
|
108
108
|
/**
|
|
109
109
|
* Specifies whether this on-demand queue is system or custom. System queues are built in. You can't modify or delete system queues. You can create and modify custom queues.
|
|
110
110
|
* @public
|
|
111
111
|
*/
|
|
112
|
-
Type?: Type;
|
|
112
|
+
Type?: Type | undefined;
|
|
113
113
|
}
|
|
114
114
|
/**
|
|
115
115
|
* @public
|
|
@@ -133,7 +133,7 @@ export interface AssociateCertificateResponse {
|
|
|
133
133
|
export declare class BadRequestException extends __BaseException {
|
|
134
134
|
readonly name: "BadRequestException";
|
|
135
135
|
readonly $fault: "client";
|
|
136
|
-
Message?: string;
|
|
136
|
+
Message?: string | undefined;
|
|
137
137
|
/**
|
|
138
138
|
* @internal
|
|
139
139
|
*/
|
|
@@ -146,7 +146,7 @@ export declare class BadRequestException extends __BaseException {
|
|
|
146
146
|
export declare class ConflictException extends __BaseException {
|
|
147
147
|
readonly name: "ConflictException";
|
|
148
148
|
readonly $fault: "client";
|
|
149
|
-
Message?: string;
|
|
149
|
+
Message?: string | undefined;
|
|
150
150
|
/**
|
|
151
151
|
* @internal
|
|
152
152
|
*/
|
|
@@ -159,7 +159,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
159
159
|
export declare class ForbiddenException extends __BaseException {
|
|
160
160
|
readonly name: "ForbiddenException";
|
|
161
161
|
readonly $fault: "client";
|
|
162
|
-
Message?: string;
|
|
162
|
+
Message?: string | undefined;
|
|
163
163
|
/**
|
|
164
164
|
* @internal
|
|
165
165
|
*/
|
|
@@ -172,7 +172,7 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
172
172
|
export declare class InternalServerErrorException extends __BaseException {
|
|
173
173
|
readonly name: "InternalServerErrorException";
|
|
174
174
|
readonly $fault: "server";
|
|
175
|
-
Message?: string;
|
|
175
|
+
Message?: string | undefined;
|
|
176
176
|
/**
|
|
177
177
|
* @internal
|
|
178
178
|
*/
|
|
@@ -185,7 +185,7 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
185
185
|
export declare class NotFoundException extends __BaseException {
|
|
186
186
|
readonly name: "NotFoundException";
|
|
187
187
|
readonly $fault: "client";
|
|
188
|
-
Message?: string;
|
|
188
|
+
Message?: string | undefined;
|
|
189
189
|
/**
|
|
190
190
|
* @internal
|
|
191
191
|
*/
|
|
@@ -198,7 +198,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
198
198
|
export declare class TooManyRequestsException extends __BaseException {
|
|
199
199
|
readonly name: "TooManyRequestsException";
|
|
200
200
|
readonly $fault: "client";
|
|
201
|
-
Message?: string;
|
|
201
|
+
Message?: string | undefined;
|
|
202
202
|
/**
|
|
203
203
|
* @internal
|
|
204
204
|
*/
|
|
@@ -227,42 +227,42 @@ export interface CreateJobRequest {
|
|
|
227
227
|
* Optional. Accelerated transcoding can significantly speed up jobs with long, visually complex content. Outputs that use this feature incur pro-tier pricing. For information about feature limitations, see the AWS Elemental MediaConvert User Guide.
|
|
228
228
|
* @public
|
|
229
229
|
*/
|
|
230
|
-
AccelerationSettings?: AccelerationSettings;
|
|
230
|
+
AccelerationSettings?: AccelerationSettings | undefined;
|
|
231
231
|
/**
|
|
232
232
|
* Optional. Choose a tag type that AWS Billing and Cost Management will use to sort your AWS Elemental MediaConvert costs on any billing report that you set up. Any transcoding outputs that don't have an associated tag will appear in your billing report unsorted. If you don't choose a valid value for this field, your job outputs will appear on the billing report unsorted.
|
|
233
233
|
* @public
|
|
234
234
|
*/
|
|
235
|
-
BillingTagsSource?: BillingTagsSource;
|
|
235
|
+
BillingTagsSource?: BillingTagsSource | undefined;
|
|
236
236
|
/**
|
|
237
237
|
* Prevent duplicate jobs from being created and ensure idempotency for your requests. A client request token can be any string that includes up to 64 ASCII characters. If you reuse a client request token within one minute of a successful request, the API returns the job details of the original request instead. For more information see https://docs.aws.amazon.com/mediaconvert/latest/apireference/idempotency.html.
|
|
238
238
|
* @public
|
|
239
239
|
*/
|
|
240
|
-
ClientRequestToken?: string;
|
|
240
|
+
ClientRequestToken?: string | undefined;
|
|
241
241
|
/**
|
|
242
242
|
* Optional. Use queue hopping to avoid overly long waits in the backlog of the queue that you submit your job to. Specify an alternate queue and the maximum time that your job will wait in the initial queue before hopping. For more information about this feature, see the AWS Elemental MediaConvert User Guide.
|
|
243
243
|
* @public
|
|
244
244
|
*/
|
|
245
|
-
HopDestinations?: HopDestination[];
|
|
245
|
+
HopDestinations?: HopDestination[] | undefined;
|
|
246
246
|
/**
|
|
247
247
|
* Use Job engine versions to run jobs for your production workflow on one version, while you test and validate the latest version. To specify a Job engine version: Enter a date in a YYYY-MM-DD format. For a list of valid Job engine versions, submit a ListVersions request. To not specify a Job engine version: Leave blank.
|
|
248
248
|
* @public
|
|
249
249
|
*/
|
|
250
|
-
JobEngineVersion?: string;
|
|
250
|
+
JobEngineVersion?: string | undefined;
|
|
251
251
|
/**
|
|
252
252
|
* Optional. When you create a job, you can either specify a job template or specify the transcoding settings individually.
|
|
253
253
|
* @public
|
|
254
254
|
*/
|
|
255
|
-
JobTemplate?: string;
|
|
255
|
+
JobTemplate?: string | undefined;
|
|
256
256
|
/**
|
|
257
257
|
* Optional. Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0.
|
|
258
258
|
* @public
|
|
259
259
|
*/
|
|
260
|
-
Priority?: number;
|
|
260
|
+
Priority?: number | undefined;
|
|
261
261
|
/**
|
|
262
262
|
* Optional. When you create a job, you can specify a queue to send it to. If you don't specify, the job will go to the default queue. For more about queues, see the User Guide topic at https://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html.
|
|
263
263
|
* @public
|
|
264
264
|
*/
|
|
265
|
-
Queue?: string;
|
|
265
|
+
Queue?: string | undefined;
|
|
266
266
|
/**
|
|
267
267
|
* Required. The IAM role you use for creating this job. For details about permissions, see the User Guide topic at the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/iam-role.html.
|
|
268
268
|
* @public
|
|
@@ -277,22 +277,22 @@ export interface CreateJobRequest {
|
|
|
277
277
|
* Optional. 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.
|
|
278
278
|
* @public
|
|
279
279
|
*/
|
|
280
|
-
SimulateReservedQueue?: SimulateReservedQueue;
|
|
280
|
+
SimulateReservedQueue?: SimulateReservedQueue | undefined;
|
|
281
281
|
/**
|
|
282
282
|
* Optional. Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error.
|
|
283
283
|
* @public
|
|
284
284
|
*/
|
|
285
|
-
StatusUpdateInterval?: StatusUpdateInterval;
|
|
285
|
+
StatusUpdateInterval?: StatusUpdateInterval | undefined;
|
|
286
286
|
/**
|
|
287
287
|
* Optional. The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key. Use standard AWS tags on your job for automatic integration with AWS services and for custom integrations and workflows.
|
|
288
288
|
* @public
|
|
289
289
|
*/
|
|
290
|
-
Tags?: Record<string, string
|
|
290
|
+
Tags?: Record<string, string> | undefined;
|
|
291
291
|
/**
|
|
292
292
|
* Optional. User-defined metadata that you want to associate with an MediaConvert job. You specify metadata in key/value pairs. Use only for existing integrations or workflows that rely on job metadata tags. Otherwise, we recommend that you use standard AWS tags.
|
|
293
293
|
* @public
|
|
294
294
|
*/
|
|
295
|
-
UserMetadata?: Record<string, string
|
|
295
|
+
UserMetadata?: Record<string, string> | undefined;
|
|
296
296
|
}
|
|
297
297
|
/**
|
|
298
298
|
* @public
|
|
@@ -302,7 +302,7 @@ export interface CreateJobResponse {
|
|
|
302
302
|
* Each job converts an input file into an output file or files. For more information, see the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
303
303
|
* @public
|
|
304
304
|
*/
|
|
305
|
-
Job?: Job;
|
|
305
|
+
Job?: Job | undefined;
|
|
306
306
|
}
|
|
307
307
|
/**
|
|
308
308
|
* @public
|
|
@@ -312,22 +312,22 @@ export interface CreateJobTemplateRequest {
|
|
|
312
312
|
* Accelerated transcoding can significantly speed up jobs with long, visually complex content. Outputs that use this feature incur pro-tier pricing. For information about feature limitations, see the AWS Elemental MediaConvert User Guide.
|
|
313
313
|
* @public
|
|
314
314
|
*/
|
|
315
|
-
AccelerationSettings?: AccelerationSettings;
|
|
315
|
+
AccelerationSettings?: AccelerationSettings | undefined;
|
|
316
316
|
/**
|
|
317
317
|
* Optional. A category for the job template you are creating
|
|
318
318
|
* @public
|
|
319
319
|
*/
|
|
320
|
-
Category?: string;
|
|
320
|
+
Category?: string | undefined;
|
|
321
321
|
/**
|
|
322
322
|
* Optional. A description of the job template you are creating.
|
|
323
323
|
* @public
|
|
324
324
|
*/
|
|
325
|
-
Description?: string;
|
|
325
|
+
Description?: string | undefined;
|
|
326
326
|
/**
|
|
327
327
|
* Optional. Use queue hopping to avoid overly long waits in the backlog of the queue that you submit your job to. Specify an alternate queue and the maximum time that your job will wait in the initial queue before hopping. For more information about this feature, see the AWS Elemental MediaConvert User Guide.
|
|
328
328
|
* @public
|
|
329
329
|
*/
|
|
330
|
-
HopDestinations?: HopDestination[];
|
|
330
|
+
HopDestinations?: HopDestination[] | undefined;
|
|
331
331
|
/**
|
|
332
332
|
* The name of the job template you are creating.
|
|
333
333
|
* @public
|
|
@@ -337,12 +337,12 @@ export interface CreateJobTemplateRequest {
|
|
|
337
337
|
* Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0.
|
|
338
338
|
* @public
|
|
339
339
|
*/
|
|
340
|
-
Priority?: number;
|
|
340
|
+
Priority?: number | undefined;
|
|
341
341
|
/**
|
|
342
342
|
* Optional. The queue that jobs created from this template are assigned to. If you don't specify this, jobs will go to the default queue.
|
|
343
343
|
* @public
|
|
344
344
|
*/
|
|
345
|
-
Queue?: string;
|
|
345
|
+
Queue?: string | undefined;
|
|
346
346
|
/**
|
|
347
347
|
* JobTemplateSettings contains all the transcode settings saved in the template that will be applied to jobs created from it.
|
|
348
348
|
* @public
|
|
@@ -352,12 +352,12 @@ export interface CreateJobTemplateRequest {
|
|
|
352
352
|
* Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error.
|
|
353
353
|
* @public
|
|
354
354
|
*/
|
|
355
|
-
StatusUpdateInterval?: StatusUpdateInterval;
|
|
355
|
+
StatusUpdateInterval?: StatusUpdateInterval | undefined;
|
|
356
356
|
/**
|
|
357
357
|
* The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.
|
|
358
358
|
* @public
|
|
359
359
|
*/
|
|
360
|
-
Tags?: Record<string, string
|
|
360
|
+
Tags?: Record<string, string> | undefined;
|
|
361
361
|
}
|
|
362
362
|
/**
|
|
363
363
|
* @public
|
|
@@ -367,7 +367,7 @@ export interface CreateJobTemplateResponse {
|
|
|
367
367
|
* A job template is a pre-made set of encoding instructions that you can use to quickly create a job.
|
|
368
368
|
* @public
|
|
369
369
|
*/
|
|
370
|
-
JobTemplate?: JobTemplate;
|
|
370
|
+
JobTemplate?: JobTemplate | undefined;
|
|
371
371
|
}
|
|
372
372
|
/**
|
|
373
373
|
* @public
|
|
@@ -377,12 +377,12 @@ export interface CreatePresetRequest {
|
|
|
377
377
|
* Optional. A category for the preset you are creating.
|
|
378
378
|
* @public
|
|
379
379
|
*/
|
|
380
|
-
Category?: string;
|
|
380
|
+
Category?: string | undefined;
|
|
381
381
|
/**
|
|
382
382
|
* Optional. A description of the preset you are creating.
|
|
383
383
|
* @public
|
|
384
384
|
*/
|
|
385
|
-
Description?: string;
|
|
385
|
+
Description?: string | undefined;
|
|
386
386
|
/**
|
|
387
387
|
* The name of the preset you are creating.
|
|
388
388
|
* @public
|
|
@@ -397,7 +397,7 @@ export interface CreatePresetRequest {
|
|
|
397
397
|
* The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.
|
|
398
398
|
* @public
|
|
399
399
|
*/
|
|
400
|
-
Tags?: Record<string, string
|
|
400
|
+
Tags?: Record<string, string> | undefined;
|
|
401
401
|
}
|
|
402
402
|
/**
|
|
403
403
|
* @public
|
|
@@ -407,7 +407,7 @@ export interface CreatePresetResponse {
|
|
|
407
407
|
* A preset is a collection of preconfigured media conversion settings that you want MediaConvert to apply to the output during the conversion process.
|
|
408
408
|
* @public
|
|
409
409
|
*/
|
|
410
|
-
Preset?: Preset;
|
|
410
|
+
Preset?: Preset | undefined;
|
|
411
411
|
}
|
|
412
412
|
/**
|
|
413
413
|
* Details about the pricing plan for your reserved queue. Required for reserved queues and not applicable to on-demand queues.
|
|
@@ -438,7 +438,7 @@ export interface CreateQueueRequest {
|
|
|
438
438
|
* Optional. A description of the queue that you are creating.
|
|
439
439
|
* @public
|
|
440
440
|
*/
|
|
441
|
-
Description?: string;
|
|
441
|
+
Description?: string | undefined;
|
|
442
442
|
/**
|
|
443
443
|
* The name of the queue that you are creating.
|
|
444
444
|
* @public
|
|
@@ -448,22 +448,22 @@ export interface CreateQueueRequest {
|
|
|
448
448
|
* Specifies whether the pricing plan for the queue is on-demand or reserved. For on-demand, you pay per minute, billed in increments of .01 minute. For reserved, you pay for the transcoding capacity of the entire queue, regardless of how much or how little you use it. Reserved pricing requires a 12-month commitment. When you use the API to create a queue, the default is on-demand.
|
|
449
449
|
* @public
|
|
450
450
|
*/
|
|
451
|
-
PricingPlan?: PricingPlan;
|
|
451
|
+
PricingPlan?: PricingPlan | undefined;
|
|
452
452
|
/**
|
|
453
453
|
* Details about the pricing plan for your reserved queue. Required for reserved queues and not applicable to on-demand queues.
|
|
454
454
|
* @public
|
|
455
455
|
*/
|
|
456
|
-
ReservationPlanSettings?: ReservationPlanSettings;
|
|
456
|
+
ReservationPlanSettings?: ReservationPlanSettings | undefined;
|
|
457
457
|
/**
|
|
458
458
|
* Initial state of the queue. If you create a paused queue, then jobs in that queue won't begin.
|
|
459
459
|
* @public
|
|
460
460
|
*/
|
|
461
|
-
Status?: QueueStatus;
|
|
461
|
+
Status?: QueueStatus | undefined;
|
|
462
462
|
/**
|
|
463
463
|
* The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.
|
|
464
464
|
* @public
|
|
465
465
|
*/
|
|
466
|
-
Tags?: Record<string, string
|
|
466
|
+
Tags?: Record<string, string> | undefined;
|
|
467
467
|
}
|
|
468
468
|
/**
|
|
469
469
|
* @public
|
|
@@ -473,7 +473,7 @@ export interface CreateQueueResponse {
|
|
|
473
473
|
* You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.
|
|
474
474
|
* @public
|
|
475
475
|
*/
|
|
476
|
-
Queue?: Queue;
|
|
476
|
+
Queue?: Queue | undefined;
|
|
477
477
|
}
|
|
478
478
|
/**
|
|
479
479
|
* @public
|
|
@@ -550,19 +550,19 @@ export interface DescribeEndpointsRequest {
|
|
|
550
550
|
* Optional. Max number of endpoints, up to twenty, that will be returned at one time.
|
|
551
551
|
* @public
|
|
552
552
|
*/
|
|
553
|
-
MaxResults?: number;
|
|
553
|
+
MaxResults?: number | undefined;
|
|
554
554
|
/**
|
|
555
555
|
* @deprecated
|
|
556
556
|
*
|
|
557
557
|
* Optional field, defaults to DEFAULT. Specify DEFAULT for this operation to return your endpoints if any exist, or to create an endpoint for you and return it if one doesn't already exist. Specify GET_ONLY to return your endpoints if any exist, or an empty list if none exist.
|
|
558
558
|
* @public
|
|
559
559
|
*/
|
|
560
|
-
Mode?: DescribeEndpointsMode;
|
|
560
|
+
Mode?: DescribeEndpointsMode | undefined;
|
|
561
561
|
/**
|
|
562
562
|
* Use this string, provided with the response to a previous request, to request the next batch of endpoints.
|
|
563
563
|
* @public
|
|
564
564
|
*/
|
|
565
|
-
NextToken?: string;
|
|
565
|
+
NextToken?: string | undefined;
|
|
566
566
|
}
|
|
567
567
|
/**
|
|
568
568
|
* @public
|
|
@@ -572,12 +572,12 @@ export interface DescribeEndpointsResponse {
|
|
|
572
572
|
* List of endpoints
|
|
573
573
|
* @public
|
|
574
574
|
*/
|
|
575
|
-
Endpoints?: Endpoint[];
|
|
575
|
+
Endpoints?: Endpoint[] | undefined;
|
|
576
576
|
/**
|
|
577
577
|
* Use this string to request the next batch of endpoints.
|
|
578
578
|
* @public
|
|
579
579
|
*/
|
|
580
|
-
NextToken?: string;
|
|
580
|
+
NextToken?: string | undefined;
|
|
581
581
|
}
|
|
582
582
|
/**
|
|
583
583
|
* @public
|
|
@@ -612,7 +612,7 @@ export interface GetJobResponse {
|
|
|
612
612
|
* Each job converts an input file into an output file or files. For more information, see the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
613
613
|
* @public
|
|
614
614
|
*/
|
|
615
|
-
Job?: Job;
|
|
615
|
+
Job?: Job | undefined;
|
|
616
616
|
}
|
|
617
617
|
/**
|
|
618
618
|
* @public
|
|
@@ -632,7 +632,7 @@ export interface GetJobTemplateResponse {
|
|
|
632
632
|
* A job template is a pre-made set of encoding instructions that you can use to quickly create a job.
|
|
633
633
|
* @public
|
|
634
634
|
*/
|
|
635
|
-
JobTemplate?: JobTemplate;
|
|
635
|
+
JobTemplate?: JobTemplate | undefined;
|
|
636
636
|
}
|
|
637
637
|
/**
|
|
638
638
|
* @public
|
|
@@ -660,17 +660,17 @@ export interface Policy {
|
|
|
660
660
|
* Allow or disallow jobs that specify HTTP inputs.
|
|
661
661
|
* @public
|
|
662
662
|
*/
|
|
663
|
-
HttpInputs?: InputPolicy;
|
|
663
|
+
HttpInputs?: InputPolicy | undefined;
|
|
664
664
|
/**
|
|
665
665
|
* Allow or disallow jobs that specify HTTPS inputs.
|
|
666
666
|
* @public
|
|
667
667
|
*/
|
|
668
|
-
HttpsInputs?: InputPolicy;
|
|
668
|
+
HttpsInputs?: InputPolicy | undefined;
|
|
669
669
|
/**
|
|
670
670
|
* Allow or disallow jobs that specify Amazon S3 inputs.
|
|
671
671
|
* @public
|
|
672
672
|
*/
|
|
673
|
-
S3Inputs?: InputPolicy;
|
|
673
|
+
S3Inputs?: InputPolicy | undefined;
|
|
674
674
|
}
|
|
675
675
|
/**
|
|
676
676
|
* @public
|
|
@@ -680,7 +680,7 @@ export interface GetPolicyResponse {
|
|
|
680
680
|
* A policy configures behavior that you allow or disallow for your account. For information about MediaConvert policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
681
681
|
* @public
|
|
682
682
|
*/
|
|
683
|
-
Policy?: Policy;
|
|
683
|
+
Policy?: Policy | undefined;
|
|
684
684
|
}
|
|
685
685
|
/**
|
|
686
686
|
* @public
|
|
@@ -700,7 +700,7 @@ export interface GetPresetResponse {
|
|
|
700
700
|
* A preset is a collection of preconfigured media conversion settings that you want MediaConvert to apply to the output during the conversion process.
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
Preset?: Preset;
|
|
703
|
+
Preset?: Preset | undefined;
|
|
704
704
|
}
|
|
705
705
|
/**
|
|
706
706
|
* @public
|
|
@@ -720,7 +720,7 @@ export interface GetQueueResponse {
|
|
|
720
720
|
* You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.
|
|
721
721
|
* @public
|
|
722
722
|
*/
|
|
723
|
-
Queue?: Queue;
|
|
723
|
+
Queue?: Queue | undefined;
|
|
724
724
|
}
|
|
725
725
|
/**
|
|
726
726
|
* @public
|
|
@@ -755,27 +755,27 @@ export interface ListJobsRequest {
|
|
|
755
755
|
* Optional. Number of jobs, up to twenty, that will be returned at one time.
|
|
756
756
|
* @public
|
|
757
757
|
*/
|
|
758
|
-
MaxResults?: number;
|
|
758
|
+
MaxResults?: number | undefined;
|
|
759
759
|
/**
|
|
760
760
|
* Optional. Use this string, provided with the response to a previous request, to request the next batch of jobs.
|
|
761
761
|
* @public
|
|
762
762
|
*/
|
|
763
|
-
NextToken?: string;
|
|
763
|
+
NextToken?: string | undefined;
|
|
764
764
|
/**
|
|
765
765
|
* Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.
|
|
766
766
|
* @public
|
|
767
767
|
*/
|
|
768
|
-
Order?: Order;
|
|
768
|
+
Order?: Order | undefined;
|
|
769
769
|
/**
|
|
770
770
|
* Optional. Provide a queue name to get back only jobs from that queue.
|
|
771
771
|
* @public
|
|
772
772
|
*/
|
|
773
|
-
Queue?: string;
|
|
773
|
+
Queue?: string | undefined;
|
|
774
774
|
/**
|
|
775
775
|
* Optional. A job's status can be SUBMITTED, PROGRESSING, COMPLETE, CANCELED, or ERROR.
|
|
776
776
|
* @public
|
|
777
777
|
*/
|
|
778
|
-
Status?: JobStatus;
|
|
778
|
+
Status?: JobStatus | undefined;
|
|
779
779
|
}
|
|
780
780
|
/**
|
|
781
781
|
* @public
|
|
@@ -785,12 +785,12 @@ export interface ListJobsResponse {
|
|
|
785
785
|
* List of jobs
|
|
786
786
|
* @public
|
|
787
787
|
*/
|
|
788
|
-
Jobs?: Job[];
|
|
788
|
+
Jobs?: Job[] | undefined;
|
|
789
789
|
/**
|
|
790
790
|
* Use this string to request the next batch of jobs.
|
|
791
791
|
* @public
|
|
792
792
|
*/
|
|
793
|
-
NextToken?: string;
|
|
793
|
+
NextToken?: string | undefined;
|
|
794
794
|
}
|
|
795
795
|
/**
|
|
796
796
|
* @public
|
|
@@ -800,27 +800,27 @@ export interface ListJobTemplatesRequest {
|
|
|
800
800
|
* Optionally, specify a job template category to limit responses to only job templates from that category.
|
|
801
801
|
* @public
|
|
802
802
|
*/
|
|
803
|
-
Category?: string;
|
|
803
|
+
Category?: string | undefined;
|
|
804
804
|
/**
|
|
805
805
|
* Optional. When you request a list of job templates, you can choose to list them alphabetically by NAME or chronologically by CREATION_DATE. If you don't specify, the service will list them by name.
|
|
806
806
|
* @public
|
|
807
807
|
*/
|
|
808
|
-
ListBy?: JobTemplateListBy;
|
|
808
|
+
ListBy?: JobTemplateListBy | undefined;
|
|
809
809
|
/**
|
|
810
810
|
* Optional. Number of job templates, up to twenty, that will be returned at one time.
|
|
811
811
|
* @public
|
|
812
812
|
*/
|
|
813
|
-
MaxResults?: number;
|
|
813
|
+
MaxResults?: number | undefined;
|
|
814
814
|
/**
|
|
815
815
|
* Use this string, provided with the response to a previous request, to request the next batch of job templates.
|
|
816
816
|
* @public
|
|
817
817
|
*/
|
|
818
|
-
NextToken?: string;
|
|
818
|
+
NextToken?: string | undefined;
|
|
819
819
|
/**
|
|
820
820
|
* Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.
|
|
821
821
|
* @public
|
|
822
822
|
*/
|
|
823
|
-
Order?: Order;
|
|
823
|
+
Order?: Order | undefined;
|
|
824
824
|
}
|
|
825
825
|
/**
|
|
826
826
|
* @public
|
|
@@ -830,12 +830,12 @@ export interface ListJobTemplatesResponse {
|
|
|
830
830
|
* List of Job templates.
|
|
831
831
|
* @public
|
|
832
832
|
*/
|
|
833
|
-
JobTemplates?: JobTemplate[];
|
|
833
|
+
JobTemplates?: JobTemplate[] | undefined;
|
|
834
834
|
/**
|
|
835
835
|
* Use this string to request the next batch of job templates.
|
|
836
836
|
* @public
|
|
837
837
|
*/
|
|
838
|
-
NextToken?: string;
|
|
838
|
+
NextToken?: string | undefined;
|
|
839
839
|
}
|
|
840
840
|
/**
|
|
841
841
|
* @public
|
|
@@ -858,27 +858,27 @@ export interface ListPresetsRequest {
|
|
|
858
858
|
* Optionally, specify a preset category to limit responses to only presets from that category.
|
|
859
859
|
* @public
|
|
860
860
|
*/
|
|
861
|
-
Category?: string;
|
|
861
|
+
Category?: string | undefined;
|
|
862
862
|
/**
|
|
863
863
|
* Optional. When you request a list of presets, you can choose to list them alphabetically by NAME or chronologically by CREATION_DATE. If you don't specify, the service will list them by name.
|
|
864
864
|
* @public
|
|
865
865
|
*/
|
|
866
|
-
ListBy?: PresetListBy;
|
|
866
|
+
ListBy?: PresetListBy | undefined;
|
|
867
867
|
/**
|
|
868
868
|
* Optional. Number of presets, up to twenty, that will be returned at one time
|
|
869
869
|
* @public
|
|
870
870
|
*/
|
|
871
|
-
MaxResults?: number;
|
|
871
|
+
MaxResults?: number | undefined;
|
|
872
872
|
/**
|
|
873
873
|
* Use this string, provided with the response to a previous request, to request the next batch of presets.
|
|
874
874
|
* @public
|
|
875
875
|
*/
|
|
876
|
-
NextToken?: string;
|
|
876
|
+
NextToken?: string | undefined;
|
|
877
877
|
/**
|
|
878
878
|
* Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.
|
|
879
879
|
* @public
|
|
880
880
|
*/
|
|
881
|
-
Order?: Order;
|
|
881
|
+
Order?: Order | undefined;
|
|
882
882
|
}
|
|
883
883
|
/**
|
|
884
884
|
* @public
|
|
@@ -888,12 +888,12 @@ export interface ListPresetsResponse {
|
|
|
888
888
|
* Use this string to request the next batch of presets.
|
|
889
889
|
* @public
|
|
890
890
|
*/
|
|
891
|
-
NextToken?: string;
|
|
891
|
+
NextToken?: string | undefined;
|
|
892
892
|
/**
|
|
893
893
|
* List of presets
|
|
894
894
|
* @public
|
|
895
895
|
*/
|
|
896
|
-
Presets?: Preset[];
|
|
896
|
+
Presets?: Preset[] | undefined;
|
|
897
897
|
}
|
|
898
898
|
/**
|
|
899
899
|
* @public
|
|
@@ -915,22 +915,22 @@ export interface ListQueuesRequest {
|
|
|
915
915
|
* Optional. When you request a list of queues, you can choose to list them alphabetically by NAME or chronologically by CREATION_DATE. If you don't specify, the service will list them by creation date.
|
|
916
916
|
* @public
|
|
917
917
|
*/
|
|
918
|
-
ListBy?: QueueListBy;
|
|
918
|
+
ListBy?: QueueListBy | undefined;
|
|
919
919
|
/**
|
|
920
920
|
* Optional. Number of queues, up to twenty, that will be returned at one time.
|
|
921
921
|
* @public
|
|
922
922
|
*/
|
|
923
|
-
MaxResults?: number;
|
|
923
|
+
MaxResults?: number | undefined;
|
|
924
924
|
/**
|
|
925
925
|
* Use this string, provided with the response to a previous request, to request the next batch of queues.
|
|
926
926
|
* @public
|
|
927
927
|
*/
|
|
928
|
-
NextToken?: string;
|
|
928
|
+
NextToken?: string | undefined;
|
|
929
929
|
/**
|
|
930
930
|
* Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.
|
|
931
931
|
* @public
|
|
932
932
|
*/
|
|
933
|
-
Order?: Order;
|
|
933
|
+
Order?: Order | undefined;
|
|
934
934
|
}
|
|
935
935
|
/**
|
|
936
936
|
* @public
|
|
@@ -940,12 +940,12 @@ export interface ListQueuesResponse {
|
|
|
940
940
|
* Use this string to request the next batch of queues.
|
|
941
941
|
* @public
|
|
942
942
|
*/
|
|
943
|
-
NextToken?: string;
|
|
943
|
+
NextToken?: string | undefined;
|
|
944
944
|
/**
|
|
945
945
|
* List of queues.
|
|
946
946
|
* @public
|
|
947
947
|
*/
|
|
948
|
-
Queues?: Queue[];
|
|
948
|
+
Queues?: Queue[] | undefined;
|
|
949
949
|
}
|
|
950
950
|
/**
|
|
951
951
|
* @public
|
|
@@ -966,12 +966,12 @@ export interface ResourceTags {
|
|
|
966
966
|
* The Amazon Resource Name (ARN) of the resource.
|
|
967
967
|
* @public
|
|
968
968
|
*/
|
|
969
|
-
Arn?: string;
|
|
969
|
+
Arn?: string | undefined;
|
|
970
970
|
/**
|
|
971
971
|
* The tags for the resource.
|
|
972
972
|
* @public
|
|
973
973
|
*/
|
|
974
|
-
Tags?: Record<string, string
|
|
974
|
+
Tags?: Record<string, string> | undefined;
|
|
975
975
|
}
|
|
976
976
|
/**
|
|
977
977
|
* @public
|
|
@@ -981,7 +981,7 @@ export interface ListTagsForResourceResponse {
|
|
|
981
981
|
* The Amazon Resource Name (ARN) and tags for an AWS Elemental MediaConvert resource.
|
|
982
982
|
* @public
|
|
983
983
|
*/
|
|
984
|
-
ResourceTags?: ResourceTags;
|
|
984
|
+
ResourceTags?: ResourceTags | undefined;
|
|
985
985
|
}
|
|
986
986
|
/**
|
|
987
987
|
* @public
|
|
@@ -991,12 +991,12 @@ export interface ListVersionsRequest {
|
|
|
991
991
|
* Optional. Number of valid Job engine versions, up to twenty, that will be returned at one time.
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
MaxResults?: number;
|
|
994
|
+
MaxResults?: number | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* Optional. Use this string, provided with the response to a previous request, to request the next batch of Job engine versions.
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
NextToken?: string;
|
|
999
|
+
NextToken?: string | undefined;
|
|
1000
1000
|
}
|
|
1001
1001
|
/**
|
|
1002
1002
|
* @public
|
|
@@ -1006,12 +1006,12 @@ export interface ListVersionsResponse {
|
|
|
1006
1006
|
* Optional. Use this string, provided with the response to a previous request, to request the next batch of Job engine versions.
|
|
1007
1007
|
* @public
|
|
1008
1008
|
*/
|
|
1009
|
-
NextToken?: string;
|
|
1009
|
+
NextToken?: string | undefined;
|
|
1010
1010
|
/**
|
|
1011
1011
|
* Retrieve a JSON array of all available Job engine versions and the date they expire.
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
Versions?: JobEngineVersion[];
|
|
1014
|
+
Versions?: JobEngineVersion[] | undefined;
|
|
1015
1015
|
}
|
|
1016
1016
|
/**
|
|
1017
1017
|
* @public
|
|
@@ -1031,7 +1031,7 @@ export interface PutPolicyResponse {
|
|
|
1031
1031
|
* A policy configures behavior that you allow or disallow for your account. For information about MediaConvert policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
|
1032
1032
|
* @public
|
|
1033
1033
|
*/
|
|
1034
|
-
Policy?: Policy;
|
|
1034
|
+
Policy?: Policy | undefined;
|
|
1035
1035
|
}
|
|
1036
1036
|
/**
|
|
1037
1037
|
* @public
|
|
@@ -1041,32 +1041,32 @@ export interface SearchJobsRequest {
|
|
|
1041
1041
|
* Optional. Provide your input file URL or your partial input file name. The maximum length for an input file is 300 characters.
|
|
1042
1042
|
* @public
|
|
1043
1043
|
*/
|
|
1044
|
-
InputFile?: string;
|
|
1044
|
+
InputFile?: string | undefined;
|
|
1045
1045
|
/**
|
|
1046
1046
|
* Optional. Number of jobs, up to twenty, that will be returned at one time.
|
|
1047
1047
|
* @public
|
|
1048
1048
|
*/
|
|
1049
|
-
MaxResults?: number;
|
|
1049
|
+
MaxResults?: number | undefined;
|
|
1050
1050
|
/**
|
|
1051
1051
|
* Optional. Use this string, provided with the response to a previous request, to request the next batch of jobs.
|
|
1052
1052
|
* @public
|
|
1053
1053
|
*/
|
|
1054
|
-
NextToken?: string;
|
|
1054
|
+
NextToken?: string | undefined;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
Order?: Order;
|
|
1059
|
+
Order?: Order | undefined;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* Optional. Provide a queue name, or a queue ARN, to return only jobs from that queue.
|
|
1062
1062
|
* @public
|
|
1063
1063
|
*/
|
|
1064
|
-
Queue?: string;
|
|
1064
|
+
Queue?: string | undefined;
|
|
1065
1065
|
/**
|
|
1066
1066
|
* Optional. A job's status can be SUBMITTED, PROGRESSING, COMPLETE, CANCELED, or ERROR.
|
|
1067
1067
|
* @public
|
|
1068
1068
|
*/
|
|
1069
|
-
Status?: JobStatus;
|
|
1069
|
+
Status?: JobStatus | undefined;
|
|
1070
1070
|
}
|
|
1071
1071
|
/**
|
|
1072
1072
|
* @public
|
|
@@ -1076,12 +1076,12 @@ export interface SearchJobsResponse {
|
|
|
1076
1076
|
* List of jobs.
|
|
1077
1077
|
* @public
|
|
1078
1078
|
*/
|
|
1079
|
-
Jobs?: Job[];
|
|
1079
|
+
Jobs?: Job[] | undefined;
|
|
1080
1080
|
/**
|
|
1081
1081
|
* Use this string to request the next batch of jobs.
|
|
1082
1082
|
* @public
|
|
1083
1083
|
*/
|
|
1084
|
-
NextToken?: string;
|
|
1084
|
+
NextToken?: string | undefined;
|
|
1085
1085
|
}
|
|
1086
1086
|
/**
|
|
1087
1087
|
* @public
|
|
@@ -1116,7 +1116,7 @@ export interface UntagResourceRequest {
|
|
|
1116
1116
|
* The keys of the tags that you want to remove from the resource.
|
|
1117
1117
|
* @public
|
|
1118
1118
|
*/
|
|
1119
|
-
TagKeys?: string[];
|
|
1119
|
+
TagKeys?: string[] | undefined;
|
|
1120
1120
|
}
|
|
1121
1121
|
/**
|
|
1122
1122
|
* @public
|
|
@@ -1131,22 +1131,22 @@ export interface UpdateJobTemplateRequest {
|
|
|
1131
1131
|
* Accelerated transcoding can significantly speed up jobs with long, visually complex content. Outputs that use this feature incur pro-tier pricing. For information about feature limitations, see the AWS Elemental MediaConvert User Guide.
|
|
1132
1132
|
* @public
|
|
1133
1133
|
*/
|
|
1134
|
-
AccelerationSettings?: AccelerationSettings;
|
|
1134
|
+
AccelerationSettings?: AccelerationSettings | undefined;
|
|
1135
1135
|
/**
|
|
1136
1136
|
* The new category for the job template, if you are changing it.
|
|
1137
1137
|
* @public
|
|
1138
1138
|
*/
|
|
1139
|
-
Category?: string;
|
|
1139
|
+
Category?: string | undefined;
|
|
1140
1140
|
/**
|
|
1141
1141
|
* The new description for the job template, if you are changing it.
|
|
1142
1142
|
* @public
|
|
1143
1143
|
*/
|
|
1144
|
-
Description?: string;
|
|
1144
|
+
Description?: string | undefined;
|
|
1145
1145
|
/**
|
|
1146
1146
|
* Optional list of hop destinations.
|
|
1147
1147
|
* @public
|
|
1148
1148
|
*/
|
|
1149
|
-
HopDestinations?: HopDestination[];
|
|
1149
|
+
HopDestinations?: HopDestination[] | undefined;
|
|
1150
1150
|
/**
|
|
1151
1151
|
* The name of the job template you are modifying
|
|
1152
1152
|
* @public
|
|
@@ -1156,22 +1156,22 @@ export interface UpdateJobTemplateRequest {
|
|
|
1156
1156
|
* Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0.
|
|
1157
1157
|
* @public
|
|
1158
1158
|
*/
|
|
1159
|
-
Priority?: number;
|
|
1159
|
+
Priority?: number | undefined;
|
|
1160
1160
|
/**
|
|
1161
1161
|
* The new queue for the job template, if you are changing it.
|
|
1162
1162
|
* @public
|
|
1163
1163
|
*/
|
|
1164
|
-
Queue?: string;
|
|
1164
|
+
Queue?: string | undefined;
|
|
1165
1165
|
/**
|
|
1166
1166
|
* JobTemplateSettings contains all the transcode settings saved in the template that will be applied to jobs created from it.
|
|
1167
1167
|
* @public
|
|
1168
1168
|
*/
|
|
1169
|
-
Settings?: JobTemplateSettings;
|
|
1169
|
+
Settings?: JobTemplateSettings | undefined;
|
|
1170
1170
|
/**
|
|
1171
1171
|
* Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error.
|
|
1172
1172
|
* @public
|
|
1173
1173
|
*/
|
|
1174
|
-
StatusUpdateInterval?: StatusUpdateInterval;
|
|
1174
|
+
StatusUpdateInterval?: StatusUpdateInterval | undefined;
|
|
1175
1175
|
}
|
|
1176
1176
|
/**
|
|
1177
1177
|
* @public
|
|
@@ -1181,7 +1181,7 @@ export interface UpdateJobTemplateResponse {
|
|
|
1181
1181
|
* A job template is a pre-made set of encoding instructions that you can use to quickly create a job.
|
|
1182
1182
|
* @public
|
|
1183
1183
|
*/
|
|
1184
|
-
JobTemplate?: JobTemplate;
|
|
1184
|
+
JobTemplate?: JobTemplate | undefined;
|
|
1185
1185
|
}
|
|
1186
1186
|
/**
|
|
1187
1187
|
* @public
|
|
@@ -1191,12 +1191,12 @@ export interface UpdatePresetRequest {
|
|
|
1191
1191
|
* The new category for the preset, if you are changing it.
|
|
1192
1192
|
* @public
|
|
1193
1193
|
*/
|
|
1194
|
-
Category?: string;
|
|
1194
|
+
Category?: string | undefined;
|
|
1195
1195
|
/**
|
|
1196
1196
|
* The new description for the preset, if you are changing it.
|
|
1197
1197
|
* @public
|
|
1198
1198
|
*/
|
|
1199
|
-
Description?: string;
|
|
1199
|
+
Description?: string | undefined;
|
|
1200
1200
|
/**
|
|
1201
1201
|
* The name of the preset you are modifying.
|
|
1202
1202
|
* @public
|
|
@@ -1206,7 +1206,7 @@ export interface UpdatePresetRequest {
|
|
|
1206
1206
|
* Settings for preset
|
|
1207
1207
|
* @public
|
|
1208
1208
|
*/
|
|
1209
|
-
Settings?: PresetSettings;
|
|
1209
|
+
Settings?: PresetSettings | undefined;
|
|
1210
1210
|
}
|
|
1211
1211
|
/**
|
|
1212
1212
|
* @public
|
|
@@ -1216,7 +1216,7 @@ export interface UpdatePresetResponse {
|
|
|
1216
1216
|
* A preset is a collection of preconfigured media conversion settings that you want MediaConvert to apply to the output during the conversion process.
|
|
1217
1217
|
* @public
|
|
1218
1218
|
*/
|
|
1219
|
-
Preset?: Preset;
|
|
1219
|
+
Preset?: Preset | undefined;
|
|
1220
1220
|
}
|
|
1221
1221
|
/**
|
|
1222
1222
|
* @public
|
|
@@ -1226,7 +1226,7 @@ export interface UpdateQueueRequest {
|
|
|
1226
1226
|
* The new description for the queue, if you are changing it.
|
|
1227
1227
|
* @public
|
|
1228
1228
|
*/
|
|
1229
|
-
Description?: string;
|
|
1229
|
+
Description?: string | undefined;
|
|
1230
1230
|
/**
|
|
1231
1231
|
* The name of the queue that you are modifying.
|
|
1232
1232
|
* @public
|
|
@@ -1236,12 +1236,12 @@ export interface UpdateQueueRequest {
|
|
|
1236
1236
|
* The new details of your pricing plan for your reserved queue. When you set up a new pricing plan to replace an expired one, you enter into another 12-month commitment. When you add capacity to your queue by increasing the number of RTS, you extend the term of your commitment to 12 months from when you add capacity. After you make these commitments, you can't cancel them.
|
|
1237
1237
|
* @public
|
|
1238
1238
|
*/
|
|
1239
|
-
ReservationPlanSettings?: ReservationPlanSettings;
|
|
1239
|
+
ReservationPlanSettings?: ReservationPlanSettings | undefined;
|
|
1240
1240
|
/**
|
|
1241
1241
|
* Pause or activate a queue by changing its status between ACTIVE and PAUSED. If you pause a queue, jobs in that queue won't begin. Jobs that are running when you pause the queue continue to run until they finish or result in an error.
|
|
1242
1242
|
* @public
|
|
1243
1243
|
*/
|
|
1244
|
-
Status?: QueueStatus;
|
|
1244
|
+
Status?: QueueStatus | undefined;
|
|
1245
1245
|
}
|
|
1246
1246
|
/**
|
|
1247
1247
|
* @public
|
|
@@ -1251,5 +1251,5 @@ export interface UpdateQueueResponse {
|
|
|
1251
1251
|
* You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.
|
|
1252
1252
|
* @public
|
|
1253
1253
|
*/
|
|
1254
|
-
Queue?: Queue;
|
|
1254
|
+
Queue?: Queue | undefined;
|
|
1255
1255
|
}
|