@aws-sdk/client-batch 3.170.0 → 3.171.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Batch.d.ts +0 -24
- package/dist-types/ts3.4/BatchClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateComputeEnvironmentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateJobQueueCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateSchedulingPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteComputeEnvironmentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteJobQueueCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteSchedulingPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeregisterJobDefinitionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeComputeEnvironmentsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeJobDefinitionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeJobQueuesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeSchedulingPoliciesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListSchedulingPoliciesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RegisterJobDefinitionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SubmitJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TerminateJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateComputeEnvironmentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateJobQueueCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateSchedulingPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/BatchServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -467
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -4,79 +4,54 @@ export declare enum ArrayJobDependency {
|
|
|
4
4
|
N_TO_N = "N_TO_N",
|
|
5
5
|
SEQUENTIAL = "SEQUENTIAL",
|
|
6
6
|
}
|
|
7
|
-
|
|
8
7
|
export interface ArrayProperties {
|
|
9
8
|
size?: number;
|
|
10
9
|
}
|
|
11
|
-
|
|
12
10
|
export interface ArrayPropertiesDetail {
|
|
13
11
|
statusSummary?: Record<string, number>;
|
|
14
|
-
|
|
15
12
|
size?: number;
|
|
16
|
-
|
|
17
13
|
index?: number;
|
|
18
14
|
}
|
|
19
|
-
|
|
20
15
|
export interface ArrayPropertiesSummary {
|
|
21
16
|
size?: number;
|
|
22
|
-
|
|
23
17
|
index?: number;
|
|
24
18
|
}
|
|
25
19
|
export declare enum AssignPublicIp {
|
|
26
20
|
DISABLED = "DISABLED",
|
|
27
21
|
ENABLED = "ENABLED",
|
|
28
22
|
}
|
|
29
|
-
|
|
30
23
|
export interface NetworkInterface {
|
|
31
24
|
attachmentId?: string;
|
|
32
|
-
|
|
33
25
|
ipv6Address?: string;
|
|
34
|
-
|
|
35
26
|
privateIpv4Address?: string;
|
|
36
27
|
}
|
|
37
|
-
|
|
38
28
|
export interface AttemptContainerDetail {
|
|
39
29
|
containerInstanceArn?: string;
|
|
40
|
-
|
|
41
30
|
taskArn?: string;
|
|
42
|
-
|
|
43
31
|
exitCode?: number;
|
|
44
|
-
|
|
45
32
|
reason?: string;
|
|
46
|
-
|
|
47
33
|
logStreamName?: string;
|
|
48
|
-
|
|
49
34
|
networkInterfaces?: NetworkInterface[];
|
|
50
35
|
}
|
|
51
|
-
|
|
52
36
|
export interface AttemptDetail {
|
|
53
37
|
container?: AttemptContainerDetail;
|
|
54
|
-
|
|
55
38
|
startedAt?: number;
|
|
56
|
-
|
|
57
39
|
stoppedAt?: number;
|
|
58
|
-
|
|
59
40
|
statusReason?: string;
|
|
60
41
|
}
|
|
61
|
-
|
|
62
42
|
export interface CancelJobRequest {
|
|
63
43
|
jobId: string | undefined;
|
|
64
|
-
|
|
65
44
|
reason: string | undefined;
|
|
66
45
|
}
|
|
67
46
|
export interface CancelJobResponse {}
|
|
68
|
-
|
|
69
47
|
export declare class ClientException extends __BaseException {
|
|
70
48
|
readonly name: "ClientException";
|
|
71
49
|
readonly $fault: "client";
|
|
72
|
-
|
|
73
50
|
constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
|
|
74
51
|
}
|
|
75
|
-
|
|
76
52
|
export declare class ServerException extends __BaseException {
|
|
77
53
|
readonly name: "ServerException";
|
|
78
54
|
readonly $fault: "server";
|
|
79
|
-
|
|
80
55
|
constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
|
|
81
56
|
}
|
|
82
57
|
export declare enum CRAllocationStrategy {
|
|
@@ -84,18 +59,13 @@ export declare enum CRAllocationStrategy {
|
|
|
84
59
|
BEST_FIT_PROGRESSIVE = "BEST_FIT_PROGRESSIVE",
|
|
85
60
|
SPOT_CAPACITY_OPTIMIZED = "SPOT_CAPACITY_OPTIMIZED",
|
|
86
61
|
}
|
|
87
|
-
|
|
88
62
|
export interface Ec2Configuration {
|
|
89
63
|
imageType: string | undefined;
|
|
90
|
-
|
|
91
64
|
imageIdOverride?: string;
|
|
92
65
|
}
|
|
93
|
-
|
|
94
66
|
export interface LaunchTemplateSpecification {
|
|
95
67
|
launchTemplateId?: string;
|
|
96
|
-
|
|
97
68
|
launchTemplateName?: string;
|
|
98
|
-
|
|
99
69
|
version?: string;
|
|
100
70
|
}
|
|
101
71
|
export declare enum CRType {
|
|
@@ -104,40 +74,23 @@ export declare enum CRType {
|
|
|
104
74
|
FARGATE_SPOT = "FARGATE_SPOT",
|
|
105
75
|
SPOT = "SPOT",
|
|
106
76
|
}
|
|
107
|
-
|
|
108
77
|
export interface ComputeResource {
|
|
109
78
|
type: CRType | string | undefined;
|
|
110
|
-
|
|
111
79
|
allocationStrategy?: CRAllocationStrategy | string;
|
|
112
|
-
|
|
113
80
|
minvCpus?: number;
|
|
114
|
-
|
|
115
81
|
maxvCpus: number | undefined;
|
|
116
|
-
|
|
117
82
|
desiredvCpus?: number;
|
|
118
|
-
|
|
119
83
|
instanceTypes?: string[];
|
|
120
|
-
|
|
121
84
|
imageId?: string;
|
|
122
|
-
|
|
123
85
|
subnets: string[] | undefined;
|
|
124
|
-
|
|
125
86
|
securityGroupIds?: string[];
|
|
126
|
-
|
|
127
87
|
ec2KeyPair?: string;
|
|
128
|
-
|
|
129
88
|
instanceRole?: string;
|
|
130
|
-
|
|
131
89
|
tags?: Record<string, string>;
|
|
132
|
-
|
|
133
90
|
placementGroup?: string;
|
|
134
|
-
|
|
135
91
|
bidPercentage?: number;
|
|
136
|
-
|
|
137
92
|
spotIamFleetRole?: string;
|
|
138
|
-
|
|
139
93
|
launchTemplate?: LaunchTemplateSpecification;
|
|
140
|
-
|
|
141
94
|
ec2Configuration?: Ec2Configuration[];
|
|
142
95
|
}
|
|
143
96
|
export declare enum CEState {
|
|
@@ -148,94 +101,65 @@ export declare enum CEType {
|
|
|
148
101
|
MANAGED = "MANAGED",
|
|
149
102
|
UNMANAGED = "UNMANAGED",
|
|
150
103
|
}
|
|
151
|
-
|
|
152
104
|
export interface CreateComputeEnvironmentRequest {
|
|
153
105
|
computeEnvironmentName: string | undefined;
|
|
154
|
-
|
|
155
106
|
type: CEType | string | undefined;
|
|
156
|
-
|
|
157
107
|
state?: CEState | string;
|
|
158
|
-
|
|
159
108
|
unmanagedvCpus?: number;
|
|
160
|
-
|
|
161
109
|
computeResources?: ComputeResource;
|
|
162
|
-
|
|
163
110
|
serviceRole?: string;
|
|
164
|
-
|
|
165
111
|
tags?: Record<string, string>;
|
|
166
112
|
}
|
|
167
113
|
export interface CreateComputeEnvironmentResponse {
|
|
168
114
|
computeEnvironmentName?: string;
|
|
169
|
-
|
|
170
115
|
computeEnvironmentArn?: string;
|
|
171
116
|
}
|
|
172
|
-
|
|
173
117
|
export interface ComputeEnvironmentOrder {
|
|
174
118
|
order: number | undefined;
|
|
175
|
-
|
|
176
119
|
computeEnvironment: string | undefined;
|
|
177
120
|
}
|
|
178
121
|
export declare enum JQState {
|
|
179
122
|
DISABLED = "DISABLED",
|
|
180
123
|
ENABLED = "ENABLED",
|
|
181
124
|
}
|
|
182
|
-
|
|
183
125
|
export interface CreateJobQueueRequest {
|
|
184
126
|
jobQueueName: string | undefined;
|
|
185
|
-
|
|
186
127
|
state?: JQState | string;
|
|
187
|
-
|
|
188
128
|
schedulingPolicyArn?: string;
|
|
189
|
-
|
|
190
129
|
priority: number | undefined;
|
|
191
|
-
|
|
192
130
|
computeEnvironmentOrder: ComputeEnvironmentOrder[] | undefined;
|
|
193
|
-
|
|
194
131
|
tags?: Record<string, string>;
|
|
195
132
|
}
|
|
196
133
|
export interface CreateJobQueueResponse {
|
|
197
134
|
jobQueueName: string | undefined;
|
|
198
|
-
|
|
199
135
|
jobQueueArn: string | undefined;
|
|
200
136
|
}
|
|
201
|
-
|
|
202
137
|
export interface ShareAttributes {
|
|
203
138
|
shareIdentifier: string | undefined;
|
|
204
|
-
|
|
205
139
|
weightFactor?: number;
|
|
206
140
|
}
|
|
207
|
-
|
|
208
141
|
export interface FairsharePolicy {
|
|
209
142
|
shareDecaySeconds?: number;
|
|
210
|
-
|
|
211
143
|
computeReservation?: number;
|
|
212
|
-
|
|
213
144
|
shareDistribution?: ShareAttributes[];
|
|
214
145
|
}
|
|
215
|
-
|
|
216
146
|
export interface CreateSchedulingPolicyRequest {
|
|
217
147
|
name: string | undefined;
|
|
218
|
-
|
|
219
148
|
fairsharePolicy?: FairsharePolicy;
|
|
220
|
-
|
|
221
149
|
tags?: Record<string, string>;
|
|
222
150
|
}
|
|
223
151
|
export interface CreateSchedulingPolicyResponse {
|
|
224
152
|
name: string | undefined;
|
|
225
|
-
|
|
226
153
|
arn: string | undefined;
|
|
227
154
|
}
|
|
228
|
-
|
|
229
155
|
export interface DeleteComputeEnvironmentRequest {
|
|
230
156
|
computeEnvironment: string | undefined;
|
|
231
157
|
}
|
|
232
158
|
export interface DeleteComputeEnvironmentResponse {}
|
|
233
|
-
|
|
234
159
|
export interface DeleteJobQueueRequest {
|
|
235
160
|
jobQueue: string | undefined;
|
|
236
161
|
}
|
|
237
162
|
export interface DeleteJobQueueResponse {}
|
|
238
|
-
|
|
239
163
|
export interface DeleteSchedulingPolicyRequest {
|
|
240
164
|
arn: string | undefined;
|
|
241
165
|
}
|
|
@@ -244,12 +168,9 @@ export interface DeregisterJobDefinitionRequest {
|
|
|
244
168
|
jobDefinition: string | undefined;
|
|
245
169
|
}
|
|
246
170
|
export interface DeregisterJobDefinitionResponse {}
|
|
247
|
-
|
|
248
171
|
export interface DescribeComputeEnvironmentsRequest {
|
|
249
172
|
computeEnvironments?: string[];
|
|
250
|
-
|
|
251
173
|
maxResults?: number;
|
|
252
|
-
|
|
253
174
|
nextToken?: string;
|
|
254
175
|
}
|
|
255
176
|
export declare enum CEStatus {
|
|
@@ -260,62 +181,39 @@ export declare enum CEStatus {
|
|
|
260
181
|
UPDATING = "UPDATING",
|
|
261
182
|
VALID = "VALID",
|
|
262
183
|
}
|
|
263
|
-
|
|
264
184
|
export interface UpdatePolicy {
|
|
265
185
|
terminateJobsOnUpdate?: boolean;
|
|
266
|
-
|
|
267
186
|
jobExecutionTimeoutMinutes?: number;
|
|
268
187
|
}
|
|
269
|
-
|
|
270
188
|
export interface ComputeEnvironmentDetail {
|
|
271
189
|
computeEnvironmentName: string | undefined;
|
|
272
|
-
|
|
273
190
|
computeEnvironmentArn: string | undefined;
|
|
274
|
-
|
|
275
191
|
unmanagedvCpus?: number;
|
|
276
|
-
|
|
277
192
|
ecsClusterArn?: string;
|
|
278
|
-
|
|
279
193
|
tags?: Record<string, string>;
|
|
280
|
-
|
|
281
194
|
type?: CEType | string;
|
|
282
|
-
|
|
283
195
|
state?: CEState | string;
|
|
284
|
-
|
|
285
196
|
status?: CEStatus | string;
|
|
286
|
-
|
|
287
197
|
statusReason?: string;
|
|
288
|
-
|
|
289
198
|
computeResources?: ComputeResource;
|
|
290
|
-
|
|
291
199
|
serviceRole?: string;
|
|
292
|
-
|
|
293
200
|
updatePolicy?: UpdatePolicy;
|
|
294
201
|
}
|
|
295
202
|
export interface DescribeComputeEnvironmentsResponse {
|
|
296
203
|
computeEnvironments?: ComputeEnvironmentDetail[];
|
|
297
|
-
|
|
298
204
|
nextToken?: string;
|
|
299
205
|
}
|
|
300
|
-
|
|
301
206
|
export interface DescribeJobDefinitionsRequest {
|
|
302
207
|
jobDefinitions?: string[];
|
|
303
|
-
|
|
304
208
|
maxResults?: number;
|
|
305
|
-
|
|
306
209
|
jobDefinitionName?: string;
|
|
307
|
-
|
|
308
210
|
status?: string;
|
|
309
|
-
|
|
310
211
|
nextToken?: string;
|
|
311
212
|
}
|
|
312
|
-
|
|
313
213
|
export interface KeyValuePair {
|
|
314
214
|
name?: string;
|
|
315
|
-
|
|
316
215
|
value?: string;
|
|
317
216
|
}
|
|
318
|
-
|
|
319
217
|
export interface FargatePlatformConfiguration {
|
|
320
218
|
platformVersion?: string;
|
|
321
219
|
}
|
|
@@ -324,34 +222,22 @@ export declare enum DeviceCgroupPermission {
|
|
|
324
222
|
READ = "READ",
|
|
325
223
|
WRITE = "WRITE",
|
|
326
224
|
}
|
|
327
|
-
|
|
328
225
|
export interface Device {
|
|
329
226
|
hostPath: string | undefined;
|
|
330
|
-
|
|
331
227
|
containerPath?: string;
|
|
332
|
-
|
|
333
228
|
permissions?: (DeviceCgroupPermission | string)[];
|
|
334
229
|
}
|
|
335
|
-
|
|
336
230
|
export interface Tmpfs {
|
|
337
231
|
containerPath: string | undefined;
|
|
338
|
-
|
|
339
232
|
size: number | undefined;
|
|
340
|
-
|
|
341
233
|
mountOptions?: string[];
|
|
342
234
|
}
|
|
343
|
-
|
|
344
235
|
export interface LinuxParameters {
|
|
345
236
|
devices?: Device[];
|
|
346
|
-
|
|
347
237
|
initProcessEnabled?: boolean;
|
|
348
|
-
|
|
349
238
|
sharedMemorySize?: number;
|
|
350
|
-
|
|
351
239
|
tmpfs?: Tmpfs[];
|
|
352
|
-
|
|
353
240
|
maxSwap?: number;
|
|
354
|
-
|
|
355
241
|
swappiness?: number;
|
|
356
242
|
}
|
|
357
243
|
export declare enum LogDriver {
|
|
@@ -363,29 +249,20 @@ export declare enum LogDriver {
|
|
|
363
249
|
SPLUNK = "splunk",
|
|
364
250
|
SYSLOG = "syslog",
|
|
365
251
|
}
|
|
366
|
-
|
|
367
252
|
export interface Secret {
|
|
368
253
|
name: string | undefined;
|
|
369
|
-
|
|
370
254
|
valueFrom: string | undefined;
|
|
371
255
|
}
|
|
372
|
-
|
|
373
256
|
export interface LogConfiguration {
|
|
374
257
|
logDriver: LogDriver | string | undefined;
|
|
375
|
-
|
|
376
258
|
options?: Record<string, string>;
|
|
377
|
-
|
|
378
259
|
secretOptions?: Secret[];
|
|
379
260
|
}
|
|
380
|
-
|
|
381
261
|
export interface MountPoint {
|
|
382
262
|
containerPath?: string;
|
|
383
|
-
|
|
384
263
|
readOnly?: boolean;
|
|
385
|
-
|
|
386
264
|
sourceVolume?: string;
|
|
387
265
|
}
|
|
388
|
-
|
|
389
266
|
export interface NetworkConfiguration {
|
|
390
267
|
assignPublicIp?: AssignPublicIp | string;
|
|
391
268
|
}
|
|
@@ -394,112 +271,71 @@ export declare enum ResourceType {
|
|
|
394
271
|
MEMORY = "MEMORY",
|
|
395
272
|
VCPU = "VCPU",
|
|
396
273
|
}
|
|
397
|
-
|
|
398
274
|
export interface ResourceRequirement {
|
|
399
275
|
value: string | undefined;
|
|
400
|
-
|
|
401
276
|
type: ResourceType | string | undefined;
|
|
402
277
|
}
|
|
403
|
-
|
|
404
278
|
export interface Ulimit {
|
|
405
279
|
hardLimit: number | undefined;
|
|
406
|
-
|
|
407
280
|
name: string | undefined;
|
|
408
|
-
|
|
409
281
|
softLimit: number | undefined;
|
|
410
282
|
}
|
|
411
283
|
export declare enum EFSAuthorizationConfigIAM {
|
|
412
284
|
DISABLED = "DISABLED",
|
|
413
285
|
ENABLED = "ENABLED",
|
|
414
286
|
}
|
|
415
|
-
|
|
416
287
|
export interface EFSAuthorizationConfig {
|
|
417
288
|
accessPointId?: string;
|
|
418
|
-
|
|
419
289
|
iam?: EFSAuthorizationConfigIAM | string;
|
|
420
290
|
}
|
|
421
291
|
export declare enum EFSTransitEncryption {
|
|
422
292
|
DISABLED = "DISABLED",
|
|
423
293
|
ENABLED = "ENABLED",
|
|
424
294
|
}
|
|
425
|
-
|
|
426
295
|
export interface EFSVolumeConfiguration {
|
|
427
296
|
fileSystemId: string | undefined;
|
|
428
|
-
|
|
429
297
|
rootDirectory?: string;
|
|
430
|
-
|
|
431
298
|
transitEncryption?: EFSTransitEncryption | string;
|
|
432
|
-
|
|
433
299
|
transitEncryptionPort?: number;
|
|
434
|
-
|
|
435
300
|
authorizationConfig?: EFSAuthorizationConfig;
|
|
436
301
|
}
|
|
437
|
-
|
|
438
302
|
export interface Host {
|
|
439
303
|
sourcePath?: string;
|
|
440
304
|
}
|
|
441
|
-
|
|
442
305
|
export interface Volume {
|
|
443
306
|
host?: Host;
|
|
444
|
-
|
|
445
307
|
name?: string;
|
|
446
|
-
|
|
447
308
|
efsVolumeConfiguration?: EFSVolumeConfiguration;
|
|
448
309
|
}
|
|
449
|
-
|
|
450
310
|
export interface ContainerProperties {
|
|
451
311
|
image?: string;
|
|
452
|
-
|
|
453
312
|
vcpus?: number;
|
|
454
|
-
|
|
455
313
|
memory?: number;
|
|
456
|
-
|
|
457
314
|
command?: string[];
|
|
458
|
-
|
|
459
315
|
jobRoleArn?: string;
|
|
460
|
-
|
|
461
316
|
executionRoleArn?: string;
|
|
462
|
-
|
|
463
317
|
volumes?: Volume[];
|
|
464
|
-
|
|
465
318
|
environment?: KeyValuePair[];
|
|
466
|
-
|
|
467
319
|
mountPoints?: MountPoint[];
|
|
468
|
-
|
|
469
320
|
readonlyRootFilesystem?: boolean;
|
|
470
|
-
|
|
471
321
|
privileged?: boolean;
|
|
472
|
-
|
|
473
322
|
ulimits?: Ulimit[];
|
|
474
|
-
|
|
475
323
|
user?: string;
|
|
476
|
-
|
|
477
324
|
instanceType?: string;
|
|
478
|
-
|
|
479
325
|
resourceRequirements?: ResourceRequirement[];
|
|
480
|
-
|
|
481
326
|
linuxParameters?: LinuxParameters;
|
|
482
|
-
|
|
483
327
|
logConfiguration?: LogConfiguration;
|
|
484
|
-
|
|
485
328
|
secrets?: Secret[];
|
|
486
|
-
|
|
487
329
|
networkConfiguration?: NetworkConfiguration;
|
|
488
|
-
|
|
489
330
|
fargatePlatformConfiguration?: FargatePlatformConfiguration;
|
|
490
331
|
}
|
|
491
|
-
|
|
492
332
|
export interface NodeRangeProperty {
|
|
493
333
|
targetNodes: string | undefined;
|
|
494
|
-
|
|
495
334
|
container?: ContainerProperties;
|
|
496
335
|
}
|
|
497
|
-
|
|
498
336
|
export interface NodeProperties {
|
|
499
337
|
numNodes: number | undefined;
|
|
500
|
-
|
|
501
338
|
mainNode: number | undefined;
|
|
502
|
-
|
|
503
339
|
nodeRangeProperties: NodeRangeProperty[] | undefined;
|
|
504
340
|
}
|
|
505
341
|
export declare enum PlatformCapability {
|
|
@@ -510,67 +346,42 @@ export declare enum RetryAction {
|
|
|
510
346
|
EXIT = "EXIT",
|
|
511
347
|
RETRY = "RETRY",
|
|
512
348
|
}
|
|
513
|
-
|
|
514
349
|
export interface EvaluateOnExit {
|
|
515
350
|
onStatusReason?: string;
|
|
516
|
-
|
|
517
351
|
onReason?: string;
|
|
518
|
-
|
|
519
352
|
onExitCode?: string;
|
|
520
|
-
|
|
521
353
|
action: RetryAction | string | undefined;
|
|
522
354
|
}
|
|
523
|
-
|
|
524
355
|
export interface RetryStrategy {
|
|
525
356
|
attempts?: number;
|
|
526
|
-
|
|
527
357
|
evaluateOnExit?: EvaluateOnExit[];
|
|
528
358
|
}
|
|
529
|
-
|
|
530
359
|
export interface JobTimeout {
|
|
531
360
|
attemptDurationSeconds?: number;
|
|
532
361
|
}
|
|
533
|
-
|
|
534
362
|
export interface JobDefinition {
|
|
535
363
|
jobDefinitionName: string | undefined;
|
|
536
|
-
|
|
537
364
|
jobDefinitionArn: string | undefined;
|
|
538
|
-
|
|
539
365
|
revision: number | undefined;
|
|
540
|
-
|
|
541
366
|
status?: string;
|
|
542
|
-
|
|
543
367
|
type: string | undefined;
|
|
544
|
-
|
|
545
368
|
schedulingPriority?: number;
|
|
546
|
-
|
|
547
369
|
parameters?: Record<string, string>;
|
|
548
|
-
|
|
549
370
|
retryStrategy?: RetryStrategy;
|
|
550
|
-
|
|
551
371
|
containerProperties?: ContainerProperties;
|
|
552
|
-
|
|
553
372
|
timeout?: JobTimeout;
|
|
554
|
-
|
|
555
373
|
nodeProperties?: NodeProperties;
|
|
556
|
-
|
|
557
374
|
tags?: Record<string, string>;
|
|
558
|
-
|
|
559
375
|
propagateTags?: boolean;
|
|
560
|
-
|
|
561
376
|
platformCapabilities?: (PlatformCapability | string)[];
|
|
562
377
|
}
|
|
563
378
|
export interface DescribeJobDefinitionsResponse {
|
|
564
379
|
jobDefinitions?: JobDefinition[];
|
|
565
|
-
|
|
566
380
|
nextToken?: string;
|
|
567
381
|
}
|
|
568
|
-
|
|
569
382
|
export interface DescribeJobQueuesRequest {
|
|
570
383
|
jobQueues?: string[];
|
|
571
|
-
|
|
572
384
|
maxResults?: number;
|
|
573
|
-
|
|
574
385
|
nextToken?: string;
|
|
575
386
|
}
|
|
576
387
|
export declare enum JQStatus {
|
|
@@ -581,99 +392,58 @@ export declare enum JQStatus {
|
|
|
581
392
|
UPDATING = "UPDATING",
|
|
582
393
|
VALID = "VALID",
|
|
583
394
|
}
|
|
584
|
-
|
|
585
395
|
export interface JobQueueDetail {
|
|
586
396
|
jobQueueName: string | undefined;
|
|
587
|
-
|
|
588
397
|
jobQueueArn: string | undefined;
|
|
589
|
-
|
|
590
398
|
state: JQState | string | undefined;
|
|
591
|
-
|
|
592
399
|
schedulingPolicyArn?: string;
|
|
593
|
-
|
|
594
400
|
status?: JQStatus | string;
|
|
595
|
-
|
|
596
401
|
statusReason?: string;
|
|
597
|
-
|
|
598
402
|
priority: number | undefined;
|
|
599
|
-
|
|
600
403
|
computeEnvironmentOrder: ComputeEnvironmentOrder[] | undefined;
|
|
601
|
-
|
|
602
404
|
tags?: Record<string, string>;
|
|
603
405
|
}
|
|
604
406
|
export interface DescribeJobQueuesResponse {
|
|
605
407
|
jobQueues?: JobQueueDetail[];
|
|
606
|
-
|
|
607
408
|
nextToken?: string;
|
|
608
409
|
}
|
|
609
|
-
|
|
610
410
|
export interface DescribeJobsRequest {
|
|
611
411
|
jobs: string[] | undefined;
|
|
612
412
|
}
|
|
613
|
-
|
|
614
413
|
export interface ContainerDetail {
|
|
615
414
|
image?: string;
|
|
616
|
-
|
|
617
415
|
vcpus?: number;
|
|
618
|
-
|
|
619
416
|
memory?: number;
|
|
620
|
-
|
|
621
417
|
command?: string[];
|
|
622
|
-
|
|
623
418
|
jobRoleArn?: string;
|
|
624
|
-
|
|
625
419
|
executionRoleArn?: string;
|
|
626
|
-
|
|
627
420
|
volumes?: Volume[];
|
|
628
|
-
|
|
629
421
|
environment?: KeyValuePair[];
|
|
630
|
-
|
|
631
422
|
mountPoints?: MountPoint[];
|
|
632
|
-
|
|
633
423
|
readonlyRootFilesystem?: boolean;
|
|
634
|
-
|
|
635
424
|
ulimits?: Ulimit[];
|
|
636
|
-
|
|
637
425
|
privileged?: boolean;
|
|
638
|
-
|
|
639
426
|
user?: string;
|
|
640
|
-
|
|
641
427
|
exitCode?: number;
|
|
642
|
-
|
|
643
428
|
reason?: string;
|
|
644
|
-
|
|
645
429
|
containerInstanceArn?: string;
|
|
646
|
-
|
|
647
430
|
taskArn?: string;
|
|
648
|
-
|
|
649
431
|
logStreamName?: string;
|
|
650
|
-
|
|
651
432
|
instanceType?: string;
|
|
652
|
-
|
|
653
433
|
networkInterfaces?: NetworkInterface[];
|
|
654
|
-
|
|
655
434
|
resourceRequirements?: ResourceRequirement[];
|
|
656
|
-
|
|
657
435
|
linuxParameters?: LinuxParameters;
|
|
658
|
-
|
|
659
436
|
logConfiguration?: LogConfiguration;
|
|
660
|
-
|
|
661
437
|
secrets?: Secret[];
|
|
662
|
-
|
|
663
438
|
networkConfiguration?: NetworkConfiguration;
|
|
664
|
-
|
|
665
439
|
fargatePlatformConfiguration?: FargatePlatformConfiguration;
|
|
666
440
|
}
|
|
667
|
-
|
|
668
441
|
export interface JobDependency {
|
|
669
442
|
jobId?: string;
|
|
670
|
-
|
|
671
443
|
type?: ArrayJobDependency | string;
|
|
672
444
|
}
|
|
673
|
-
|
|
674
445
|
export interface NodeDetails {
|
|
675
446
|
nodeIndex?: number;
|
|
676
|
-
|
|
677
447
|
isMainNode?: boolean;
|
|
678
448
|
}
|
|
679
449
|
export declare enum JobStatus {
|
|
@@ -685,159 +455,98 @@ export declare enum JobStatus {
|
|
|
685
455
|
SUBMITTED = "SUBMITTED",
|
|
686
456
|
SUCCEEDED = "SUCCEEDED",
|
|
687
457
|
}
|
|
688
|
-
|
|
689
458
|
export interface JobDetail {
|
|
690
459
|
jobArn?: string;
|
|
691
|
-
|
|
692
460
|
jobName: string | undefined;
|
|
693
|
-
|
|
694
461
|
jobId: string | undefined;
|
|
695
|
-
|
|
696
462
|
jobQueue: string | undefined;
|
|
697
|
-
|
|
698
463
|
status: JobStatus | string | undefined;
|
|
699
|
-
|
|
700
464
|
shareIdentifier?: string;
|
|
701
|
-
|
|
702
465
|
schedulingPriority?: number;
|
|
703
|
-
|
|
704
466
|
attempts?: AttemptDetail[];
|
|
705
|
-
|
|
706
467
|
statusReason?: string;
|
|
707
|
-
|
|
708
468
|
createdAt?: number;
|
|
709
|
-
|
|
710
469
|
retryStrategy?: RetryStrategy;
|
|
711
|
-
|
|
712
470
|
startedAt: number | undefined;
|
|
713
|
-
|
|
714
471
|
stoppedAt?: number;
|
|
715
|
-
|
|
716
472
|
dependsOn?: JobDependency[];
|
|
717
|
-
|
|
718
473
|
jobDefinition: string | undefined;
|
|
719
|
-
|
|
720
474
|
parameters?: Record<string, string>;
|
|
721
|
-
|
|
722
475
|
container?: ContainerDetail;
|
|
723
|
-
|
|
724
476
|
nodeDetails?: NodeDetails;
|
|
725
|
-
|
|
726
477
|
nodeProperties?: NodeProperties;
|
|
727
|
-
|
|
728
478
|
arrayProperties?: ArrayPropertiesDetail;
|
|
729
|
-
|
|
730
479
|
timeout?: JobTimeout;
|
|
731
|
-
|
|
732
480
|
tags?: Record<string, string>;
|
|
733
|
-
|
|
734
481
|
propagateTags?: boolean;
|
|
735
|
-
|
|
736
482
|
platformCapabilities?: (PlatformCapability | string)[];
|
|
737
483
|
}
|
|
738
484
|
export interface DescribeJobsResponse {
|
|
739
485
|
jobs?: JobDetail[];
|
|
740
486
|
}
|
|
741
|
-
|
|
742
487
|
export interface DescribeSchedulingPoliciesRequest {
|
|
743
488
|
arns: string[] | undefined;
|
|
744
489
|
}
|
|
745
|
-
|
|
746
490
|
export interface SchedulingPolicyDetail {
|
|
747
491
|
name: string | undefined;
|
|
748
|
-
|
|
749
492
|
arn: string | undefined;
|
|
750
|
-
|
|
751
493
|
fairsharePolicy?: FairsharePolicy;
|
|
752
|
-
|
|
753
494
|
tags?: Record<string, string>;
|
|
754
495
|
}
|
|
755
496
|
export interface DescribeSchedulingPoliciesResponse {
|
|
756
497
|
schedulingPolicies?: SchedulingPolicyDetail[];
|
|
757
498
|
}
|
|
758
|
-
|
|
759
499
|
export interface KeyValuesPair {
|
|
760
500
|
name?: string;
|
|
761
|
-
|
|
762
501
|
values?: string[];
|
|
763
502
|
}
|
|
764
|
-
|
|
765
503
|
export interface ListJobsRequest {
|
|
766
504
|
jobQueue?: string;
|
|
767
|
-
|
|
768
505
|
arrayJobId?: string;
|
|
769
|
-
|
|
770
506
|
multiNodeJobId?: string;
|
|
771
|
-
|
|
772
507
|
jobStatus?: JobStatus | string;
|
|
773
|
-
|
|
774
508
|
maxResults?: number;
|
|
775
|
-
|
|
776
509
|
nextToken?: string;
|
|
777
|
-
|
|
778
510
|
filters?: KeyValuesPair[];
|
|
779
511
|
}
|
|
780
|
-
|
|
781
512
|
export interface ContainerSummary {
|
|
782
513
|
exitCode?: number;
|
|
783
|
-
|
|
784
514
|
reason?: string;
|
|
785
515
|
}
|
|
786
|
-
|
|
787
516
|
export interface NodePropertiesSummary {
|
|
788
517
|
isMainNode?: boolean;
|
|
789
|
-
|
|
790
518
|
numNodes?: number;
|
|
791
|
-
|
|
792
519
|
nodeIndex?: number;
|
|
793
520
|
}
|
|
794
|
-
|
|
795
521
|
export interface JobSummary {
|
|
796
522
|
jobArn?: string;
|
|
797
|
-
|
|
798
523
|
jobId: string | undefined;
|
|
799
|
-
|
|
800
524
|
jobName: string | undefined;
|
|
801
|
-
|
|
802
525
|
createdAt?: number;
|
|
803
|
-
|
|
804
526
|
status?: JobStatus | string;
|
|
805
|
-
|
|
806
527
|
statusReason?: string;
|
|
807
|
-
|
|
808
528
|
startedAt?: number;
|
|
809
|
-
|
|
810
529
|
stoppedAt?: number;
|
|
811
|
-
|
|
812
530
|
container?: ContainerSummary;
|
|
813
|
-
|
|
814
531
|
arrayProperties?: ArrayPropertiesSummary;
|
|
815
|
-
|
|
816
532
|
nodeProperties?: NodePropertiesSummary;
|
|
817
|
-
|
|
818
533
|
jobDefinition?: string;
|
|
819
534
|
}
|
|
820
535
|
export interface ListJobsResponse {
|
|
821
536
|
jobSummaryList: JobSummary[] | undefined;
|
|
822
|
-
|
|
823
537
|
nextToken?: string;
|
|
824
538
|
}
|
|
825
|
-
|
|
826
539
|
export interface ListSchedulingPoliciesRequest {
|
|
827
540
|
maxResults?: number;
|
|
828
|
-
|
|
829
541
|
nextToken?: string;
|
|
830
542
|
}
|
|
831
|
-
|
|
832
543
|
export interface SchedulingPolicyListingDetail {
|
|
833
544
|
arn: string | undefined;
|
|
834
545
|
}
|
|
835
546
|
export interface ListSchedulingPoliciesResponse {
|
|
836
547
|
schedulingPolicies?: SchedulingPolicyListingDetail[];
|
|
837
|
-
|
|
838
548
|
nextToken?: string;
|
|
839
549
|
}
|
|
840
|
-
|
|
841
550
|
export interface ListTagsForResourceRequest {
|
|
842
551
|
resourceArn: string | undefined;
|
|
843
552
|
}
|
|
@@ -848,118 +557,73 @@ export declare enum JobDefinitionType {
|
|
|
848
557
|
Container = "container",
|
|
849
558
|
Multinode = "multinode",
|
|
850
559
|
}
|
|
851
|
-
|
|
852
560
|
export interface RegisterJobDefinitionRequest {
|
|
853
561
|
jobDefinitionName: string | undefined;
|
|
854
|
-
|
|
855
562
|
type: JobDefinitionType | string | undefined;
|
|
856
|
-
|
|
857
563
|
parameters?: Record<string, string>;
|
|
858
|
-
|
|
859
564
|
schedulingPriority?: number;
|
|
860
|
-
|
|
861
565
|
containerProperties?: ContainerProperties;
|
|
862
|
-
|
|
863
566
|
nodeProperties?: NodeProperties;
|
|
864
|
-
|
|
865
567
|
retryStrategy?: RetryStrategy;
|
|
866
|
-
|
|
867
568
|
propagateTags?: boolean;
|
|
868
|
-
|
|
869
569
|
timeout?: JobTimeout;
|
|
870
|
-
|
|
871
570
|
tags?: Record<string, string>;
|
|
872
|
-
|
|
873
571
|
platformCapabilities?: (PlatformCapability | string)[];
|
|
874
572
|
}
|
|
875
573
|
export interface RegisterJobDefinitionResponse {
|
|
876
574
|
jobDefinitionName: string | undefined;
|
|
877
|
-
|
|
878
575
|
jobDefinitionArn: string | undefined;
|
|
879
|
-
|
|
880
576
|
revision: number | undefined;
|
|
881
577
|
}
|
|
882
|
-
|
|
883
578
|
export interface ContainerOverrides {
|
|
884
579
|
vcpus?: number;
|
|
885
|
-
|
|
886
580
|
memory?: number;
|
|
887
|
-
|
|
888
581
|
command?: string[];
|
|
889
|
-
|
|
890
582
|
instanceType?: string;
|
|
891
|
-
|
|
892
583
|
environment?: KeyValuePair[];
|
|
893
|
-
|
|
894
584
|
resourceRequirements?: ResourceRequirement[];
|
|
895
585
|
}
|
|
896
|
-
|
|
897
586
|
export interface NodePropertyOverride {
|
|
898
587
|
targetNodes: string | undefined;
|
|
899
|
-
|
|
900
588
|
containerOverrides?: ContainerOverrides;
|
|
901
589
|
}
|
|
902
|
-
|
|
903
590
|
export interface NodeOverrides {
|
|
904
591
|
numNodes?: number;
|
|
905
|
-
|
|
906
592
|
nodePropertyOverrides?: NodePropertyOverride[];
|
|
907
593
|
}
|
|
908
|
-
|
|
909
594
|
export interface SubmitJobRequest {
|
|
910
595
|
jobName: string | undefined;
|
|
911
|
-
|
|
912
596
|
jobQueue: string | undefined;
|
|
913
|
-
|
|
914
597
|
shareIdentifier?: string;
|
|
915
|
-
|
|
916
598
|
schedulingPriorityOverride?: number;
|
|
917
|
-
|
|
918
599
|
arrayProperties?: ArrayProperties;
|
|
919
|
-
|
|
920
600
|
dependsOn?: JobDependency[];
|
|
921
|
-
|
|
922
601
|
jobDefinition: string | undefined;
|
|
923
|
-
|
|
924
602
|
parameters?: Record<string, string>;
|
|
925
|
-
|
|
926
603
|
containerOverrides?: ContainerOverrides;
|
|
927
|
-
|
|
928
604
|
nodeOverrides?: NodeOverrides;
|
|
929
|
-
|
|
930
605
|
retryStrategy?: RetryStrategy;
|
|
931
|
-
|
|
932
606
|
propagateTags?: boolean;
|
|
933
|
-
|
|
934
607
|
timeout?: JobTimeout;
|
|
935
|
-
|
|
936
608
|
tags?: Record<string, string>;
|
|
937
609
|
}
|
|
938
610
|
export interface SubmitJobResponse {
|
|
939
611
|
jobArn?: string;
|
|
940
|
-
|
|
941
612
|
jobName: string | undefined;
|
|
942
|
-
|
|
943
613
|
jobId: string | undefined;
|
|
944
614
|
}
|
|
945
|
-
|
|
946
615
|
export interface TagResourceRequest {
|
|
947
616
|
resourceArn: string | undefined;
|
|
948
|
-
|
|
949
617
|
tags: Record<string, string> | undefined;
|
|
950
618
|
}
|
|
951
619
|
export interface TagResourceResponse {}
|
|
952
|
-
|
|
953
620
|
export interface TerminateJobRequest {
|
|
954
621
|
jobId: string | undefined;
|
|
955
|
-
|
|
956
622
|
reason: string | undefined;
|
|
957
623
|
}
|
|
958
624
|
export interface TerminateJobResponse {}
|
|
959
|
-
|
|
960
625
|
export interface UntagResourceRequest {
|
|
961
626
|
resourceArn: string | undefined;
|
|
962
|
-
|
|
963
627
|
tagKeys: string[] | undefined;
|
|
964
628
|
}
|
|
965
629
|
export interface UntagResourceResponse {}
|
|
@@ -967,452 +631,321 @@ export declare enum CRUpdateAllocationStrategy {
|
|
|
967
631
|
BEST_FIT_PROGRESSIVE = "BEST_FIT_PROGRESSIVE",
|
|
968
632
|
SPOT_CAPACITY_OPTIMIZED = "SPOT_CAPACITY_OPTIMIZED",
|
|
969
633
|
}
|
|
970
|
-
|
|
971
634
|
export interface ComputeResourceUpdate {
|
|
972
635
|
minvCpus?: number;
|
|
973
|
-
|
|
974
636
|
maxvCpus?: number;
|
|
975
|
-
|
|
976
637
|
desiredvCpus?: number;
|
|
977
|
-
|
|
978
638
|
subnets?: string[];
|
|
979
|
-
|
|
980
639
|
securityGroupIds?: string[];
|
|
981
|
-
|
|
982
640
|
allocationStrategy?: CRUpdateAllocationStrategy | string;
|
|
983
|
-
|
|
984
641
|
instanceTypes?: string[];
|
|
985
|
-
|
|
986
642
|
ec2KeyPair?: string;
|
|
987
|
-
|
|
988
643
|
instanceRole?: string;
|
|
989
|
-
|
|
990
644
|
tags?: Record<string, string>;
|
|
991
|
-
|
|
992
645
|
placementGroup?: string;
|
|
993
|
-
|
|
994
646
|
bidPercentage?: number;
|
|
995
|
-
|
|
996
647
|
launchTemplate?: LaunchTemplateSpecification;
|
|
997
|
-
|
|
998
648
|
ec2Configuration?: Ec2Configuration[];
|
|
999
|
-
|
|
1000
649
|
updateToLatestImageVersion?: boolean;
|
|
1001
|
-
|
|
1002
650
|
type?: CRType | string;
|
|
1003
|
-
|
|
1004
651
|
imageId?: string;
|
|
1005
652
|
}
|
|
1006
|
-
|
|
1007
653
|
export interface UpdateComputeEnvironmentRequest {
|
|
1008
654
|
computeEnvironment: string | undefined;
|
|
1009
|
-
|
|
1010
655
|
state?: CEState | string;
|
|
1011
|
-
|
|
1012
656
|
unmanagedvCpus?: number;
|
|
1013
|
-
|
|
1014
657
|
computeResources?: ComputeResourceUpdate;
|
|
1015
|
-
|
|
1016
658
|
serviceRole?: string;
|
|
1017
|
-
|
|
1018
659
|
updatePolicy?: UpdatePolicy;
|
|
1019
660
|
}
|
|
1020
661
|
export interface UpdateComputeEnvironmentResponse {
|
|
1021
662
|
computeEnvironmentName?: string;
|
|
1022
|
-
|
|
1023
663
|
computeEnvironmentArn?: string;
|
|
1024
664
|
}
|
|
1025
|
-
|
|
1026
665
|
export interface UpdateJobQueueRequest {
|
|
1027
666
|
jobQueue: string | undefined;
|
|
1028
|
-
|
|
1029
667
|
state?: JQState | string;
|
|
1030
|
-
|
|
1031
668
|
schedulingPolicyArn?: string;
|
|
1032
|
-
|
|
1033
669
|
priority?: number;
|
|
1034
|
-
|
|
1035
670
|
computeEnvironmentOrder?: ComputeEnvironmentOrder[];
|
|
1036
671
|
}
|
|
1037
672
|
export interface UpdateJobQueueResponse {
|
|
1038
673
|
jobQueueName?: string;
|
|
1039
|
-
|
|
1040
674
|
jobQueueArn?: string;
|
|
1041
675
|
}
|
|
1042
|
-
|
|
1043
676
|
export interface UpdateSchedulingPolicyRequest {
|
|
1044
677
|
arn: string | undefined;
|
|
1045
|
-
|
|
1046
678
|
fairsharePolicy?: FairsharePolicy;
|
|
1047
679
|
}
|
|
1048
680
|
export interface UpdateSchedulingPolicyResponse {}
|
|
1049
|
-
|
|
1050
681
|
export declare const ArrayPropertiesFilterSensitiveLog: (
|
|
1051
682
|
obj: ArrayProperties
|
|
1052
683
|
) => any;
|
|
1053
|
-
|
|
1054
684
|
export declare const ArrayPropertiesDetailFilterSensitiveLog: (
|
|
1055
685
|
obj: ArrayPropertiesDetail
|
|
1056
686
|
) => any;
|
|
1057
|
-
|
|
1058
687
|
export declare const ArrayPropertiesSummaryFilterSensitiveLog: (
|
|
1059
688
|
obj: ArrayPropertiesSummary
|
|
1060
689
|
) => any;
|
|
1061
|
-
|
|
1062
690
|
export declare const NetworkInterfaceFilterSensitiveLog: (
|
|
1063
691
|
obj: NetworkInterface
|
|
1064
692
|
) => any;
|
|
1065
|
-
|
|
1066
693
|
export declare const AttemptContainerDetailFilterSensitiveLog: (
|
|
1067
694
|
obj: AttemptContainerDetail
|
|
1068
695
|
) => any;
|
|
1069
|
-
|
|
1070
696
|
export declare const AttemptDetailFilterSensitiveLog: (
|
|
1071
697
|
obj: AttemptDetail
|
|
1072
698
|
) => any;
|
|
1073
|
-
|
|
1074
699
|
export declare const CancelJobRequestFilterSensitiveLog: (
|
|
1075
700
|
obj: CancelJobRequest
|
|
1076
701
|
) => any;
|
|
1077
|
-
|
|
1078
702
|
export declare const CancelJobResponseFilterSensitiveLog: (
|
|
1079
703
|
obj: CancelJobResponse
|
|
1080
704
|
) => any;
|
|
1081
|
-
|
|
1082
705
|
export declare const Ec2ConfigurationFilterSensitiveLog: (
|
|
1083
706
|
obj: Ec2Configuration
|
|
1084
707
|
) => any;
|
|
1085
|
-
|
|
1086
708
|
export declare const LaunchTemplateSpecificationFilterSensitiveLog: (
|
|
1087
709
|
obj: LaunchTemplateSpecification
|
|
1088
710
|
) => any;
|
|
1089
|
-
|
|
1090
711
|
export declare const ComputeResourceFilterSensitiveLog: (
|
|
1091
712
|
obj: ComputeResource
|
|
1092
713
|
) => any;
|
|
1093
|
-
|
|
1094
714
|
export declare const CreateComputeEnvironmentRequestFilterSensitiveLog: (
|
|
1095
715
|
obj: CreateComputeEnvironmentRequest
|
|
1096
716
|
) => any;
|
|
1097
|
-
|
|
1098
717
|
export declare const CreateComputeEnvironmentResponseFilterSensitiveLog: (
|
|
1099
718
|
obj: CreateComputeEnvironmentResponse
|
|
1100
719
|
) => any;
|
|
1101
|
-
|
|
1102
720
|
export declare const ComputeEnvironmentOrderFilterSensitiveLog: (
|
|
1103
721
|
obj: ComputeEnvironmentOrder
|
|
1104
722
|
) => any;
|
|
1105
|
-
|
|
1106
723
|
export declare const CreateJobQueueRequestFilterSensitiveLog: (
|
|
1107
724
|
obj: CreateJobQueueRequest
|
|
1108
725
|
) => any;
|
|
1109
|
-
|
|
1110
726
|
export declare const CreateJobQueueResponseFilterSensitiveLog: (
|
|
1111
727
|
obj: CreateJobQueueResponse
|
|
1112
728
|
) => any;
|
|
1113
|
-
|
|
1114
729
|
export declare const ShareAttributesFilterSensitiveLog: (
|
|
1115
730
|
obj: ShareAttributes
|
|
1116
731
|
) => any;
|
|
1117
|
-
|
|
1118
732
|
export declare const FairsharePolicyFilterSensitiveLog: (
|
|
1119
733
|
obj: FairsharePolicy
|
|
1120
734
|
) => any;
|
|
1121
|
-
|
|
1122
735
|
export declare const CreateSchedulingPolicyRequestFilterSensitiveLog: (
|
|
1123
736
|
obj: CreateSchedulingPolicyRequest
|
|
1124
737
|
) => any;
|
|
1125
|
-
|
|
1126
738
|
export declare const CreateSchedulingPolicyResponseFilterSensitiveLog: (
|
|
1127
739
|
obj: CreateSchedulingPolicyResponse
|
|
1128
740
|
) => any;
|
|
1129
|
-
|
|
1130
741
|
export declare const DeleteComputeEnvironmentRequestFilterSensitiveLog: (
|
|
1131
742
|
obj: DeleteComputeEnvironmentRequest
|
|
1132
743
|
) => any;
|
|
1133
|
-
|
|
1134
744
|
export declare const DeleteComputeEnvironmentResponseFilterSensitiveLog: (
|
|
1135
745
|
obj: DeleteComputeEnvironmentResponse
|
|
1136
746
|
) => any;
|
|
1137
|
-
|
|
1138
747
|
export declare const DeleteJobQueueRequestFilterSensitiveLog: (
|
|
1139
748
|
obj: DeleteJobQueueRequest
|
|
1140
749
|
) => any;
|
|
1141
|
-
|
|
1142
750
|
export declare const DeleteJobQueueResponseFilterSensitiveLog: (
|
|
1143
751
|
obj: DeleteJobQueueResponse
|
|
1144
752
|
) => any;
|
|
1145
|
-
|
|
1146
753
|
export declare const DeleteSchedulingPolicyRequestFilterSensitiveLog: (
|
|
1147
754
|
obj: DeleteSchedulingPolicyRequest
|
|
1148
755
|
) => any;
|
|
1149
|
-
|
|
1150
756
|
export declare const DeleteSchedulingPolicyResponseFilterSensitiveLog: (
|
|
1151
757
|
obj: DeleteSchedulingPolicyResponse
|
|
1152
758
|
) => any;
|
|
1153
|
-
|
|
1154
759
|
export declare const DeregisterJobDefinitionRequestFilterSensitiveLog: (
|
|
1155
760
|
obj: DeregisterJobDefinitionRequest
|
|
1156
761
|
) => any;
|
|
1157
|
-
|
|
1158
762
|
export declare const DeregisterJobDefinitionResponseFilterSensitiveLog: (
|
|
1159
763
|
obj: DeregisterJobDefinitionResponse
|
|
1160
764
|
) => any;
|
|
1161
|
-
|
|
1162
765
|
export declare const DescribeComputeEnvironmentsRequestFilterSensitiveLog: (
|
|
1163
766
|
obj: DescribeComputeEnvironmentsRequest
|
|
1164
767
|
) => any;
|
|
1165
|
-
|
|
1166
768
|
export declare const UpdatePolicyFilterSensitiveLog: (obj: UpdatePolicy) => any;
|
|
1167
|
-
|
|
1168
769
|
export declare const ComputeEnvironmentDetailFilterSensitiveLog: (
|
|
1169
770
|
obj: ComputeEnvironmentDetail
|
|
1170
771
|
) => any;
|
|
1171
|
-
|
|
1172
772
|
export declare const DescribeComputeEnvironmentsResponseFilterSensitiveLog: (
|
|
1173
773
|
obj: DescribeComputeEnvironmentsResponse
|
|
1174
774
|
) => any;
|
|
1175
|
-
|
|
1176
775
|
export declare const DescribeJobDefinitionsRequestFilterSensitiveLog: (
|
|
1177
776
|
obj: DescribeJobDefinitionsRequest
|
|
1178
777
|
) => any;
|
|
1179
|
-
|
|
1180
778
|
export declare const KeyValuePairFilterSensitiveLog: (obj: KeyValuePair) => any;
|
|
1181
|
-
|
|
1182
779
|
export declare const FargatePlatformConfigurationFilterSensitiveLog: (
|
|
1183
780
|
obj: FargatePlatformConfiguration
|
|
1184
781
|
) => any;
|
|
1185
|
-
|
|
1186
782
|
export declare const DeviceFilterSensitiveLog: (obj: Device) => any;
|
|
1187
|
-
|
|
1188
783
|
export declare const TmpfsFilterSensitiveLog: (obj: Tmpfs) => any;
|
|
1189
|
-
|
|
1190
784
|
export declare const LinuxParametersFilterSensitiveLog: (
|
|
1191
785
|
obj: LinuxParameters
|
|
1192
786
|
) => any;
|
|
1193
|
-
|
|
1194
787
|
export declare const SecretFilterSensitiveLog: (obj: Secret) => any;
|
|
1195
|
-
|
|
1196
788
|
export declare const LogConfigurationFilterSensitiveLog: (
|
|
1197
789
|
obj: LogConfiguration
|
|
1198
790
|
) => any;
|
|
1199
|
-
|
|
1200
791
|
export declare const MountPointFilterSensitiveLog: (obj: MountPoint) => any;
|
|
1201
|
-
|
|
1202
792
|
export declare const NetworkConfigurationFilterSensitiveLog: (
|
|
1203
793
|
obj: NetworkConfiguration
|
|
1204
794
|
) => any;
|
|
1205
|
-
|
|
1206
795
|
export declare const ResourceRequirementFilterSensitiveLog: (
|
|
1207
796
|
obj: ResourceRequirement
|
|
1208
797
|
) => any;
|
|
1209
|
-
|
|
1210
798
|
export declare const UlimitFilterSensitiveLog: (obj: Ulimit) => any;
|
|
1211
|
-
|
|
1212
799
|
export declare const EFSAuthorizationConfigFilterSensitiveLog: (
|
|
1213
800
|
obj: EFSAuthorizationConfig
|
|
1214
801
|
) => any;
|
|
1215
|
-
|
|
1216
802
|
export declare const EFSVolumeConfigurationFilterSensitiveLog: (
|
|
1217
803
|
obj: EFSVolumeConfiguration
|
|
1218
804
|
) => any;
|
|
1219
|
-
|
|
1220
805
|
export declare const HostFilterSensitiveLog: (obj: Host) => any;
|
|
1221
|
-
|
|
1222
806
|
export declare const VolumeFilterSensitiveLog: (obj: Volume) => any;
|
|
1223
|
-
|
|
1224
807
|
export declare const ContainerPropertiesFilterSensitiveLog: (
|
|
1225
808
|
obj: ContainerProperties
|
|
1226
809
|
) => any;
|
|
1227
|
-
|
|
1228
810
|
export declare const NodeRangePropertyFilterSensitiveLog: (
|
|
1229
811
|
obj: NodeRangeProperty
|
|
1230
812
|
) => any;
|
|
1231
|
-
|
|
1232
813
|
export declare const NodePropertiesFilterSensitiveLog: (
|
|
1233
814
|
obj: NodeProperties
|
|
1234
815
|
) => any;
|
|
1235
|
-
|
|
1236
816
|
export declare const EvaluateOnExitFilterSensitiveLog: (
|
|
1237
817
|
obj: EvaluateOnExit
|
|
1238
818
|
) => any;
|
|
1239
|
-
|
|
1240
819
|
export declare const RetryStrategyFilterSensitiveLog: (
|
|
1241
820
|
obj: RetryStrategy
|
|
1242
821
|
) => any;
|
|
1243
|
-
|
|
1244
822
|
export declare const JobTimeoutFilterSensitiveLog: (obj: JobTimeout) => any;
|
|
1245
|
-
|
|
1246
823
|
export declare const JobDefinitionFilterSensitiveLog: (
|
|
1247
824
|
obj: JobDefinition
|
|
1248
825
|
) => any;
|
|
1249
|
-
|
|
1250
826
|
export declare const DescribeJobDefinitionsResponseFilterSensitiveLog: (
|
|
1251
827
|
obj: DescribeJobDefinitionsResponse
|
|
1252
828
|
) => any;
|
|
1253
|
-
|
|
1254
829
|
export declare const DescribeJobQueuesRequestFilterSensitiveLog: (
|
|
1255
830
|
obj: DescribeJobQueuesRequest
|
|
1256
831
|
) => any;
|
|
1257
|
-
|
|
1258
832
|
export declare const JobQueueDetailFilterSensitiveLog: (
|
|
1259
833
|
obj: JobQueueDetail
|
|
1260
834
|
) => any;
|
|
1261
|
-
|
|
1262
835
|
export declare const DescribeJobQueuesResponseFilterSensitiveLog: (
|
|
1263
836
|
obj: DescribeJobQueuesResponse
|
|
1264
837
|
) => any;
|
|
1265
|
-
|
|
1266
838
|
export declare const DescribeJobsRequestFilterSensitiveLog: (
|
|
1267
839
|
obj: DescribeJobsRequest
|
|
1268
840
|
) => any;
|
|
1269
|
-
|
|
1270
841
|
export declare const ContainerDetailFilterSensitiveLog: (
|
|
1271
842
|
obj: ContainerDetail
|
|
1272
843
|
) => any;
|
|
1273
|
-
|
|
1274
844
|
export declare const JobDependencyFilterSensitiveLog: (
|
|
1275
845
|
obj: JobDependency
|
|
1276
846
|
) => any;
|
|
1277
|
-
|
|
1278
847
|
export declare const NodeDetailsFilterSensitiveLog: (obj: NodeDetails) => any;
|
|
1279
|
-
|
|
1280
848
|
export declare const JobDetailFilterSensitiveLog: (obj: JobDetail) => any;
|
|
1281
|
-
|
|
1282
849
|
export declare const DescribeJobsResponseFilterSensitiveLog: (
|
|
1283
850
|
obj: DescribeJobsResponse
|
|
1284
851
|
) => any;
|
|
1285
|
-
|
|
1286
852
|
export declare const DescribeSchedulingPoliciesRequestFilterSensitiveLog: (
|
|
1287
853
|
obj: DescribeSchedulingPoliciesRequest
|
|
1288
854
|
) => any;
|
|
1289
|
-
|
|
1290
855
|
export declare const SchedulingPolicyDetailFilterSensitiveLog: (
|
|
1291
856
|
obj: SchedulingPolicyDetail
|
|
1292
857
|
) => any;
|
|
1293
|
-
|
|
1294
858
|
export declare const DescribeSchedulingPoliciesResponseFilterSensitiveLog: (
|
|
1295
859
|
obj: DescribeSchedulingPoliciesResponse
|
|
1296
860
|
) => any;
|
|
1297
|
-
|
|
1298
861
|
export declare const KeyValuesPairFilterSensitiveLog: (
|
|
1299
862
|
obj: KeyValuesPair
|
|
1300
863
|
) => any;
|
|
1301
|
-
|
|
1302
864
|
export declare const ListJobsRequestFilterSensitiveLog: (
|
|
1303
865
|
obj: ListJobsRequest
|
|
1304
866
|
) => any;
|
|
1305
|
-
|
|
1306
867
|
export declare const ContainerSummaryFilterSensitiveLog: (
|
|
1307
868
|
obj: ContainerSummary
|
|
1308
869
|
) => any;
|
|
1309
|
-
|
|
1310
870
|
export declare const NodePropertiesSummaryFilterSensitiveLog: (
|
|
1311
871
|
obj: NodePropertiesSummary
|
|
1312
872
|
) => any;
|
|
1313
|
-
|
|
1314
873
|
export declare const JobSummaryFilterSensitiveLog: (obj: JobSummary) => any;
|
|
1315
|
-
|
|
1316
874
|
export declare const ListJobsResponseFilterSensitiveLog: (
|
|
1317
875
|
obj: ListJobsResponse
|
|
1318
876
|
) => any;
|
|
1319
|
-
|
|
1320
877
|
export declare const ListSchedulingPoliciesRequestFilterSensitiveLog: (
|
|
1321
878
|
obj: ListSchedulingPoliciesRequest
|
|
1322
879
|
) => any;
|
|
1323
|
-
|
|
1324
880
|
export declare const SchedulingPolicyListingDetailFilterSensitiveLog: (
|
|
1325
881
|
obj: SchedulingPolicyListingDetail
|
|
1326
882
|
) => any;
|
|
1327
|
-
|
|
1328
883
|
export declare const ListSchedulingPoliciesResponseFilterSensitiveLog: (
|
|
1329
884
|
obj: ListSchedulingPoliciesResponse
|
|
1330
885
|
) => any;
|
|
1331
|
-
|
|
1332
886
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1333
887
|
obj: ListTagsForResourceRequest
|
|
1334
888
|
) => any;
|
|
1335
|
-
|
|
1336
889
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1337
890
|
obj: ListTagsForResourceResponse
|
|
1338
891
|
) => any;
|
|
1339
|
-
|
|
1340
892
|
export declare const RegisterJobDefinitionRequestFilterSensitiveLog: (
|
|
1341
893
|
obj: RegisterJobDefinitionRequest
|
|
1342
894
|
) => any;
|
|
1343
|
-
|
|
1344
895
|
export declare const RegisterJobDefinitionResponseFilterSensitiveLog: (
|
|
1345
896
|
obj: RegisterJobDefinitionResponse
|
|
1346
897
|
) => any;
|
|
1347
|
-
|
|
1348
898
|
export declare const ContainerOverridesFilterSensitiveLog: (
|
|
1349
899
|
obj: ContainerOverrides
|
|
1350
900
|
) => any;
|
|
1351
|
-
|
|
1352
901
|
export declare const NodePropertyOverrideFilterSensitiveLog: (
|
|
1353
902
|
obj: NodePropertyOverride
|
|
1354
903
|
) => any;
|
|
1355
|
-
|
|
1356
904
|
export declare const NodeOverridesFilterSensitiveLog: (
|
|
1357
905
|
obj: NodeOverrides
|
|
1358
906
|
) => any;
|
|
1359
|
-
|
|
1360
907
|
export declare const SubmitJobRequestFilterSensitiveLog: (
|
|
1361
908
|
obj: SubmitJobRequest
|
|
1362
909
|
) => any;
|
|
1363
|
-
|
|
1364
910
|
export declare const SubmitJobResponseFilterSensitiveLog: (
|
|
1365
911
|
obj: SubmitJobResponse
|
|
1366
912
|
) => any;
|
|
1367
|
-
|
|
1368
913
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1369
914
|
obj: TagResourceRequest
|
|
1370
915
|
) => any;
|
|
1371
|
-
|
|
1372
916
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1373
917
|
obj: TagResourceResponse
|
|
1374
918
|
) => any;
|
|
1375
|
-
|
|
1376
919
|
export declare const TerminateJobRequestFilterSensitiveLog: (
|
|
1377
920
|
obj: TerminateJobRequest
|
|
1378
921
|
) => any;
|
|
1379
|
-
|
|
1380
922
|
export declare const TerminateJobResponseFilterSensitiveLog: (
|
|
1381
923
|
obj: TerminateJobResponse
|
|
1382
924
|
) => any;
|
|
1383
|
-
|
|
1384
925
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1385
926
|
obj: UntagResourceRequest
|
|
1386
927
|
) => any;
|
|
1387
|
-
|
|
1388
928
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1389
929
|
obj: UntagResourceResponse
|
|
1390
930
|
) => any;
|
|
1391
|
-
|
|
1392
931
|
export declare const ComputeResourceUpdateFilterSensitiveLog: (
|
|
1393
932
|
obj: ComputeResourceUpdate
|
|
1394
933
|
) => any;
|
|
1395
|
-
|
|
1396
934
|
export declare const UpdateComputeEnvironmentRequestFilterSensitiveLog: (
|
|
1397
935
|
obj: UpdateComputeEnvironmentRequest
|
|
1398
936
|
) => any;
|
|
1399
|
-
|
|
1400
937
|
export declare const UpdateComputeEnvironmentResponseFilterSensitiveLog: (
|
|
1401
938
|
obj: UpdateComputeEnvironmentResponse
|
|
1402
939
|
) => any;
|
|
1403
|
-
|
|
1404
940
|
export declare const UpdateJobQueueRequestFilterSensitiveLog: (
|
|
1405
941
|
obj: UpdateJobQueueRequest
|
|
1406
942
|
) => any;
|
|
1407
|
-
|
|
1408
943
|
export declare const UpdateJobQueueResponseFilterSensitiveLog: (
|
|
1409
944
|
obj: UpdateJobQueueResponse
|
|
1410
945
|
) => any;
|
|
1411
|
-
|
|
1412
946
|
export declare const UpdateSchedulingPolicyRequestFilterSensitiveLog: (
|
|
1413
947
|
obj: UpdateSchedulingPolicyRequest
|
|
1414
948
|
) => any;
|
|
1415
|
-
|
|
1416
949
|
export declare const UpdateSchedulingPolicyResponseFilterSensitiveLog: (
|
|
1417
950
|
obj: UpdateSchedulingPolicyResponse
|
|
1418
951
|
) => any;
|