@aws-sdk/client-mediaconvert 3.301.0 → 3.306.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.
@@ -34,11 +34,16 @@ export interface GetPolicyRequest {
34
34
  }
35
35
  /**
36
36
  * @public
37
+ * @enum
37
38
  */
38
- export declare enum InputPolicy {
39
- ALLOWED = "ALLOWED",
40
- DISALLOWED = "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 enum JobTemplateListBy {
109
- CREATION_DATE = "CREATION_DATE",
110
- NAME = "NAME",
111
- SYSTEM = "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 declare enum Order {
117
- ASCENDING = "ASCENDING",
118
- DESCENDING = "DESCENDING"
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 enum PresetListBy {
200
- CREATION_DATE = "CREATION_DATE",
201
- NAME = "NAME",
202
- SYSTEM = "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 enum QueueListBy {
246
- CREATION_DATE = "CREATION_DATE",
247
- NAME = "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
  */