@aws-sdk/client-mediaconvert 3.687.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
|
@@ -24,12 +24,12 @@ import {
|
|
|
24
24
|
Type,
|
|
25
25
|
} from "./models_1";
|
|
26
26
|
export interface ReservationPlan {
|
|
27
|
-
Commitment?: Commitment;
|
|
28
|
-
ExpiresAt?: Date;
|
|
29
|
-
PurchasedAt?: Date;
|
|
30
|
-
RenewalType?: RenewalType;
|
|
31
|
-
ReservedSlots?: number;
|
|
32
|
-
Status?: ReservationPlanStatus;
|
|
27
|
+
Commitment?: Commitment | undefined;
|
|
28
|
+
ExpiresAt?: Date | undefined;
|
|
29
|
+
PurchasedAt?: Date | undefined;
|
|
30
|
+
RenewalType?: RenewalType | undefined;
|
|
31
|
+
ReservedSlots?: number | undefined;
|
|
32
|
+
Status?: ReservationPlanStatus | undefined;
|
|
33
33
|
}
|
|
34
34
|
export declare const QueueStatus: {
|
|
35
35
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -37,17 +37,17 @@ export declare const QueueStatus: {
|
|
|
37
37
|
};
|
|
38
38
|
export type QueueStatus = (typeof QueueStatus)[keyof typeof QueueStatus];
|
|
39
39
|
export interface Queue {
|
|
40
|
-
Arn?: string;
|
|
41
|
-
CreatedAt?: Date;
|
|
42
|
-
Description?: string;
|
|
43
|
-
LastUpdated?: Date;
|
|
40
|
+
Arn?: string | undefined;
|
|
41
|
+
CreatedAt?: Date | undefined;
|
|
42
|
+
Description?: string | undefined;
|
|
43
|
+
LastUpdated?: Date | undefined;
|
|
44
44
|
Name: string | undefined;
|
|
45
|
-
PricingPlan?: PricingPlan;
|
|
46
|
-
ProgressingJobsCount?: number;
|
|
47
|
-
ReservationPlan?: ReservationPlan;
|
|
48
|
-
Status?: QueueStatus;
|
|
49
|
-
SubmittedJobsCount?: number;
|
|
50
|
-
Type?: Type;
|
|
45
|
+
PricingPlan?: PricingPlan | undefined;
|
|
46
|
+
ProgressingJobsCount?: number | undefined;
|
|
47
|
+
ReservationPlan?: ReservationPlan | undefined;
|
|
48
|
+
Status?: QueueStatus | undefined;
|
|
49
|
+
SubmittedJobsCount?: number | undefined;
|
|
50
|
+
Type?: Type | undefined;
|
|
51
51
|
}
|
|
52
52
|
export interface AssociateCertificateRequest {
|
|
53
53
|
Arn: string | undefined;
|
|
@@ -56,7 +56,7 @@ export interface AssociateCertificateResponse {}
|
|
|
56
56
|
export declare class BadRequestException extends __BaseException {
|
|
57
57
|
readonly name: "BadRequestException";
|
|
58
58
|
readonly $fault: "client";
|
|
59
|
-
Message?: string;
|
|
59
|
+
Message?: string | undefined;
|
|
60
60
|
constructor(
|
|
61
61
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
62
62
|
);
|
|
@@ -64,19 +64,19 @@ export declare class BadRequestException extends __BaseException {
|
|
|
64
64
|
export declare class ConflictException extends __BaseException {
|
|
65
65
|
readonly name: "ConflictException";
|
|
66
66
|
readonly $fault: "client";
|
|
67
|
-
Message?: string;
|
|
67
|
+
Message?: string | undefined;
|
|
68
68
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
69
69
|
}
|
|
70
70
|
export declare class ForbiddenException extends __BaseException {
|
|
71
71
|
readonly name: "ForbiddenException";
|
|
72
72
|
readonly $fault: "client";
|
|
73
|
-
Message?: string;
|
|
73
|
+
Message?: string | undefined;
|
|
74
74
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
75
75
|
}
|
|
76
76
|
export declare class InternalServerErrorException extends __BaseException {
|
|
77
77
|
readonly name: "InternalServerErrorException";
|
|
78
78
|
readonly $fault: "server";
|
|
79
|
-
Message?: string;
|
|
79
|
+
Message?: string | undefined;
|
|
80
80
|
constructor(
|
|
81
81
|
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
82
82
|
);
|
|
@@ -84,13 +84,13 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
84
84
|
export declare class NotFoundException extends __BaseException {
|
|
85
85
|
readonly name: "NotFoundException";
|
|
86
86
|
readonly $fault: "client";
|
|
87
|
-
Message?: string;
|
|
87
|
+
Message?: string | undefined;
|
|
88
88
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
89
89
|
}
|
|
90
90
|
export declare class TooManyRequestsException extends __BaseException {
|
|
91
91
|
readonly name: "TooManyRequestsException";
|
|
92
92
|
readonly $fault: "client";
|
|
93
|
-
Message?: string;
|
|
93
|
+
Message?: string | undefined;
|
|
94
94
|
constructor(
|
|
95
95
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
96
96
|
);
|
|
@@ -100,48 +100,48 @@ export interface CancelJobRequest {
|
|
|
100
100
|
}
|
|
101
101
|
export interface CancelJobResponse {}
|
|
102
102
|
export interface CreateJobRequest {
|
|
103
|
-
AccelerationSettings?: AccelerationSettings;
|
|
104
|
-
BillingTagsSource?: BillingTagsSource;
|
|
105
|
-
ClientRequestToken?: string;
|
|
106
|
-
HopDestinations?: HopDestination[];
|
|
107
|
-
JobEngineVersion?: string;
|
|
108
|
-
JobTemplate?: string;
|
|
109
|
-
Priority?: number;
|
|
110
|
-
Queue?: string;
|
|
103
|
+
AccelerationSettings?: AccelerationSettings | undefined;
|
|
104
|
+
BillingTagsSource?: BillingTagsSource | undefined;
|
|
105
|
+
ClientRequestToken?: string | undefined;
|
|
106
|
+
HopDestinations?: HopDestination[] | undefined;
|
|
107
|
+
JobEngineVersion?: string | undefined;
|
|
108
|
+
JobTemplate?: string | undefined;
|
|
109
|
+
Priority?: number | undefined;
|
|
110
|
+
Queue?: string | undefined;
|
|
111
111
|
Role: string | undefined;
|
|
112
112
|
Settings: JobSettings | undefined;
|
|
113
|
-
SimulateReservedQueue?: SimulateReservedQueue;
|
|
114
|
-
StatusUpdateInterval?: StatusUpdateInterval;
|
|
115
|
-
Tags?: Record<string, string
|
|
116
|
-
UserMetadata?: Record<string, string
|
|
113
|
+
SimulateReservedQueue?: SimulateReservedQueue | undefined;
|
|
114
|
+
StatusUpdateInterval?: StatusUpdateInterval | undefined;
|
|
115
|
+
Tags?: Record<string, string> | undefined;
|
|
116
|
+
UserMetadata?: Record<string, string> | undefined;
|
|
117
117
|
}
|
|
118
118
|
export interface CreateJobResponse {
|
|
119
|
-
Job?: Job;
|
|
119
|
+
Job?: Job | undefined;
|
|
120
120
|
}
|
|
121
121
|
export interface CreateJobTemplateRequest {
|
|
122
|
-
AccelerationSettings?: AccelerationSettings;
|
|
123
|
-
Category?: string;
|
|
124
|
-
Description?: string;
|
|
125
|
-
HopDestinations?: HopDestination[];
|
|
122
|
+
AccelerationSettings?: AccelerationSettings | undefined;
|
|
123
|
+
Category?: string | undefined;
|
|
124
|
+
Description?: string | undefined;
|
|
125
|
+
HopDestinations?: HopDestination[] | undefined;
|
|
126
126
|
Name: string | undefined;
|
|
127
|
-
Priority?: number;
|
|
128
|
-
Queue?: string;
|
|
127
|
+
Priority?: number | undefined;
|
|
128
|
+
Queue?: string | undefined;
|
|
129
129
|
Settings: JobTemplateSettings | undefined;
|
|
130
|
-
StatusUpdateInterval?: StatusUpdateInterval;
|
|
131
|
-
Tags?: Record<string, string
|
|
130
|
+
StatusUpdateInterval?: StatusUpdateInterval | undefined;
|
|
131
|
+
Tags?: Record<string, string> | undefined;
|
|
132
132
|
}
|
|
133
133
|
export interface CreateJobTemplateResponse {
|
|
134
|
-
JobTemplate?: JobTemplate;
|
|
134
|
+
JobTemplate?: JobTemplate | undefined;
|
|
135
135
|
}
|
|
136
136
|
export interface CreatePresetRequest {
|
|
137
|
-
Category?: string;
|
|
138
|
-
Description?: string;
|
|
137
|
+
Category?: string | undefined;
|
|
138
|
+
Description?: string | undefined;
|
|
139
139
|
Name: string | undefined;
|
|
140
140
|
Settings: PresetSettings | undefined;
|
|
141
|
-
Tags?: Record<string, string
|
|
141
|
+
Tags?: Record<string, string> | undefined;
|
|
142
142
|
}
|
|
143
143
|
export interface CreatePresetResponse {
|
|
144
|
-
Preset?: Preset;
|
|
144
|
+
Preset?: Preset | undefined;
|
|
145
145
|
}
|
|
146
146
|
export interface ReservationPlanSettings {
|
|
147
147
|
Commitment: Commitment | undefined;
|
|
@@ -149,15 +149,15 @@ export interface ReservationPlanSettings {
|
|
|
149
149
|
ReservedSlots: number | undefined;
|
|
150
150
|
}
|
|
151
151
|
export interface CreateQueueRequest {
|
|
152
|
-
Description?: string;
|
|
152
|
+
Description?: string | undefined;
|
|
153
153
|
Name: string | undefined;
|
|
154
|
-
PricingPlan?: PricingPlan;
|
|
155
|
-
ReservationPlanSettings?: ReservationPlanSettings;
|
|
156
|
-
Status?: QueueStatus;
|
|
157
|
-
Tags?: Record<string, string
|
|
154
|
+
PricingPlan?: PricingPlan | undefined;
|
|
155
|
+
ReservationPlanSettings?: ReservationPlanSettings | undefined;
|
|
156
|
+
Status?: QueueStatus | undefined;
|
|
157
|
+
Tags?: Record<string, string> | undefined;
|
|
158
158
|
}
|
|
159
159
|
export interface CreateQueueResponse {
|
|
160
|
-
Queue?: Queue;
|
|
160
|
+
Queue?: Queue | undefined;
|
|
161
161
|
}
|
|
162
162
|
export interface DeleteJobTemplateRequest {
|
|
163
163
|
Name: string | undefined;
|
|
@@ -180,13 +180,13 @@ export declare const DescribeEndpointsMode: {
|
|
|
180
180
|
export type DescribeEndpointsMode =
|
|
181
181
|
(typeof DescribeEndpointsMode)[keyof typeof DescribeEndpointsMode];
|
|
182
182
|
export interface DescribeEndpointsRequest {
|
|
183
|
-
MaxResults?: number;
|
|
184
|
-
Mode?: DescribeEndpointsMode;
|
|
185
|
-
NextToken?: string;
|
|
183
|
+
MaxResults?: number | undefined;
|
|
184
|
+
Mode?: DescribeEndpointsMode | undefined;
|
|
185
|
+
NextToken?: string | undefined;
|
|
186
186
|
}
|
|
187
187
|
export interface DescribeEndpointsResponse {
|
|
188
|
-
Endpoints?: Endpoint[];
|
|
189
|
-
NextToken?: string;
|
|
188
|
+
Endpoints?: Endpoint[] | undefined;
|
|
189
|
+
NextToken?: string | undefined;
|
|
190
190
|
}
|
|
191
191
|
export interface DisassociateCertificateRequest {
|
|
192
192
|
Arn: string | undefined;
|
|
@@ -196,13 +196,13 @@ export interface GetJobRequest {
|
|
|
196
196
|
Id: string | undefined;
|
|
197
197
|
}
|
|
198
198
|
export interface GetJobResponse {
|
|
199
|
-
Job?: Job;
|
|
199
|
+
Job?: Job | undefined;
|
|
200
200
|
}
|
|
201
201
|
export interface GetJobTemplateRequest {
|
|
202
202
|
Name: string | undefined;
|
|
203
203
|
}
|
|
204
204
|
export interface GetJobTemplateResponse {
|
|
205
|
-
JobTemplate?: JobTemplate;
|
|
205
|
+
JobTemplate?: JobTemplate | undefined;
|
|
206
206
|
}
|
|
207
207
|
export interface GetPolicyRequest {}
|
|
208
208
|
export declare const InputPolicy: {
|
|
@@ -211,24 +211,24 @@ export declare const InputPolicy: {
|
|
|
211
211
|
};
|
|
212
212
|
export type InputPolicy = (typeof InputPolicy)[keyof typeof InputPolicy];
|
|
213
213
|
export interface Policy {
|
|
214
|
-
HttpInputs?: InputPolicy;
|
|
215
|
-
HttpsInputs?: InputPolicy;
|
|
216
|
-
S3Inputs?: InputPolicy;
|
|
214
|
+
HttpInputs?: InputPolicy | undefined;
|
|
215
|
+
HttpsInputs?: InputPolicy | undefined;
|
|
216
|
+
S3Inputs?: InputPolicy | undefined;
|
|
217
217
|
}
|
|
218
218
|
export interface GetPolicyResponse {
|
|
219
|
-
Policy?: Policy;
|
|
219
|
+
Policy?: Policy | undefined;
|
|
220
220
|
}
|
|
221
221
|
export interface GetPresetRequest {
|
|
222
222
|
Name: string | undefined;
|
|
223
223
|
}
|
|
224
224
|
export interface GetPresetResponse {
|
|
225
|
-
Preset?: Preset;
|
|
225
|
+
Preset?: Preset | undefined;
|
|
226
226
|
}
|
|
227
227
|
export interface GetQueueRequest {
|
|
228
228
|
Name: string | undefined;
|
|
229
229
|
}
|
|
230
230
|
export interface GetQueueResponse {
|
|
231
|
-
Queue?: Queue;
|
|
231
|
+
Queue?: Queue | undefined;
|
|
232
232
|
}
|
|
233
233
|
export declare const JobTemplateListBy: {
|
|
234
234
|
readonly CREATION_DATE: "CREATION_DATE";
|
|
@@ -243,26 +243,26 @@ export declare const Order: {
|
|
|
243
243
|
};
|
|
244
244
|
export type Order = (typeof Order)[keyof typeof Order];
|
|
245
245
|
export interface ListJobsRequest {
|
|
246
|
-
MaxResults?: number;
|
|
247
|
-
NextToken?: string;
|
|
248
|
-
Order?: Order;
|
|
249
|
-
Queue?: string;
|
|
250
|
-
Status?: JobStatus;
|
|
246
|
+
MaxResults?: number | undefined;
|
|
247
|
+
NextToken?: string | undefined;
|
|
248
|
+
Order?: Order | undefined;
|
|
249
|
+
Queue?: string | undefined;
|
|
250
|
+
Status?: JobStatus | undefined;
|
|
251
251
|
}
|
|
252
252
|
export interface ListJobsResponse {
|
|
253
|
-
Jobs?: Job[];
|
|
254
|
-
NextToken?: string;
|
|
253
|
+
Jobs?: Job[] | undefined;
|
|
254
|
+
NextToken?: string | undefined;
|
|
255
255
|
}
|
|
256
256
|
export interface ListJobTemplatesRequest {
|
|
257
|
-
Category?: string;
|
|
258
|
-
ListBy?: JobTemplateListBy;
|
|
259
|
-
MaxResults?: number;
|
|
260
|
-
NextToken?: string;
|
|
261
|
-
Order?: Order;
|
|
257
|
+
Category?: string | undefined;
|
|
258
|
+
ListBy?: JobTemplateListBy | undefined;
|
|
259
|
+
MaxResults?: number | undefined;
|
|
260
|
+
NextToken?: string | undefined;
|
|
261
|
+
Order?: Order | undefined;
|
|
262
262
|
}
|
|
263
263
|
export interface ListJobTemplatesResponse {
|
|
264
|
-
JobTemplates?: JobTemplate[];
|
|
265
|
-
NextToken?: string;
|
|
264
|
+
JobTemplates?: JobTemplate[] | undefined;
|
|
265
|
+
NextToken?: string | undefined;
|
|
266
266
|
}
|
|
267
267
|
export declare const PresetListBy: {
|
|
268
268
|
readonly CREATION_DATE: "CREATION_DATE";
|
|
@@ -271,15 +271,15 @@ export declare const PresetListBy: {
|
|
|
271
271
|
};
|
|
272
272
|
export type PresetListBy = (typeof PresetListBy)[keyof typeof PresetListBy];
|
|
273
273
|
export interface ListPresetsRequest {
|
|
274
|
-
Category?: string;
|
|
275
|
-
ListBy?: PresetListBy;
|
|
276
|
-
MaxResults?: number;
|
|
277
|
-
NextToken?: string;
|
|
278
|
-
Order?: Order;
|
|
274
|
+
Category?: string | undefined;
|
|
275
|
+
ListBy?: PresetListBy | undefined;
|
|
276
|
+
MaxResults?: number | undefined;
|
|
277
|
+
NextToken?: string | undefined;
|
|
278
|
+
Order?: Order | undefined;
|
|
279
279
|
}
|
|
280
280
|
export interface ListPresetsResponse {
|
|
281
|
-
NextToken?: string;
|
|
282
|
-
Presets?: Preset[];
|
|
281
|
+
NextToken?: string | undefined;
|
|
282
|
+
Presets?: Preset[] | undefined;
|
|
283
283
|
}
|
|
284
284
|
export declare const QueueListBy: {
|
|
285
285
|
readonly CREATION_DATE: "CREATION_DATE";
|
|
@@ -287,50 +287,50 @@ export declare const QueueListBy: {
|
|
|
287
287
|
};
|
|
288
288
|
export type QueueListBy = (typeof QueueListBy)[keyof typeof QueueListBy];
|
|
289
289
|
export interface ListQueuesRequest {
|
|
290
|
-
ListBy?: QueueListBy;
|
|
291
|
-
MaxResults?: number;
|
|
292
|
-
NextToken?: string;
|
|
293
|
-
Order?: Order;
|
|
290
|
+
ListBy?: QueueListBy | undefined;
|
|
291
|
+
MaxResults?: number | undefined;
|
|
292
|
+
NextToken?: string | undefined;
|
|
293
|
+
Order?: Order | undefined;
|
|
294
294
|
}
|
|
295
295
|
export interface ListQueuesResponse {
|
|
296
|
-
NextToken?: string;
|
|
297
|
-
Queues?: Queue[];
|
|
296
|
+
NextToken?: string | undefined;
|
|
297
|
+
Queues?: Queue[] | undefined;
|
|
298
298
|
}
|
|
299
299
|
export interface ListTagsForResourceRequest {
|
|
300
300
|
Arn: string | undefined;
|
|
301
301
|
}
|
|
302
302
|
export interface ResourceTags {
|
|
303
|
-
Arn?: string;
|
|
304
|
-
Tags?: Record<string, string
|
|
303
|
+
Arn?: string | undefined;
|
|
304
|
+
Tags?: Record<string, string> | undefined;
|
|
305
305
|
}
|
|
306
306
|
export interface ListTagsForResourceResponse {
|
|
307
|
-
ResourceTags?: ResourceTags;
|
|
307
|
+
ResourceTags?: ResourceTags | undefined;
|
|
308
308
|
}
|
|
309
309
|
export interface ListVersionsRequest {
|
|
310
|
-
MaxResults?: number;
|
|
311
|
-
NextToken?: string;
|
|
310
|
+
MaxResults?: number | undefined;
|
|
311
|
+
NextToken?: string | undefined;
|
|
312
312
|
}
|
|
313
313
|
export interface ListVersionsResponse {
|
|
314
|
-
NextToken?: string;
|
|
315
|
-
Versions?: JobEngineVersion[];
|
|
314
|
+
NextToken?: string | undefined;
|
|
315
|
+
Versions?: JobEngineVersion[] | undefined;
|
|
316
316
|
}
|
|
317
317
|
export interface PutPolicyRequest {
|
|
318
318
|
Policy: Policy | undefined;
|
|
319
319
|
}
|
|
320
320
|
export interface PutPolicyResponse {
|
|
321
|
-
Policy?: Policy;
|
|
321
|
+
Policy?: Policy | undefined;
|
|
322
322
|
}
|
|
323
323
|
export interface SearchJobsRequest {
|
|
324
|
-
InputFile?: string;
|
|
325
|
-
MaxResults?: number;
|
|
326
|
-
NextToken?: string;
|
|
327
|
-
Order?: Order;
|
|
328
|
-
Queue?: string;
|
|
329
|
-
Status?: JobStatus;
|
|
324
|
+
InputFile?: string | undefined;
|
|
325
|
+
MaxResults?: number | undefined;
|
|
326
|
+
NextToken?: string | undefined;
|
|
327
|
+
Order?: Order | undefined;
|
|
328
|
+
Queue?: string | undefined;
|
|
329
|
+
Status?: JobStatus | undefined;
|
|
330
330
|
}
|
|
331
331
|
export interface SearchJobsResponse {
|
|
332
|
-
Jobs?: Job[];
|
|
333
|
-
NextToken?: string;
|
|
332
|
+
Jobs?: Job[] | undefined;
|
|
333
|
+
NextToken?: string | undefined;
|
|
334
334
|
}
|
|
335
335
|
export interface TagResourceRequest {
|
|
336
336
|
Arn: string | undefined;
|
|
@@ -339,38 +339,38 @@ export interface TagResourceRequest {
|
|
|
339
339
|
export interface TagResourceResponse {}
|
|
340
340
|
export interface UntagResourceRequest {
|
|
341
341
|
Arn: string | undefined;
|
|
342
|
-
TagKeys?: string[];
|
|
342
|
+
TagKeys?: string[] | undefined;
|
|
343
343
|
}
|
|
344
344
|
export interface UntagResourceResponse {}
|
|
345
345
|
export interface UpdateJobTemplateRequest {
|
|
346
|
-
AccelerationSettings?: AccelerationSettings;
|
|
347
|
-
Category?: string;
|
|
348
|
-
Description?: string;
|
|
349
|
-
HopDestinations?: HopDestination[];
|
|
346
|
+
AccelerationSettings?: AccelerationSettings | undefined;
|
|
347
|
+
Category?: string | undefined;
|
|
348
|
+
Description?: string | undefined;
|
|
349
|
+
HopDestinations?: HopDestination[] | undefined;
|
|
350
350
|
Name: string | undefined;
|
|
351
|
-
Priority?: number;
|
|
352
|
-
Queue?: string;
|
|
353
|
-
Settings?: JobTemplateSettings;
|
|
354
|
-
StatusUpdateInterval?: StatusUpdateInterval;
|
|
351
|
+
Priority?: number | undefined;
|
|
352
|
+
Queue?: string | undefined;
|
|
353
|
+
Settings?: JobTemplateSettings | undefined;
|
|
354
|
+
StatusUpdateInterval?: StatusUpdateInterval | undefined;
|
|
355
355
|
}
|
|
356
356
|
export interface UpdateJobTemplateResponse {
|
|
357
|
-
JobTemplate?: JobTemplate;
|
|
357
|
+
JobTemplate?: JobTemplate | undefined;
|
|
358
358
|
}
|
|
359
359
|
export interface UpdatePresetRequest {
|
|
360
|
-
Category?: string;
|
|
361
|
-
Description?: string;
|
|
360
|
+
Category?: string | undefined;
|
|
361
|
+
Description?: string | undefined;
|
|
362
362
|
Name: string | undefined;
|
|
363
|
-
Settings?: PresetSettings;
|
|
363
|
+
Settings?: PresetSettings | undefined;
|
|
364
364
|
}
|
|
365
365
|
export interface UpdatePresetResponse {
|
|
366
|
-
Preset?: Preset;
|
|
366
|
+
Preset?: Preset | undefined;
|
|
367
367
|
}
|
|
368
368
|
export interface UpdateQueueRequest {
|
|
369
|
-
Description?: string;
|
|
369
|
+
Description?: string | undefined;
|
|
370
370
|
Name: string | undefined;
|
|
371
|
-
ReservationPlanSettings?: ReservationPlanSettings;
|
|
372
|
-
Status?: QueueStatus;
|
|
371
|
+
ReservationPlanSettings?: ReservationPlanSettings | undefined;
|
|
372
|
+
Status?: QueueStatus | undefined;
|
|
373
373
|
}
|
|
374
374
|
export interface UpdateQueueResponse {
|
|
375
|
-
Queue?: Queue;
|
|
375
|
+
Queue?: Queue | undefined;
|
|
376
376
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediaconvert",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediaconvert Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mediaconvert",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|