@aws-sdk/client-mediaconvert 3.130.0 → 3.141.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.
Files changed (71) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/AssociateCertificateCommand.js +2 -2
  4. package/dist-cjs/commands/CancelJobCommand.js +2 -2
  5. package/dist-cjs/commands/CreateJobCommand.js +2 -2
  6. package/dist-cjs/commands/CreateJobTemplateCommand.js +2 -2
  7. package/dist-cjs/commands/CreatePresetCommand.js +2 -2
  8. package/dist-cjs/commands/CreateQueueCommand.js +2 -2
  9. package/dist-cjs/commands/DeleteJobTemplateCommand.js +2 -2
  10. package/dist-cjs/commands/DeletePolicyCommand.js +2 -2
  11. package/dist-cjs/commands/DeletePresetCommand.js +2 -2
  12. package/dist-cjs/commands/DeleteQueueCommand.js +2 -2
  13. package/dist-cjs/commands/DescribeEndpointsCommand.js +2 -2
  14. package/dist-cjs/commands/DisassociateCertificateCommand.js +2 -2
  15. package/dist-cjs/commands/GetJobCommand.js +2 -2
  16. package/dist-cjs/commands/GetJobTemplateCommand.js +2 -2
  17. package/dist-cjs/commands/GetPolicyCommand.js +2 -2
  18. package/dist-cjs/commands/GetPresetCommand.js +2 -2
  19. package/dist-cjs/commands/GetQueueCommand.js +2 -2
  20. package/dist-cjs/commands/ListJobTemplatesCommand.js +2 -2
  21. package/dist-cjs/commands/ListJobsCommand.js +2 -2
  22. package/dist-cjs/commands/ListPresetsCommand.js +2 -2
  23. package/dist-cjs/commands/ListQueuesCommand.js +2 -2
  24. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  25. package/dist-cjs/commands/PutPolicyCommand.js +2 -2
  26. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  27. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  28. package/dist-cjs/commands/UpdateJobTemplateCommand.js +2 -2
  29. package/dist-cjs/commands/UpdatePresetCommand.js +2 -2
  30. package/dist-cjs/commands/UpdateQueueCommand.js +2 -2
  31. package/dist-cjs/models/models_0.js +442 -660
  32. package/dist-cjs/models/models_1.js +390 -582
  33. package/dist-cjs/models/models_2.js +89 -133
  34. package/dist-es/commands/AssociateCertificateCommand.js +3 -3
  35. package/dist-es/commands/CancelJobCommand.js +3 -3
  36. package/dist-es/commands/CreateJobCommand.js +3 -3
  37. package/dist-es/commands/CreateJobTemplateCommand.js +3 -3
  38. package/dist-es/commands/CreatePresetCommand.js +3 -3
  39. package/dist-es/commands/CreateQueueCommand.js +3 -3
  40. package/dist-es/commands/DeleteJobTemplateCommand.js +3 -3
  41. package/dist-es/commands/DeletePolicyCommand.js +3 -3
  42. package/dist-es/commands/DeletePresetCommand.js +3 -3
  43. package/dist-es/commands/DeleteQueueCommand.js +3 -3
  44. package/dist-es/commands/DescribeEndpointsCommand.js +3 -3
  45. package/dist-es/commands/DisassociateCertificateCommand.js +3 -3
  46. package/dist-es/commands/GetJobCommand.js +3 -3
  47. package/dist-es/commands/GetJobTemplateCommand.js +3 -3
  48. package/dist-es/commands/GetPolicyCommand.js +3 -3
  49. package/dist-es/commands/GetPresetCommand.js +3 -3
  50. package/dist-es/commands/GetQueueCommand.js +3 -3
  51. package/dist-es/commands/ListJobTemplatesCommand.js +3 -3
  52. package/dist-es/commands/ListJobsCommand.js +4 -4
  53. package/dist-es/commands/ListPresetsCommand.js +3 -3
  54. package/dist-es/commands/ListQueuesCommand.js +3 -3
  55. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  56. package/dist-es/commands/PutPolicyCommand.js +3 -3
  57. package/dist-es/commands/TagResourceCommand.js +3 -3
  58. package/dist-es/commands/UntagResourceCommand.js +3 -3
  59. package/dist-es/commands/UpdateJobTemplateCommand.js +3 -3
  60. package/dist-es/commands/UpdatePresetCommand.js +3 -3
  61. package/dist-es/commands/UpdateQueueCommand.js +3 -3
  62. package/dist-es/models/models_0.js +109 -436
  63. package/dist-es/models/models_1.js +96 -384
  64. package/dist-es/models/models_2.js +22 -88
  65. package/dist-types/models/models_0.d.ts +436 -654
  66. package/dist-types/models/models_1.d.ts +384 -576
  67. package/dist-types/models/models_2.d.ts +88 -132
  68. package/dist-types/ts3.4/models/models_0.d.ts +218 -436
  69. package/dist-types/ts3.4/models/models_1.d.ts +192 -384
  70. package/dist-types/ts3.4/models/models_2.d.ts +44 -88
  71. package/package.json +7 -7
@@ -10,12 +10,6 @@ export interface ListJobsResponse {
10
10
  */
11
11
  NextToken?: string;
12
12
  }
13
- export declare namespace ListJobsResponse {
14
- /**
15
- * @internal
16
- */
17
- const filterSensitiveLog: (obj: ListJobsResponse) => any;
18
- }
19
13
  export interface ListJobTemplatesRequest {
20
14
  /**
21
15
  * Optionally, specify a job template category to limit responses to only job templates from that category.
@@ -38,12 +32,6 @@ export interface ListJobTemplatesRequest {
38
32
  */
39
33
  Order?: Order | string;
40
34
  }
41
- export declare namespace ListJobTemplatesRequest {
42
- /**
43
- * @internal
44
- */
45
- const filterSensitiveLog: (obj: ListJobTemplatesRequest) => any;
46
- }
47
35
  export interface ListJobTemplatesResponse {
48
36
  /**
49
37
  * List of Job templates.
@@ -54,12 +42,6 @@ export interface ListJobTemplatesResponse {
54
42
  */
55
43
  NextToken?: string;
56
44
  }
57
- export declare namespace ListJobTemplatesResponse {
58
- /**
59
- * @internal
60
- */
61
- const filterSensitiveLog: (obj: ListJobTemplatesResponse) => any;
62
- }
63
45
  export declare enum PresetListBy {
64
46
  CREATION_DATE = "CREATION_DATE",
65
47
  NAME = "NAME",
@@ -87,12 +69,6 @@ export interface ListPresetsRequest {
87
69
  */
88
70
  Order?: Order | string;
89
71
  }
90
- export declare namespace ListPresetsRequest {
91
- /**
92
- * @internal
93
- */
94
- const filterSensitiveLog: (obj: ListPresetsRequest) => any;
95
- }
96
72
  export interface ListPresetsResponse {
97
73
  /**
98
74
  * Use this string to request the next batch of presets.
@@ -103,12 +79,6 @@ export interface ListPresetsResponse {
103
79
  */
104
80
  Presets?: Preset[];
105
81
  }
106
- export declare namespace ListPresetsResponse {
107
- /**
108
- * @internal
109
- */
110
- const filterSensitiveLog: (obj: ListPresetsResponse) => any;
111
- }
112
82
  export declare enum QueueListBy {
113
83
  CREATION_DATE = "CREATION_DATE",
114
84
  NAME = "NAME"
@@ -131,12 +101,6 @@ export interface ListQueuesRequest {
131
101
  */
132
102
  Order?: Order | string;
133
103
  }
134
- export declare namespace ListQueuesRequest {
135
- /**
136
- * @internal
137
- */
138
- const filterSensitiveLog: (obj: ListQueuesRequest) => any;
139
- }
140
104
  export interface ListQueuesResponse {
141
105
  /**
142
106
  * Use this string to request the next batch of queues.
@@ -147,24 +111,12 @@ export interface ListQueuesResponse {
147
111
  */
148
112
  Queues?: Queue[];
149
113
  }
150
- export declare namespace ListQueuesResponse {
151
- /**
152
- * @internal
153
- */
154
- const filterSensitiveLog: (obj: ListQueuesResponse) => any;
155
- }
156
114
  export interface ListTagsForResourceRequest {
157
115
  /**
158
116
  * The Amazon Resource Name (ARN) of the resource that you want to list tags for. To get the ARN, send a GET request with the resource name.
159
117
  */
160
118
  Arn: string | undefined;
161
119
  }
162
- export declare namespace ListTagsForResourceRequest {
163
- /**
164
- * @internal
165
- */
166
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
167
- }
168
120
  /**
169
121
  * The Amazon Resource Name (ARN) and tags for an AWS Elemental MediaConvert resource.
170
122
  */
@@ -178,48 +130,24 @@ export interface ResourceTags {
178
130
  */
179
131
  Tags?: Record<string, string>;
180
132
  }
181
- export declare namespace ResourceTags {
182
- /**
183
- * @internal
184
- */
185
- const filterSensitiveLog: (obj: ResourceTags) => any;
186
- }
187
133
  export interface ListTagsForResourceResponse {
188
134
  /**
189
135
  * The Amazon Resource Name (ARN) and tags for an AWS Elemental MediaConvert resource.
190
136
  */
191
137
  ResourceTags?: ResourceTags;
192
138
  }
193
- export declare namespace ListTagsForResourceResponse {
194
- /**
195
- * @internal
196
- */
197
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
198
- }
199
139
  export interface PutPolicyRequest {
200
140
  /**
201
141
  * 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
202
142
  */
203
143
  Policy: Policy | undefined;
204
144
  }
205
- export declare namespace PutPolicyRequest {
206
- /**
207
- * @internal
208
- */
209
- const filterSensitiveLog: (obj: PutPolicyRequest) => any;
210
- }
211
145
  export interface PutPolicyResponse {
212
146
  /**
213
147
  * 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
214
148
  */
215
149
  Policy?: Policy;
216
150
  }
217
- export declare namespace PutPolicyResponse {
218
- /**
219
- * @internal
220
- */
221
- const filterSensitiveLog: (obj: PutPolicyResponse) => any;
222
- }
223
151
  export interface TagResourceRequest {
224
152
  /**
225
153
  * The Amazon Resource Name (ARN) of the resource that you want to tag. To get the ARN, send a GET request with the resource name.
@@ -230,20 +158,8 @@ export interface TagResourceRequest {
230
158
  */
231
159
  Tags: Record<string, string> | undefined;
232
160
  }
233
- export declare namespace TagResourceRequest {
234
- /**
235
- * @internal
236
- */
237
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
238
- }
239
161
  export interface TagResourceResponse {
240
162
  }
241
- export declare namespace TagResourceResponse {
242
- /**
243
- * @internal
244
- */
245
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
246
- }
247
163
  export interface UntagResourceRequest {
248
164
  /**
249
165
  * The Amazon Resource Name (ARN) of the resource that you want to remove tags from. To get the ARN, send a GET request with the resource name.
@@ -254,20 +170,8 @@ export interface UntagResourceRequest {
254
170
  */
255
171
  TagKeys?: string[];
256
172
  }
257
- export declare namespace UntagResourceRequest {
258
- /**
259
- * @internal
260
- */
261
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
262
- }
263
173
  export interface UntagResourceResponse {
264
174
  }
265
- export declare namespace UntagResourceResponse {
266
- /**
267
- * @internal
268
- */
269
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
270
- }
271
175
  export interface UpdateJobTemplateRequest {
272
176
  /**
273
177
  * 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.
@@ -306,24 +210,12 @@ export interface UpdateJobTemplateRequest {
306
210
  */
307
211
  StatusUpdateInterval?: StatusUpdateInterval | string;
308
212
  }
309
- export declare namespace UpdateJobTemplateRequest {
310
- /**
311
- * @internal
312
- */
313
- const filterSensitiveLog: (obj: UpdateJobTemplateRequest) => any;
314
- }
315
213
  export interface UpdateJobTemplateResponse {
316
214
  /**
317
215
  * A job template is a pre-made set of encoding instructions that you can use to quickly create a job.
318
216
  */
319
217
  JobTemplate?: JobTemplate;
320
218
  }
321
- export declare namespace UpdateJobTemplateResponse {
322
- /**
323
- * @internal
324
- */
325
- const filterSensitiveLog: (obj: UpdateJobTemplateResponse) => any;
326
- }
327
219
  export interface UpdatePresetRequest {
328
220
  /**
329
221
  * The new category for the preset, if you are changing it.
@@ -342,24 +234,12 @@ export interface UpdatePresetRequest {
342
234
  */
343
235
  Settings?: PresetSettings;
344
236
  }
345
- export declare namespace UpdatePresetRequest {
346
- /**
347
- * @internal
348
- */
349
- const filterSensitiveLog: (obj: UpdatePresetRequest) => any;
350
- }
351
237
  export interface UpdatePresetResponse {
352
238
  /**
353
239
  * A preset is a collection of preconfigured media conversion settings that you want MediaConvert to apply to the output during the conversion process.
354
240
  */
355
241
  Preset?: Preset;
356
242
  }
357
- export declare namespace UpdatePresetResponse {
358
- /**
359
- * @internal
360
- */
361
- const filterSensitiveLog: (obj: UpdatePresetResponse) => any;
362
- }
363
243
  export interface UpdateQueueRequest {
364
244
  /**
365
245
  * The new description for the queue, if you are changing it.
@@ -378,21 +258,97 @@ export interface UpdateQueueRequest {
378
258
  */
379
259
  Status?: QueueStatus | string;
380
260
  }
381
- export declare namespace UpdateQueueRequest {
382
- /**
383
- * @internal
384
- */
385
- const filterSensitiveLog: (obj: UpdateQueueRequest) => any;
386
- }
387
261
  export interface UpdateQueueResponse {
388
262
  /**
389
263
  * 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.
390
264
  */
391
265
  Queue?: Queue;
392
266
  }
393
- export declare namespace UpdateQueueResponse {
394
- /**
395
- * @internal
396
- */
397
- const filterSensitiveLog: (obj: UpdateQueueResponse) => any;
398
- }
267
+ /**
268
+ * @internal
269
+ */
270
+ export declare const ListJobsResponseFilterSensitiveLog: (obj: ListJobsResponse) => any;
271
+ /**
272
+ * @internal
273
+ */
274
+ export declare const ListJobTemplatesRequestFilterSensitiveLog: (obj: ListJobTemplatesRequest) => any;
275
+ /**
276
+ * @internal
277
+ */
278
+ export declare const ListJobTemplatesResponseFilterSensitiveLog: (obj: ListJobTemplatesResponse) => any;
279
+ /**
280
+ * @internal
281
+ */
282
+ export declare const ListPresetsRequestFilterSensitiveLog: (obj: ListPresetsRequest) => any;
283
+ /**
284
+ * @internal
285
+ */
286
+ export declare const ListPresetsResponseFilterSensitiveLog: (obj: ListPresetsResponse) => any;
287
+ /**
288
+ * @internal
289
+ */
290
+ export declare const ListQueuesRequestFilterSensitiveLog: (obj: ListQueuesRequest) => any;
291
+ /**
292
+ * @internal
293
+ */
294
+ export declare const ListQueuesResponseFilterSensitiveLog: (obj: ListQueuesResponse) => any;
295
+ /**
296
+ * @internal
297
+ */
298
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
299
+ /**
300
+ * @internal
301
+ */
302
+ export declare const ResourceTagsFilterSensitiveLog: (obj: ResourceTags) => any;
303
+ /**
304
+ * @internal
305
+ */
306
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
307
+ /**
308
+ * @internal
309
+ */
310
+ export declare const PutPolicyRequestFilterSensitiveLog: (obj: PutPolicyRequest) => any;
311
+ /**
312
+ * @internal
313
+ */
314
+ export declare const PutPolicyResponseFilterSensitiveLog: (obj: PutPolicyResponse) => any;
315
+ /**
316
+ * @internal
317
+ */
318
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
319
+ /**
320
+ * @internal
321
+ */
322
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
323
+ /**
324
+ * @internal
325
+ */
326
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
327
+ /**
328
+ * @internal
329
+ */
330
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
331
+ /**
332
+ * @internal
333
+ */
334
+ export declare const UpdateJobTemplateRequestFilterSensitiveLog: (obj: UpdateJobTemplateRequest) => any;
335
+ /**
336
+ * @internal
337
+ */
338
+ export declare const UpdateJobTemplateResponseFilterSensitiveLog: (obj: UpdateJobTemplateResponse) => any;
339
+ /**
340
+ * @internal
341
+ */
342
+ export declare const UpdatePresetRequestFilterSensitiveLog: (obj: UpdatePresetRequest) => any;
343
+ /**
344
+ * @internal
345
+ */
346
+ export declare const UpdatePresetResponseFilterSensitiveLog: (obj: UpdatePresetResponse) => any;
347
+ /**
348
+ * @internal
349
+ */
350
+ export declare const UpdateQueueRequestFilterSensitiveLog: (obj: UpdateQueueRequest) => any;
351
+ /**
352
+ * @internal
353
+ */
354
+ export declare const UpdateQueueResponseFilterSensitiveLog: (obj: UpdateQueueResponse) => any;