@aws-sdk/client-mediaconvert 3.428.0 → 3.429.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.
@@ -18,7 +18,7 @@ export interface CreateQueueRequest {
18
18
  * @public
19
19
  * 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.
20
20
  */
21
- PricingPlan?: PricingPlan | string;
21
+ PricingPlan?: PricingPlan;
22
22
  /**
23
23
  * @public
24
24
  * Details about the pricing plan for your reserved queue. Required for reserved queues and not applicable to on-demand queues.
@@ -28,7 +28,7 @@ export interface CreateQueueRequest {
28
28
  * @public
29
29
  * Initial state of the queue. If you create a paused queue, then jobs in that queue won't begin.
30
30
  */
31
- Status?: QueueStatus | string;
31
+ Status?: QueueStatus;
32
32
  /**
33
33
  * @public
34
34
  * The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.
@@ -126,7 +126,7 @@ export interface DescribeEndpointsRequest {
126
126
  * @public
127
127
  * 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.
128
128
  */
129
- Mode?: DescribeEndpointsMode | string;
129
+ Mode?: DescribeEndpointsMode;
130
130
  /**
131
131
  * @public
132
132
  * Use this string, provided with the response to a previous request, to request the next batch of endpoints.
@@ -229,17 +229,17 @@ export interface Policy {
229
229
  * @public
230
230
  * Allow or disallow jobs that specify HTTP inputs.
231
231
  */
232
- HttpInputs?: InputPolicy | string;
232
+ HttpInputs?: InputPolicy;
233
233
  /**
234
234
  * @public
235
235
  * Allow or disallow jobs that specify HTTPS inputs.
236
236
  */
237
- HttpsInputs?: InputPolicy | string;
237
+ HttpsInputs?: InputPolicy;
238
238
  /**
239
239
  * @public
240
240
  * Allow or disallow jobs that specify Amazon S3 inputs.
241
241
  */
242
- S3Inputs?: InputPolicy | string;
242
+ S3Inputs?: InputPolicy;
243
243
  }
244
244
  /**
245
245
  * @public
@@ -334,7 +334,7 @@ export interface ListJobsRequest {
334
334
  * @public
335
335
  * Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.
336
336
  */
337
- Order?: Order | string;
337
+ Order?: Order;
338
338
  /**
339
339
  * @public
340
340
  * Optional. Provide a queue name to get back only jobs from that queue.
@@ -344,7 +344,7 @@ export interface ListJobsRequest {
344
344
  * @public
345
345
  * Optional. A job's status can be SUBMITTED, PROGRESSING, COMPLETE, CANCELED, or ERROR.
346
346
  */
347
- Status?: JobStatus | string;
347
+ Status?: JobStatus;
348
348
  }
349
349
  /**
350
350
  * @public
@@ -374,7 +374,7 @@ export interface ListJobTemplatesRequest {
374
374
  * @public
375
375
  * 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.
376
376
  */
377
- ListBy?: JobTemplateListBy | string;
377
+ ListBy?: JobTemplateListBy;
378
378
  /**
379
379
  * @public
380
380
  * Optional. Number of job templates, up to twenty, that will be returned at one time.
@@ -389,7 +389,7 @@ export interface ListJobTemplatesRequest {
389
389
  * @public
390
390
  * Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.
391
391
  */
392
- Order?: Order | string;
392
+ Order?: Order;
393
393
  }
394
394
  /**
395
395
  * @public
@@ -432,7 +432,7 @@ export interface ListPresetsRequest {
432
432
  * @public
433
433
  * 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.
434
434
  */
435
- ListBy?: PresetListBy | string;
435
+ ListBy?: PresetListBy;
436
436
  /**
437
437
  * @public
438
438
  * Optional. Number of presets, up to twenty, that will be returned at one time
@@ -447,7 +447,7 @@ export interface ListPresetsRequest {
447
447
  * @public
448
448
  * Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.
449
449
  */
450
- Order?: Order | string;
450
+ Order?: Order;
451
451
  }
452
452
  /**
453
453
  * @public
@@ -484,7 +484,7 @@ export interface ListQueuesRequest {
484
484
  * @public
485
485
  * 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.
486
486
  */
487
- ListBy?: QueueListBy | string;
487
+ ListBy?: QueueListBy;
488
488
  /**
489
489
  * @public
490
490
  * Optional. Number of queues, up to twenty, that will be returned at one time.
@@ -499,7 +499,7 @@ export interface ListQueuesRequest {
499
499
  * @public
500
500
  * Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.
501
501
  */
502
- Order?: Order | string;
502
+ Order?: Order;
503
503
  }
504
504
  /**
505
505
  * @public
@@ -660,7 +660,7 @@ export interface UpdateJobTemplateRequest {
660
660
  * @public
661
661
  * 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.
662
662
  */
663
- StatusUpdateInterval?: StatusUpdateInterval | string;
663
+ StatusUpdateInterval?: StatusUpdateInterval;
664
664
  }
665
665
  /**
666
666
  * @public
@@ -730,7 +730,7 @@ export interface UpdateQueueRequest {
730
730
  * @public
731
731
  * 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.
732
732
  */
733
- Status?: QueueStatus | string;
733
+ Status?: QueueStatus;
734
734
  }
735
735
  /**
736
736
  * @public