@aws-sdk/client-mediaconvert 3.300.0 → 3.303.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-cjs/models/models_0.js +1160 -1353
- package/dist-cjs/models/models_1.js +1011 -1216
- package/dist-cjs/models/models_2.js +22 -27
- package/dist-es/models/models_0.js +1160 -1353
- package/dist-es/models/models_1.js +1011 -1216
- package/dist-es/models/models_2.js +22 -27
- package/dist-types/commands/AssociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/CancelJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateJobCommand.d.ts +187 -187
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +184 -184
- package/dist-types/commands/CreatePresetCommand.d.ts +94 -94
- package/dist-types/commands/CreateQueueCommand.d.ts +3 -3
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeletePresetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteQueueCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/GetJobCommand.d.ts +1 -1
- package/dist-types/commands/GetJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetPresetCommand.d.ts +1 -1
- package/dist-types/commands/GetQueueCommand.d.ts +1 -1
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +1 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListPresetsCommand.d.ts +1 -1
- package/dist-types/commands/ListQueuesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutPolicyCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +183 -183
- package/dist-types/commands/UpdatePresetCommand.d.ts +93 -93
- package/dist-types/commands/UpdateQueueCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +2131 -1166
- package/dist-types/models/models_1.d.ts +2036 -1011
- package/dist-types/models/models_2.d.ts +47 -22
- package/dist-types/ts3.4/models/models_0.d.ts +1524 -1160
- package/dist-types/ts3.4/models/models_1.d.ts +1381 -1011
- package/dist-types/ts3.4/models/models_2.d.ts +28 -22
- package/package.json +34 -34
|
@@ -34,11 +34,16 @@ export interface GetPolicyRequest {
|
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
36
|
* @public
|
|
37
|
+
* @enum
|
|
37
38
|
*/
|
|
38
|
-
export declare
|
|
39
|
-
ALLOWED
|
|
40
|
-
DISALLOWED
|
|
41
|
-
}
|
|
39
|
+
export declare const InputPolicy: {
|
|
40
|
+
readonly ALLOWED: "ALLOWED";
|
|
41
|
+
readonly DISALLOWED: "DISALLOWED";
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export type InputPolicy = (typeof InputPolicy)[keyof typeof InputPolicy];
|
|
42
47
|
/**
|
|
43
48
|
* @public
|
|
44
49
|
* 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
|
|
@@ -104,19 +109,29 @@ export interface GetQueueResponse {
|
|
|
104
109
|
}
|
|
105
110
|
/**
|
|
106
111
|
* @public
|
|
112
|
+
* @enum
|
|
107
113
|
*/
|
|
108
|
-
export declare
|
|
109
|
-
CREATION_DATE
|
|
110
|
-
NAME
|
|
111
|
-
SYSTEM
|
|
112
|
-
}
|
|
114
|
+
export declare const JobTemplateListBy: {
|
|
115
|
+
readonly CREATION_DATE: "CREATION_DATE";
|
|
116
|
+
readonly NAME: "NAME";
|
|
117
|
+
readonly SYSTEM: "SYSTEM";
|
|
118
|
+
};
|
|
113
119
|
/**
|
|
114
120
|
* @public
|
|
115
121
|
*/
|
|
116
|
-
export
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
122
|
+
export type JobTemplateListBy = (typeof JobTemplateListBy)[keyof typeof JobTemplateListBy];
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
* @enum
|
|
126
|
+
*/
|
|
127
|
+
export declare const Order: {
|
|
128
|
+
readonly ASCENDING: "ASCENDING";
|
|
129
|
+
readonly DESCENDING: "DESCENDING";
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
export type Order = (typeof Order)[keyof typeof Order];
|
|
120
135
|
/**
|
|
121
136
|
* @public
|
|
122
137
|
*/
|
|
@@ -195,12 +210,17 @@ export interface ListJobTemplatesResponse {
|
|
|
195
210
|
}
|
|
196
211
|
/**
|
|
197
212
|
* @public
|
|
213
|
+
* @enum
|
|
198
214
|
*/
|
|
199
|
-
export declare
|
|
200
|
-
CREATION_DATE
|
|
201
|
-
NAME
|
|
202
|
-
SYSTEM
|
|
203
|
-
}
|
|
215
|
+
export declare const PresetListBy: {
|
|
216
|
+
readonly CREATION_DATE: "CREATION_DATE";
|
|
217
|
+
readonly NAME: "NAME";
|
|
218
|
+
readonly SYSTEM: "SYSTEM";
|
|
219
|
+
};
|
|
220
|
+
/**
|
|
221
|
+
* @public
|
|
222
|
+
*/
|
|
223
|
+
export type PresetListBy = (typeof PresetListBy)[keyof typeof PresetListBy];
|
|
204
224
|
/**
|
|
205
225
|
* @public
|
|
206
226
|
*/
|
|
@@ -241,11 +261,16 @@ export interface ListPresetsResponse {
|
|
|
241
261
|
}
|
|
242
262
|
/**
|
|
243
263
|
* @public
|
|
264
|
+
* @enum
|
|
244
265
|
*/
|
|
245
|
-
export declare
|
|
246
|
-
CREATION_DATE
|
|
247
|
-
NAME
|
|
248
|
-
}
|
|
266
|
+
export declare const QueueListBy: {
|
|
267
|
+
readonly CREATION_DATE: "CREATION_DATE";
|
|
268
|
+
readonly NAME: "NAME";
|
|
269
|
+
};
|
|
270
|
+
/**
|
|
271
|
+
* @public
|
|
272
|
+
*/
|
|
273
|
+
export type QueueListBy = (typeof QueueListBy)[keyof typeof QueueListBy];
|
|
249
274
|
/**
|
|
250
275
|
* @public
|
|
251
276
|
*/
|