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