@aws-sdk/client-ecs 3.686.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -35,11 +35,11 @@ export declare const ManagedScalingStatus: {
|
|
|
35
35
|
export type ManagedScalingStatus =
|
|
36
36
|
(typeof ManagedScalingStatus)[keyof typeof ManagedScalingStatus];
|
|
37
37
|
export interface ManagedScaling {
|
|
38
|
-
status?: ManagedScalingStatus;
|
|
39
|
-
targetCapacity?: number;
|
|
40
|
-
minimumScalingStepSize?: number;
|
|
41
|
-
maximumScalingStepSize?: number;
|
|
42
|
-
instanceWarmupPeriod?: number;
|
|
38
|
+
status?: ManagedScalingStatus | undefined;
|
|
39
|
+
targetCapacity?: number | undefined;
|
|
40
|
+
minimumScalingStepSize?: number | undefined;
|
|
41
|
+
maximumScalingStepSize?: number | undefined;
|
|
42
|
+
instanceWarmupPeriod?: number | undefined;
|
|
43
43
|
}
|
|
44
44
|
export declare const ManagedTerminationProtection: {
|
|
45
45
|
readonly DISABLED: "DISABLED";
|
|
@@ -49,18 +49,18 @@ export type ManagedTerminationProtection =
|
|
|
49
49
|
(typeof ManagedTerminationProtection)[keyof typeof ManagedTerminationProtection];
|
|
50
50
|
export interface AutoScalingGroupProvider {
|
|
51
51
|
autoScalingGroupArn: string | undefined;
|
|
52
|
-
managedScaling?: ManagedScaling;
|
|
53
|
-
managedTerminationProtection?: ManagedTerminationProtection;
|
|
54
|
-
managedDraining?: ManagedDraining;
|
|
52
|
+
managedScaling?: ManagedScaling | undefined;
|
|
53
|
+
managedTerminationProtection?: ManagedTerminationProtection | undefined;
|
|
54
|
+
managedDraining?: ManagedDraining | undefined;
|
|
55
55
|
}
|
|
56
56
|
export interface Tag {
|
|
57
|
-
key?: string;
|
|
58
|
-
value?: string;
|
|
57
|
+
key?: string | undefined;
|
|
58
|
+
value?: string | undefined;
|
|
59
59
|
}
|
|
60
60
|
export interface CreateCapacityProviderRequest {
|
|
61
61
|
name: string | undefined;
|
|
62
62
|
autoScalingGroupProvider: AutoScalingGroupProvider | undefined;
|
|
63
|
-
tags?: Tag[];
|
|
63
|
+
tags?: Tag[] | undefined;
|
|
64
64
|
}
|
|
65
65
|
export declare const CapacityProviderStatus: {
|
|
66
66
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -79,16 +79,16 @@ export declare const CapacityProviderUpdateStatus: {
|
|
|
79
79
|
export type CapacityProviderUpdateStatus =
|
|
80
80
|
(typeof CapacityProviderUpdateStatus)[keyof typeof CapacityProviderUpdateStatus];
|
|
81
81
|
export interface CapacityProvider {
|
|
82
|
-
capacityProviderArn?: string;
|
|
83
|
-
name?: string;
|
|
84
|
-
status?: CapacityProviderStatus;
|
|
85
|
-
autoScalingGroupProvider?: AutoScalingGroupProvider;
|
|
86
|
-
updateStatus?: CapacityProviderUpdateStatus;
|
|
87
|
-
updateStatusReason?: string;
|
|
88
|
-
tags?: Tag[];
|
|
82
|
+
capacityProviderArn?: string | undefined;
|
|
83
|
+
name?: string | undefined;
|
|
84
|
+
status?: CapacityProviderStatus | undefined;
|
|
85
|
+
autoScalingGroupProvider?: AutoScalingGroupProvider | undefined;
|
|
86
|
+
updateStatus?: CapacityProviderUpdateStatus | undefined;
|
|
87
|
+
updateStatusReason?: string | undefined;
|
|
88
|
+
tags?: Tag[] | undefined;
|
|
89
89
|
}
|
|
90
90
|
export interface CreateCapacityProviderResponse {
|
|
91
|
-
capacityProvider?: CapacityProvider;
|
|
91
|
+
capacityProvider?: CapacityProvider | undefined;
|
|
92
92
|
}
|
|
93
93
|
export declare class InvalidParameterException extends __BaseException {
|
|
94
94
|
readonly name: "InvalidParameterException";
|
|
@@ -117,11 +117,11 @@ export declare class UpdateInProgressException extends __BaseException {
|
|
|
117
117
|
);
|
|
118
118
|
}
|
|
119
119
|
export interface ExecuteCommandLogConfiguration {
|
|
120
|
-
cloudWatchLogGroupName?: string;
|
|
121
|
-
cloudWatchEncryptionEnabled?: boolean;
|
|
122
|
-
s3BucketName?: string;
|
|
123
|
-
s3EncryptionEnabled?: boolean;
|
|
124
|
-
s3KeyPrefix?: string;
|
|
120
|
+
cloudWatchLogGroupName?: string | undefined;
|
|
121
|
+
cloudWatchEncryptionEnabled?: boolean | undefined;
|
|
122
|
+
s3BucketName?: string | undefined;
|
|
123
|
+
s3EncryptionEnabled?: boolean | undefined;
|
|
124
|
+
s3KeyPrefix?: string | undefined;
|
|
125
125
|
}
|
|
126
126
|
export declare const ExecuteCommandLogging: {
|
|
127
127
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -131,22 +131,22 @@ export declare const ExecuteCommandLogging: {
|
|
|
131
131
|
export type ExecuteCommandLogging =
|
|
132
132
|
(typeof ExecuteCommandLogging)[keyof typeof ExecuteCommandLogging];
|
|
133
133
|
export interface ExecuteCommandConfiguration {
|
|
134
|
-
kmsKeyId?: string;
|
|
135
|
-
logging?: ExecuteCommandLogging;
|
|
136
|
-
logConfiguration?: ExecuteCommandLogConfiguration;
|
|
134
|
+
kmsKeyId?: string | undefined;
|
|
135
|
+
logging?: ExecuteCommandLogging | undefined;
|
|
136
|
+
logConfiguration?: ExecuteCommandLogConfiguration | undefined;
|
|
137
137
|
}
|
|
138
138
|
export interface ManagedStorageConfiguration {
|
|
139
|
-
kmsKeyId?: string;
|
|
140
|
-
fargateEphemeralStorageKmsKeyId?: string;
|
|
139
|
+
kmsKeyId?: string | undefined;
|
|
140
|
+
fargateEphemeralStorageKmsKeyId?: string | undefined;
|
|
141
141
|
}
|
|
142
142
|
export interface ClusterConfiguration {
|
|
143
|
-
executeCommandConfiguration?: ExecuteCommandConfiguration;
|
|
144
|
-
managedStorageConfiguration?: ManagedStorageConfiguration;
|
|
143
|
+
executeCommandConfiguration?: ExecuteCommandConfiguration | undefined;
|
|
144
|
+
managedStorageConfiguration?: ManagedStorageConfiguration | undefined;
|
|
145
145
|
}
|
|
146
146
|
export interface CapacityProviderStrategyItem {
|
|
147
147
|
capacityProvider: string | undefined;
|
|
148
|
-
weight?: number;
|
|
149
|
-
base?: number;
|
|
148
|
+
weight?: number | undefined;
|
|
149
|
+
base?: number | undefined;
|
|
150
150
|
}
|
|
151
151
|
export interface ClusterServiceConnectDefaultsRequest {
|
|
152
152
|
namespace: string | undefined;
|
|
@@ -157,51 +157,51 @@ export declare const ClusterSettingName: {
|
|
|
157
157
|
export type ClusterSettingName =
|
|
158
158
|
(typeof ClusterSettingName)[keyof typeof ClusterSettingName];
|
|
159
159
|
export interface ClusterSetting {
|
|
160
|
-
name?: ClusterSettingName;
|
|
161
|
-
value?: string;
|
|
160
|
+
name?: ClusterSettingName | undefined;
|
|
161
|
+
value?: string | undefined;
|
|
162
162
|
}
|
|
163
163
|
export interface CreateClusterRequest {
|
|
164
|
-
clusterName?: string;
|
|
165
|
-
tags?: Tag[];
|
|
166
|
-
settings?: ClusterSetting[];
|
|
167
|
-
configuration?: ClusterConfiguration;
|
|
168
|
-
capacityProviders?: string[];
|
|
169
|
-
defaultCapacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
170
|
-
serviceConnectDefaults?: ClusterServiceConnectDefaultsRequest;
|
|
164
|
+
clusterName?: string | undefined;
|
|
165
|
+
tags?: Tag[] | undefined;
|
|
166
|
+
settings?: ClusterSetting[] | undefined;
|
|
167
|
+
configuration?: ClusterConfiguration | undefined;
|
|
168
|
+
capacityProviders?: string[] | undefined;
|
|
169
|
+
defaultCapacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
170
|
+
serviceConnectDefaults?: ClusterServiceConnectDefaultsRequest | undefined;
|
|
171
171
|
}
|
|
172
172
|
export interface KeyValuePair {
|
|
173
|
-
name?: string;
|
|
174
|
-
value?: string;
|
|
173
|
+
name?: string | undefined;
|
|
174
|
+
value?: string | undefined;
|
|
175
175
|
}
|
|
176
176
|
export interface Attachment {
|
|
177
|
-
id?: string;
|
|
178
|
-
type?: string;
|
|
179
|
-
status?: string;
|
|
180
|
-
details?: KeyValuePair[];
|
|
177
|
+
id?: string | undefined;
|
|
178
|
+
type?: string | undefined;
|
|
179
|
+
status?: string | undefined;
|
|
180
|
+
details?: KeyValuePair[] | undefined;
|
|
181
181
|
}
|
|
182
182
|
export interface ClusterServiceConnectDefaults {
|
|
183
|
-
namespace?: string;
|
|
183
|
+
namespace?: string | undefined;
|
|
184
184
|
}
|
|
185
185
|
export interface Cluster {
|
|
186
|
-
clusterArn?: string;
|
|
187
|
-
clusterName?: string;
|
|
188
|
-
configuration?: ClusterConfiguration;
|
|
189
|
-
status?: string;
|
|
190
|
-
registeredContainerInstancesCount?: number;
|
|
191
|
-
runningTasksCount?: number;
|
|
192
|
-
pendingTasksCount?: number;
|
|
193
|
-
activeServicesCount?: number;
|
|
194
|
-
statistics?: KeyValuePair[];
|
|
195
|
-
tags?: Tag[];
|
|
196
|
-
settings?: ClusterSetting[];
|
|
197
|
-
capacityProviders?: string[];
|
|
198
|
-
defaultCapacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
199
|
-
attachments?: Attachment[];
|
|
200
|
-
attachmentsStatus?: string;
|
|
201
|
-
serviceConnectDefaults?: ClusterServiceConnectDefaults;
|
|
186
|
+
clusterArn?: string | undefined;
|
|
187
|
+
clusterName?: string | undefined;
|
|
188
|
+
configuration?: ClusterConfiguration | undefined;
|
|
189
|
+
status?: string | undefined;
|
|
190
|
+
registeredContainerInstancesCount?: number | undefined;
|
|
191
|
+
runningTasksCount?: number | undefined;
|
|
192
|
+
pendingTasksCount?: number | undefined;
|
|
193
|
+
activeServicesCount?: number | undefined;
|
|
194
|
+
statistics?: KeyValuePair[] | undefined;
|
|
195
|
+
tags?: Tag[] | undefined;
|
|
196
|
+
settings?: ClusterSetting[] | undefined;
|
|
197
|
+
capacityProviders?: string[] | undefined;
|
|
198
|
+
defaultCapacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
199
|
+
attachments?: Attachment[] | undefined;
|
|
200
|
+
attachmentsStatus?: string | undefined;
|
|
201
|
+
serviceConnectDefaults?: ClusterServiceConnectDefaults | undefined;
|
|
202
202
|
}
|
|
203
203
|
export interface CreateClusterResponse {
|
|
204
|
-
cluster?: Cluster;
|
|
204
|
+
cluster?: Cluster | undefined;
|
|
205
205
|
}
|
|
206
206
|
export declare class NamespaceNotFoundException extends __BaseException {
|
|
207
207
|
readonly name: "NamespaceNotFoundException";
|
|
@@ -227,10 +227,10 @@ export interface DeploymentCircuitBreaker {
|
|
|
227
227
|
rollback: boolean | undefined;
|
|
228
228
|
}
|
|
229
229
|
export interface DeploymentConfiguration {
|
|
230
|
-
deploymentCircuitBreaker?: DeploymentCircuitBreaker;
|
|
231
|
-
maximumPercent?: number;
|
|
232
|
-
minimumHealthyPercent?: number;
|
|
233
|
-
alarms?: DeploymentAlarms;
|
|
230
|
+
deploymentCircuitBreaker?: DeploymentCircuitBreaker | undefined;
|
|
231
|
+
maximumPercent?: number | undefined;
|
|
232
|
+
minimumHealthyPercent?: number | undefined;
|
|
233
|
+
alarms?: DeploymentAlarms | undefined;
|
|
234
234
|
}
|
|
235
235
|
export declare const DeploymentControllerType: {
|
|
236
236
|
readonly CODE_DEPLOY: "CODE_DEPLOY";
|
|
@@ -249,10 +249,10 @@ export declare const LaunchType: {
|
|
|
249
249
|
};
|
|
250
250
|
export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
|
|
251
251
|
export interface LoadBalancer {
|
|
252
|
-
targetGroupArn?: string;
|
|
253
|
-
loadBalancerName?: string;
|
|
254
|
-
containerName?: string;
|
|
255
|
-
containerPort?: number;
|
|
252
|
+
targetGroupArn?: string | undefined;
|
|
253
|
+
loadBalancerName?: string | undefined;
|
|
254
|
+
containerName?: string | undefined;
|
|
255
|
+
containerPort?: number | undefined;
|
|
256
256
|
}
|
|
257
257
|
export declare const AssignPublicIp: {
|
|
258
258
|
readonly DISABLED: "DISABLED";
|
|
@@ -262,11 +262,11 @@ export type AssignPublicIp =
|
|
|
262
262
|
(typeof AssignPublicIp)[keyof typeof AssignPublicIp];
|
|
263
263
|
export interface AwsVpcConfiguration {
|
|
264
264
|
subnets: string[] | undefined;
|
|
265
|
-
securityGroups?: string[];
|
|
266
|
-
assignPublicIp?: AssignPublicIp;
|
|
265
|
+
securityGroups?: string[] | undefined;
|
|
266
|
+
assignPublicIp?: AssignPublicIp | undefined;
|
|
267
267
|
}
|
|
268
268
|
export interface NetworkConfiguration {
|
|
269
|
-
awsvpcConfiguration?: AwsVpcConfiguration;
|
|
269
|
+
awsvpcConfiguration?: AwsVpcConfiguration | undefined;
|
|
270
270
|
}
|
|
271
271
|
export declare const PlacementConstraintType: {
|
|
272
272
|
readonly DISTINCT_INSTANCE: "distinctInstance";
|
|
@@ -275,8 +275,8 @@ export declare const PlacementConstraintType: {
|
|
|
275
275
|
export type PlacementConstraintType =
|
|
276
276
|
(typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
|
|
277
277
|
export interface PlacementConstraint {
|
|
278
|
-
type?: PlacementConstraintType;
|
|
279
|
-
expression?: string;
|
|
278
|
+
type?: PlacementConstraintType | undefined;
|
|
279
|
+
expression?: string | undefined;
|
|
280
280
|
}
|
|
281
281
|
export declare const PlacementStrategyType: {
|
|
282
282
|
readonly BINPACK: "binpack";
|
|
@@ -286,8 +286,8 @@ export declare const PlacementStrategyType: {
|
|
|
286
286
|
export type PlacementStrategyType =
|
|
287
287
|
(typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
|
|
288
288
|
export interface PlacementStrategy {
|
|
289
|
-
type?: PlacementStrategyType;
|
|
290
|
-
field?: string;
|
|
289
|
+
type?: PlacementStrategyType | undefined;
|
|
290
|
+
field?: string | undefined;
|
|
291
291
|
}
|
|
292
292
|
export declare const PropagateTags: {
|
|
293
293
|
readonly NONE: "NONE";
|
|
@@ -318,44 +318,44 @@ export interface Secret {
|
|
|
318
318
|
}
|
|
319
319
|
export interface LogConfiguration {
|
|
320
320
|
logDriver: LogDriver | undefined;
|
|
321
|
-
options?: Record<string, string
|
|
322
|
-
secretOptions?: Secret[];
|
|
321
|
+
options?: Record<string, string> | undefined;
|
|
322
|
+
secretOptions?: Secret[] | undefined;
|
|
323
323
|
}
|
|
324
324
|
export interface ServiceConnectClientAlias {
|
|
325
325
|
port: number | undefined;
|
|
326
|
-
dnsName?: string;
|
|
326
|
+
dnsName?: string | undefined;
|
|
327
327
|
}
|
|
328
328
|
export interface TimeoutConfiguration {
|
|
329
|
-
idleTimeoutSeconds?: number;
|
|
330
|
-
perRequestTimeoutSeconds?: number;
|
|
329
|
+
idleTimeoutSeconds?: number | undefined;
|
|
330
|
+
perRequestTimeoutSeconds?: number | undefined;
|
|
331
331
|
}
|
|
332
332
|
export interface ServiceConnectTlsCertificateAuthority {
|
|
333
|
-
awsPcaAuthorityArn?: string;
|
|
333
|
+
awsPcaAuthorityArn?: string | undefined;
|
|
334
334
|
}
|
|
335
335
|
export interface ServiceConnectTlsConfiguration {
|
|
336
336
|
issuerCertificateAuthority: ServiceConnectTlsCertificateAuthority | undefined;
|
|
337
|
-
kmsKey?: string;
|
|
338
|
-
roleArn?: string;
|
|
337
|
+
kmsKey?: string | undefined;
|
|
338
|
+
roleArn?: string | undefined;
|
|
339
339
|
}
|
|
340
340
|
export interface ServiceConnectService {
|
|
341
341
|
portName: string | undefined;
|
|
342
|
-
discoveryName?: string;
|
|
343
|
-
clientAliases?: ServiceConnectClientAlias[];
|
|
344
|
-
ingressPortOverride?: number;
|
|
345
|
-
timeout?: TimeoutConfiguration;
|
|
346
|
-
tls?: ServiceConnectTlsConfiguration;
|
|
342
|
+
discoveryName?: string | undefined;
|
|
343
|
+
clientAliases?: ServiceConnectClientAlias[] | undefined;
|
|
344
|
+
ingressPortOverride?: number | undefined;
|
|
345
|
+
timeout?: TimeoutConfiguration | undefined;
|
|
346
|
+
tls?: ServiceConnectTlsConfiguration | undefined;
|
|
347
347
|
}
|
|
348
348
|
export interface ServiceConnectConfiguration {
|
|
349
349
|
enabled: boolean | undefined;
|
|
350
|
-
namespace?: string;
|
|
351
|
-
services?: ServiceConnectService[];
|
|
352
|
-
logConfiguration?: LogConfiguration;
|
|
350
|
+
namespace?: string | undefined;
|
|
351
|
+
services?: ServiceConnectService[] | undefined;
|
|
352
|
+
logConfiguration?: LogConfiguration | undefined;
|
|
353
353
|
}
|
|
354
354
|
export interface ServiceRegistry {
|
|
355
|
-
registryArn?: string;
|
|
356
|
-
port?: number;
|
|
357
|
-
containerName?: string;
|
|
358
|
-
containerPort?: number;
|
|
355
|
+
registryArn?: string | undefined;
|
|
356
|
+
port?: number | undefined;
|
|
357
|
+
containerName?: string | undefined;
|
|
358
|
+
containerPort?: number | undefined;
|
|
359
359
|
}
|
|
360
360
|
export declare const TaskFilesystemType: {
|
|
361
361
|
readonly EXT3: "ext3";
|
|
@@ -372,53 +372,53 @@ export type EBSResourceType =
|
|
|
372
372
|
(typeof EBSResourceType)[keyof typeof EBSResourceType];
|
|
373
373
|
export interface EBSTagSpecification {
|
|
374
374
|
resourceType: EBSResourceType | undefined;
|
|
375
|
-
tags?: Tag[];
|
|
376
|
-
propagateTags?: PropagateTags;
|
|
375
|
+
tags?: Tag[] | undefined;
|
|
376
|
+
propagateTags?: PropagateTags | undefined;
|
|
377
377
|
}
|
|
378
378
|
export interface ServiceManagedEBSVolumeConfiguration {
|
|
379
|
-
encrypted?: boolean;
|
|
380
|
-
kmsKeyId?: string;
|
|
381
|
-
volumeType?: string;
|
|
382
|
-
sizeInGiB?: number;
|
|
383
|
-
snapshotId?: string;
|
|
384
|
-
iops?: number;
|
|
385
|
-
throughput?: number;
|
|
386
|
-
tagSpecifications?: EBSTagSpecification[];
|
|
379
|
+
encrypted?: boolean | undefined;
|
|
380
|
+
kmsKeyId?: string | undefined;
|
|
381
|
+
volumeType?: string | undefined;
|
|
382
|
+
sizeInGiB?: number | undefined;
|
|
383
|
+
snapshotId?: string | undefined;
|
|
384
|
+
iops?: number | undefined;
|
|
385
|
+
throughput?: number | undefined;
|
|
386
|
+
tagSpecifications?: EBSTagSpecification[] | undefined;
|
|
387
387
|
roleArn: string | undefined;
|
|
388
|
-
filesystemType?: TaskFilesystemType;
|
|
388
|
+
filesystemType?: TaskFilesystemType | undefined;
|
|
389
389
|
}
|
|
390
390
|
export interface ServiceVolumeConfiguration {
|
|
391
391
|
name: string | undefined;
|
|
392
|
-
managedEBSVolume?: ServiceManagedEBSVolumeConfiguration;
|
|
392
|
+
managedEBSVolume?: ServiceManagedEBSVolumeConfiguration | undefined;
|
|
393
393
|
}
|
|
394
394
|
export interface CreateServiceRequest {
|
|
395
|
-
cluster?: string;
|
|
395
|
+
cluster?: string | undefined;
|
|
396
396
|
serviceName: string | undefined;
|
|
397
|
-
taskDefinition?: string;
|
|
398
|
-
loadBalancers?: LoadBalancer[];
|
|
399
|
-
serviceRegistries?: ServiceRegistry[];
|
|
400
|
-
desiredCount?: number;
|
|
401
|
-
clientToken?: string;
|
|
402
|
-
launchType?: LaunchType;
|
|
403
|
-
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
404
|
-
platformVersion?: string;
|
|
405
|
-
role?: string;
|
|
406
|
-
deploymentConfiguration?: DeploymentConfiguration;
|
|
407
|
-
placementConstraints?: PlacementConstraint[];
|
|
408
|
-
placementStrategy?: PlacementStrategy[];
|
|
409
|
-
networkConfiguration?: NetworkConfiguration;
|
|
410
|
-
healthCheckGracePeriodSeconds?: number;
|
|
411
|
-
schedulingStrategy?: SchedulingStrategy;
|
|
412
|
-
deploymentController?: DeploymentController;
|
|
413
|
-
tags?: Tag[];
|
|
414
|
-
enableECSManagedTags?: boolean;
|
|
415
|
-
propagateTags?: PropagateTags;
|
|
416
|
-
enableExecuteCommand?: boolean;
|
|
417
|
-
serviceConnectConfiguration?: ServiceConnectConfiguration;
|
|
418
|
-
volumeConfigurations?: ServiceVolumeConfiguration[];
|
|
397
|
+
taskDefinition?: string | undefined;
|
|
398
|
+
loadBalancers?: LoadBalancer[] | undefined;
|
|
399
|
+
serviceRegistries?: ServiceRegistry[] | undefined;
|
|
400
|
+
desiredCount?: number | undefined;
|
|
401
|
+
clientToken?: string | undefined;
|
|
402
|
+
launchType?: LaunchType | undefined;
|
|
403
|
+
capacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
404
|
+
platformVersion?: string | undefined;
|
|
405
|
+
role?: string | undefined;
|
|
406
|
+
deploymentConfiguration?: DeploymentConfiguration | undefined;
|
|
407
|
+
placementConstraints?: PlacementConstraint[] | undefined;
|
|
408
|
+
placementStrategy?: PlacementStrategy[] | undefined;
|
|
409
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
410
|
+
healthCheckGracePeriodSeconds?: number | undefined;
|
|
411
|
+
schedulingStrategy?: SchedulingStrategy | undefined;
|
|
412
|
+
deploymentController?: DeploymentController | undefined;
|
|
413
|
+
tags?: Tag[] | undefined;
|
|
414
|
+
enableECSManagedTags?: boolean | undefined;
|
|
415
|
+
propagateTags?: PropagateTags | undefined;
|
|
416
|
+
enableExecuteCommand?: boolean | undefined;
|
|
417
|
+
serviceConnectConfiguration?: ServiceConnectConfiguration | undefined;
|
|
418
|
+
volumeConfigurations?: ServiceVolumeConfiguration[] | undefined;
|
|
419
419
|
}
|
|
420
420
|
export interface DeploymentEphemeralStorage {
|
|
421
|
-
kmsKeyId?: string;
|
|
421
|
+
kmsKeyId?: string | undefined;
|
|
422
422
|
}
|
|
423
423
|
export declare const DeploymentRolloutState: {
|
|
424
424
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -428,43 +428,43 @@ export declare const DeploymentRolloutState: {
|
|
|
428
428
|
export type DeploymentRolloutState =
|
|
429
429
|
(typeof DeploymentRolloutState)[keyof typeof DeploymentRolloutState];
|
|
430
430
|
export interface ServiceConnectServiceResource {
|
|
431
|
-
discoveryName?: string;
|
|
432
|
-
discoveryArn?: string;
|
|
431
|
+
discoveryName?: string | undefined;
|
|
432
|
+
discoveryArn?: string | undefined;
|
|
433
433
|
}
|
|
434
434
|
export interface Deployment {
|
|
435
|
-
id?: string;
|
|
436
|
-
status?: string;
|
|
437
|
-
taskDefinition?: string;
|
|
438
|
-
desiredCount?: number;
|
|
439
|
-
pendingCount?: number;
|
|
440
|
-
runningCount?: number;
|
|
441
|
-
failedTasks?: number;
|
|
442
|
-
createdAt?: Date;
|
|
443
|
-
updatedAt?: Date;
|
|
444
|
-
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
445
|
-
launchType?: LaunchType;
|
|
446
|
-
platformVersion?: string;
|
|
447
|
-
platformFamily?: string;
|
|
448
|
-
networkConfiguration?: NetworkConfiguration;
|
|
449
|
-
rolloutState?: DeploymentRolloutState;
|
|
450
|
-
rolloutStateReason?: string;
|
|
451
|
-
serviceConnectConfiguration?: ServiceConnectConfiguration;
|
|
452
|
-
serviceConnectResources?: ServiceConnectServiceResource[];
|
|
453
|
-
volumeConfigurations?: ServiceVolumeConfiguration[];
|
|
454
|
-
fargateEphemeralStorage?: DeploymentEphemeralStorage;
|
|
435
|
+
id?: string | undefined;
|
|
436
|
+
status?: string | undefined;
|
|
437
|
+
taskDefinition?: string | undefined;
|
|
438
|
+
desiredCount?: number | undefined;
|
|
439
|
+
pendingCount?: number | undefined;
|
|
440
|
+
runningCount?: number | undefined;
|
|
441
|
+
failedTasks?: number | undefined;
|
|
442
|
+
createdAt?: Date | undefined;
|
|
443
|
+
updatedAt?: Date | undefined;
|
|
444
|
+
capacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
445
|
+
launchType?: LaunchType | undefined;
|
|
446
|
+
platformVersion?: string | undefined;
|
|
447
|
+
platformFamily?: string | undefined;
|
|
448
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
449
|
+
rolloutState?: DeploymentRolloutState | undefined;
|
|
450
|
+
rolloutStateReason?: string | undefined;
|
|
451
|
+
serviceConnectConfiguration?: ServiceConnectConfiguration | undefined;
|
|
452
|
+
serviceConnectResources?: ServiceConnectServiceResource[] | undefined;
|
|
453
|
+
volumeConfigurations?: ServiceVolumeConfiguration[] | undefined;
|
|
454
|
+
fargateEphemeralStorage?: DeploymentEphemeralStorage | undefined;
|
|
455
455
|
}
|
|
456
456
|
export interface ServiceEvent {
|
|
457
|
-
id?: string;
|
|
458
|
-
createdAt?: Date;
|
|
459
|
-
message?: string;
|
|
457
|
+
id?: string | undefined;
|
|
458
|
+
createdAt?: Date | undefined;
|
|
459
|
+
message?: string | undefined;
|
|
460
460
|
}
|
|
461
461
|
export declare const ScaleUnit: {
|
|
462
462
|
readonly PERCENT: "PERCENT";
|
|
463
463
|
};
|
|
464
464
|
export type ScaleUnit = (typeof ScaleUnit)[keyof typeof ScaleUnit];
|
|
465
465
|
export interface Scale {
|
|
466
|
-
value?: number;
|
|
467
|
-
unit?: ScaleUnit;
|
|
466
|
+
value?: number | undefined;
|
|
467
|
+
unit?: ScaleUnit | undefined;
|
|
468
468
|
}
|
|
469
469
|
export declare const StabilityStatus: {
|
|
470
470
|
readonly STABILIZING: "STABILIZING";
|
|
@@ -473,67 +473,67 @@ export declare const StabilityStatus: {
|
|
|
473
473
|
export type StabilityStatus =
|
|
474
474
|
(typeof StabilityStatus)[keyof typeof StabilityStatus];
|
|
475
475
|
export interface TaskSet {
|
|
476
|
-
id?: string;
|
|
477
|
-
taskSetArn?: string;
|
|
478
|
-
serviceArn?: string;
|
|
479
|
-
clusterArn?: string;
|
|
480
|
-
startedBy?: string;
|
|
481
|
-
externalId?: string;
|
|
482
|
-
status?: string;
|
|
483
|
-
taskDefinition?: string;
|
|
484
|
-
computedDesiredCount?: number;
|
|
485
|
-
pendingCount?: number;
|
|
486
|
-
runningCount?: number;
|
|
487
|
-
createdAt?: Date;
|
|
488
|
-
updatedAt?: Date;
|
|
489
|
-
launchType?: LaunchType;
|
|
490
|
-
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
491
|
-
platformVersion?: string;
|
|
492
|
-
platformFamily?: string;
|
|
493
|
-
networkConfiguration?: NetworkConfiguration;
|
|
494
|
-
loadBalancers?: LoadBalancer[];
|
|
495
|
-
serviceRegistries?: ServiceRegistry[];
|
|
496
|
-
scale?: Scale;
|
|
497
|
-
stabilityStatus?: StabilityStatus;
|
|
498
|
-
stabilityStatusAt?: Date;
|
|
499
|
-
tags?: Tag[];
|
|
500
|
-
fargateEphemeralStorage?: DeploymentEphemeralStorage;
|
|
476
|
+
id?: string | undefined;
|
|
477
|
+
taskSetArn?: string | undefined;
|
|
478
|
+
serviceArn?: string | undefined;
|
|
479
|
+
clusterArn?: string | undefined;
|
|
480
|
+
startedBy?: string | undefined;
|
|
481
|
+
externalId?: string | undefined;
|
|
482
|
+
status?: string | undefined;
|
|
483
|
+
taskDefinition?: string | undefined;
|
|
484
|
+
computedDesiredCount?: number | undefined;
|
|
485
|
+
pendingCount?: number | undefined;
|
|
486
|
+
runningCount?: number | undefined;
|
|
487
|
+
createdAt?: Date | undefined;
|
|
488
|
+
updatedAt?: Date | undefined;
|
|
489
|
+
launchType?: LaunchType | undefined;
|
|
490
|
+
capacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
491
|
+
platformVersion?: string | undefined;
|
|
492
|
+
platformFamily?: string | undefined;
|
|
493
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
494
|
+
loadBalancers?: LoadBalancer[] | undefined;
|
|
495
|
+
serviceRegistries?: ServiceRegistry[] | undefined;
|
|
496
|
+
scale?: Scale | undefined;
|
|
497
|
+
stabilityStatus?: StabilityStatus | undefined;
|
|
498
|
+
stabilityStatusAt?: Date | undefined;
|
|
499
|
+
tags?: Tag[] | undefined;
|
|
500
|
+
fargateEphemeralStorage?: DeploymentEphemeralStorage | undefined;
|
|
501
501
|
}
|
|
502
502
|
export interface Service {
|
|
503
|
-
serviceArn?: string;
|
|
504
|
-
serviceName?: string;
|
|
505
|
-
clusterArn?: string;
|
|
506
|
-
loadBalancers?: LoadBalancer[];
|
|
507
|
-
serviceRegistries?: ServiceRegistry[];
|
|
508
|
-
status?: string;
|
|
509
|
-
desiredCount?: number;
|
|
510
|
-
runningCount?: number;
|
|
511
|
-
pendingCount?: number;
|
|
512
|
-
launchType?: LaunchType;
|
|
513
|
-
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
514
|
-
platformVersion?: string;
|
|
515
|
-
platformFamily?: string;
|
|
516
|
-
taskDefinition?: string;
|
|
517
|
-
deploymentConfiguration?: DeploymentConfiguration;
|
|
518
|
-
taskSets?: TaskSet[];
|
|
519
|
-
deployments?: Deployment[];
|
|
520
|
-
roleArn?: string;
|
|
521
|
-
events?: ServiceEvent[];
|
|
522
|
-
createdAt?: Date;
|
|
523
|
-
placementConstraints?: PlacementConstraint[];
|
|
524
|
-
placementStrategy?: PlacementStrategy[];
|
|
525
|
-
networkConfiguration?: NetworkConfiguration;
|
|
526
|
-
healthCheckGracePeriodSeconds?: number;
|
|
527
|
-
schedulingStrategy?: SchedulingStrategy;
|
|
528
|
-
deploymentController?: DeploymentController;
|
|
529
|
-
tags?: Tag[];
|
|
530
|
-
createdBy?: string;
|
|
531
|
-
enableECSManagedTags?: boolean;
|
|
532
|
-
propagateTags?: PropagateTags;
|
|
533
|
-
enableExecuteCommand?: boolean;
|
|
503
|
+
serviceArn?: string | undefined;
|
|
504
|
+
serviceName?: string | undefined;
|
|
505
|
+
clusterArn?: string | undefined;
|
|
506
|
+
loadBalancers?: LoadBalancer[] | undefined;
|
|
507
|
+
serviceRegistries?: ServiceRegistry[] | undefined;
|
|
508
|
+
status?: string | undefined;
|
|
509
|
+
desiredCount?: number | undefined;
|
|
510
|
+
runningCount?: number | undefined;
|
|
511
|
+
pendingCount?: number | undefined;
|
|
512
|
+
launchType?: LaunchType | undefined;
|
|
513
|
+
capacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
514
|
+
platformVersion?: string | undefined;
|
|
515
|
+
platformFamily?: string | undefined;
|
|
516
|
+
taskDefinition?: string | undefined;
|
|
517
|
+
deploymentConfiguration?: DeploymentConfiguration | undefined;
|
|
518
|
+
taskSets?: TaskSet[] | undefined;
|
|
519
|
+
deployments?: Deployment[] | undefined;
|
|
520
|
+
roleArn?: string | undefined;
|
|
521
|
+
events?: ServiceEvent[] | undefined;
|
|
522
|
+
createdAt?: Date | undefined;
|
|
523
|
+
placementConstraints?: PlacementConstraint[] | undefined;
|
|
524
|
+
placementStrategy?: PlacementStrategy[] | undefined;
|
|
525
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
526
|
+
healthCheckGracePeriodSeconds?: number | undefined;
|
|
527
|
+
schedulingStrategy?: SchedulingStrategy | undefined;
|
|
528
|
+
deploymentController?: DeploymentController | undefined;
|
|
529
|
+
tags?: Tag[] | undefined;
|
|
530
|
+
createdBy?: string | undefined;
|
|
531
|
+
enableECSManagedTags?: boolean | undefined;
|
|
532
|
+
propagateTags?: PropagateTags | undefined;
|
|
533
|
+
enableExecuteCommand?: boolean | undefined;
|
|
534
534
|
}
|
|
535
535
|
export interface CreateServiceResponse {
|
|
536
|
-
service?: Service;
|
|
536
|
+
service?: Service | undefined;
|
|
537
537
|
}
|
|
538
538
|
export declare class PlatformTaskDefinitionIncompatibilityException extends __BaseException {
|
|
539
539
|
readonly name: "PlatformTaskDefinitionIncompatibilityException";
|
|
@@ -562,20 +562,20 @@ export declare class UnsupportedFeatureException extends __BaseException {
|
|
|
562
562
|
export interface CreateTaskSetRequest {
|
|
563
563
|
service: string | undefined;
|
|
564
564
|
cluster: string | undefined;
|
|
565
|
-
externalId?: string;
|
|
565
|
+
externalId?: string | undefined;
|
|
566
566
|
taskDefinition: string | undefined;
|
|
567
|
-
networkConfiguration?: NetworkConfiguration;
|
|
568
|
-
loadBalancers?: LoadBalancer[];
|
|
569
|
-
serviceRegistries?: ServiceRegistry[];
|
|
570
|
-
launchType?: LaunchType;
|
|
571
|
-
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
572
|
-
platformVersion?: string;
|
|
573
|
-
scale?: Scale;
|
|
574
|
-
clientToken?: string;
|
|
575
|
-
tags?: Tag[];
|
|
567
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
568
|
+
loadBalancers?: LoadBalancer[] | undefined;
|
|
569
|
+
serviceRegistries?: ServiceRegistry[] | undefined;
|
|
570
|
+
launchType?: LaunchType | undefined;
|
|
571
|
+
capacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
572
|
+
platformVersion?: string | undefined;
|
|
573
|
+
scale?: Scale | undefined;
|
|
574
|
+
clientToken?: string | undefined;
|
|
575
|
+
tags?: Tag[] | undefined;
|
|
576
576
|
}
|
|
577
577
|
export interface CreateTaskSetResponse {
|
|
578
|
-
taskSet?: TaskSet;
|
|
578
|
+
taskSet?: TaskSet | undefined;
|
|
579
579
|
}
|
|
580
580
|
export declare class ServiceNotActiveException extends __BaseException {
|
|
581
581
|
readonly name: "ServiceNotActiveException";
|
|
@@ -605,7 +605,7 @@ export declare const SettingName: {
|
|
|
605
605
|
export type SettingName = (typeof SettingName)[keyof typeof SettingName];
|
|
606
606
|
export interface DeleteAccountSettingRequest {
|
|
607
607
|
name: SettingName | undefined;
|
|
608
|
-
principalArn?: string;
|
|
608
|
+
principalArn?: string | undefined;
|
|
609
609
|
}
|
|
610
610
|
export declare const SettingType: {
|
|
611
611
|
readonly AWS_MANAGED: "aws_managed";
|
|
@@ -613,13 +613,13 @@ export declare const SettingType: {
|
|
|
613
613
|
};
|
|
614
614
|
export type SettingType = (typeof SettingType)[keyof typeof SettingType];
|
|
615
615
|
export interface Setting {
|
|
616
|
-
name?: SettingName;
|
|
617
|
-
value?: string;
|
|
618
|
-
principalArn?: string;
|
|
619
|
-
type?: SettingType;
|
|
616
|
+
name?: SettingName | undefined;
|
|
617
|
+
value?: string | undefined;
|
|
618
|
+
principalArn?: string | undefined;
|
|
619
|
+
type?: SettingType | undefined;
|
|
620
620
|
}
|
|
621
621
|
export interface DeleteAccountSettingResponse {
|
|
622
|
-
setting?: Setting;
|
|
622
|
+
setting?: Setting | undefined;
|
|
623
623
|
}
|
|
624
624
|
export declare const TargetType: {
|
|
625
625
|
readonly CONTAINER_INSTANCE: "container-instance";
|
|
@@ -627,16 +627,16 @@ export declare const TargetType: {
|
|
|
627
627
|
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
628
628
|
export interface Attribute {
|
|
629
629
|
name: string | undefined;
|
|
630
|
-
value?: string;
|
|
631
|
-
targetType?: TargetType;
|
|
632
|
-
targetId?: string;
|
|
630
|
+
value?: string | undefined;
|
|
631
|
+
targetType?: TargetType | undefined;
|
|
632
|
+
targetId?: string | undefined;
|
|
633
633
|
}
|
|
634
634
|
export interface DeleteAttributesRequest {
|
|
635
|
-
cluster?: string;
|
|
635
|
+
cluster?: string | undefined;
|
|
636
636
|
attributes: Attribute[] | undefined;
|
|
637
637
|
}
|
|
638
638
|
export interface DeleteAttributesResponse {
|
|
639
|
-
attributes?: Attribute[];
|
|
639
|
+
attributes?: Attribute[] | undefined;
|
|
640
640
|
}
|
|
641
641
|
export declare class TargetNotFoundException extends __BaseException {
|
|
642
642
|
readonly name: "TargetNotFoundException";
|
|
@@ -649,7 +649,7 @@ export interface DeleteCapacityProviderRequest {
|
|
|
649
649
|
capacityProvider: string | undefined;
|
|
650
650
|
}
|
|
651
651
|
export interface DeleteCapacityProviderResponse {
|
|
652
|
-
capacityProvider?: CapacityProvider;
|
|
652
|
+
capacityProvider?: CapacityProvider | undefined;
|
|
653
653
|
}
|
|
654
654
|
export declare class ClusterContainsContainerInstancesException extends __BaseException {
|
|
655
655
|
readonly name: "ClusterContainsContainerInstancesException";
|
|
@@ -682,23 +682,23 @@ export interface DeleteClusterRequest {
|
|
|
682
682
|
cluster: string | undefined;
|
|
683
683
|
}
|
|
684
684
|
export interface DeleteClusterResponse {
|
|
685
|
-
cluster?: Cluster;
|
|
685
|
+
cluster?: Cluster | undefined;
|
|
686
686
|
}
|
|
687
687
|
export interface DeleteServiceRequest {
|
|
688
|
-
cluster?: string;
|
|
688
|
+
cluster?: string | undefined;
|
|
689
689
|
service: string | undefined;
|
|
690
|
-
force?: boolean;
|
|
690
|
+
force?: boolean | undefined;
|
|
691
691
|
}
|
|
692
692
|
export interface DeleteServiceResponse {
|
|
693
|
-
service?: Service;
|
|
693
|
+
service?: Service | undefined;
|
|
694
694
|
}
|
|
695
695
|
export interface DeleteTaskDefinitionsRequest {
|
|
696
696
|
taskDefinitions: string[] | undefined;
|
|
697
697
|
}
|
|
698
698
|
export interface Failure {
|
|
699
|
-
arn?: string;
|
|
700
|
-
reason?: string;
|
|
701
|
-
detail?: string;
|
|
699
|
+
arn?: string | undefined;
|
|
700
|
+
reason?: string | undefined;
|
|
701
|
+
detail?: string | undefined;
|
|
702
702
|
}
|
|
703
703
|
export declare const Compatibility: {
|
|
704
704
|
readonly EC2: "EC2";
|
|
@@ -739,18 +739,18 @@ export type FirelensConfigurationType =
|
|
|
739
739
|
(typeof FirelensConfigurationType)[keyof typeof FirelensConfigurationType];
|
|
740
740
|
export interface FirelensConfiguration {
|
|
741
741
|
type: FirelensConfigurationType | undefined;
|
|
742
|
-
options?: Record<string, string
|
|
742
|
+
options?: Record<string, string> | undefined;
|
|
743
743
|
}
|
|
744
744
|
export interface HealthCheck {
|
|
745
745
|
command: string[] | undefined;
|
|
746
|
-
interval?: number;
|
|
747
|
-
timeout?: number;
|
|
748
|
-
retries?: number;
|
|
749
|
-
startPeriod?: number;
|
|
746
|
+
interval?: number | undefined;
|
|
747
|
+
timeout?: number | undefined;
|
|
748
|
+
retries?: number | undefined;
|
|
749
|
+
startPeriod?: number | undefined;
|
|
750
750
|
}
|
|
751
751
|
export interface KernelCapabilities {
|
|
752
|
-
add?: string[];
|
|
753
|
-
drop?: string[];
|
|
752
|
+
add?: string[] | undefined;
|
|
753
|
+
drop?: string[] | undefined;
|
|
754
754
|
}
|
|
755
755
|
export declare const DeviceCgroupPermission: {
|
|
756
756
|
readonly MKNOD: "mknod";
|
|
@@ -761,27 +761,27 @@ export type DeviceCgroupPermission =
|
|
|
761
761
|
(typeof DeviceCgroupPermission)[keyof typeof DeviceCgroupPermission];
|
|
762
762
|
export interface Device {
|
|
763
763
|
hostPath: string | undefined;
|
|
764
|
-
containerPath?: string;
|
|
765
|
-
permissions?: DeviceCgroupPermission[];
|
|
764
|
+
containerPath?: string | undefined;
|
|
765
|
+
permissions?: DeviceCgroupPermission[] | undefined;
|
|
766
766
|
}
|
|
767
767
|
export interface Tmpfs {
|
|
768
768
|
containerPath: string | undefined;
|
|
769
769
|
size: number | undefined;
|
|
770
|
-
mountOptions?: string[];
|
|
770
|
+
mountOptions?: string[] | undefined;
|
|
771
771
|
}
|
|
772
772
|
export interface LinuxParameters {
|
|
773
|
-
capabilities?: KernelCapabilities;
|
|
774
|
-
devices?: Device[];
|
|
775
|
-
initProcessEnabled?: boolean;
|
|
776
|
-
sharedMemorySize?: number;
|
|
777
|
-
tmpfs?: Tmpfs[];
|
|
778
|
-
maxSwap?: number;
|
|
779
|
-
swappiness?: number;
|
|
773
|
+
capabilities?: KernelCapabilities | undefined;
|
|
774
|
+
devices?: Device[] | undefined;
|
|
775
|
+
initProcessEnabled?: boolean | undefined;
|
|
776
|
+
sharedMemorySize?: number | undefined;
|
|
777
|
+
tmpfs?: Tmpfs[] | undefined;
|
|
778
|
+
maxSwap?: number | undefined;
|
|
779
|
+
swappiness?: number | undefined;
|
|
780
780
|
}
|
|
781
781
|
export interface MountPoint {
|
|
782
|
-
sourceVolume?: string;
|
|
783
|
-
containerPath?: string;
|
|
784
|
-
readOnly?: boolean;
|
|
782
|
+
sourceVolume?: string | undefined;
|
|
783
|
+
containerPath?: string | undefined;
|
|
784
|
+
readOnly?: boolean | undefined;
|
|
785
785
|
}
|
|
786
786
|
export declare const ApplicationProtocol: {
|
|
787
787
|
readonly GRPC: "grpc";
|
|
@@ -797,12 +797,12 @@ export declare const TransportProtocol: {
|
|
|
797
797
|
export type TransportProtocol =
|
|
798
798
|
(typeof TransportProtocol)[keyof typeof TransportProtocol];
|
|
799
799
|
export interface PortMapping {
|
|
800
|
-
containerPort?: number;
|
|
801
|
-
hostPort?: number;
|
|
802
|
-
protocol?: TransportProtocol;
|
|
803
|
-
name?: string;
|
|
804
|
-
appProtocol?: ApplicationProtocol;
|
|
805
|
-
containerPortRange?: string;
|
|
800
|
+
containerPort?: number | undefined;
|
|
801
|
+
hostPort?: number | undefined;
|
|
802
|
+
protocol?: TransportProtocol | undefined;
|
|
803
|
+
name?: string | undefined;
|
|
804
|
+
appProtocol?: ApplicationProtocol | undefined;
|
|
805
|
+
containerPortRange?: string | undefined;
|
|
806
806
|
}
|
|
807
807
|
export interface RepositoryCredentials {
|
|
808
808
|
credentialsParameter: string | undefined;
|
|
@@ -818,12 +818,12 @@ export interface ResourceRequirement {
|
|
|
818
818
|
}
|
|
819
819
|
export interface ContainerRestartPolicy {
|
|
820
820
|
enabled: boolean | undefined;
|
|
821
|
-
ignoredExitCodes?: number[];
|
|
822
|
-
restartAttemptPeriod?: number;
|
|
821
|
+
ignoredExitCodes?: number[] | undefined;
|
|
822
|
+
restartAttemptPeriod?: number | undefined;
|
|
823
823
|
}
|
|
824
824
|
export interface SystemControl {
|
|
825
|
-
namespace?: string;
|
|
826
|
-
value?: string;
|
|
825
|
+
namespace?: string | undefined;
|
|
826
|
+
value?: string | undefined;
|
|
827
827
|
}
|
|
828
828
|
export declare const UlimitName: {
|
|
829
829
|
readonly CORE: "core";
|
|
@@ -849,51 +849,51 @@ export interface Ulimit {
|
|
|
849
849
|
hardLimit: number | undefined;
|
|
850
850
|
}
|
|
851
851
|
export interface VolumeFrom {
|
|
852
|
-
sourceContainer?: string;
|
|
853
|
-
readOnly?: boolean;
|
|
852
|
+
sourceContainer?: string | undefined;
|
|
853
|
+
readOnly?: boolean | undefined;
|
|
854
854
|
}
|
|
855
855
|
export interface ContainerDefinition {
|
|
856
|
-
name?: string;
|
|
857
|
-
image?: string;
|
|
858
|
-
repositoryCredentials?: RepositoryCredentials;
|
|
859
|
-
cpu?: number;
|
|
860
|
-
memory?: number;
|
|
861
|
-
memoryReservation?: number;
|
|
862
|
-
links?: string[];
|
|
863
|
-
portMappings?: PortMapping[];
|
|
864
|
-
essential?: boolean;
|
|
865
|
-
restartPolicy?: ContainerRestartPolicy;
|
|
866
|
-
entryPoint?: string[];
|
|
867
|
-
command?: string[];
|
|
868
|
-
environment?: KeyValuePair[];
|
|
869
|
-
environmentFiles?: EnvironmentFile[];
|
|
870
|
-
mountPoints?: MountPoint[];
|
|
871
|
-
volumesFrom?: VolumeFrom[];
|
|
872
|
-
linuxParameters?: LinuxParameters;
|
|
873
|
-
secrets?: Secret[];
|
|
874
|
-
dependsOn?: ContainerDependency[];
|
|
875
|
-
startTimeout?: number;
|
|
876
|
-
stopTimeout?: number;
|
|
877
|
-
hostname?: string;
|
|
878
|
-
user?: string;
|
|
879
|
-
workingDirectory?: string;
|
|
880
|
-
disableNetworking?: boolean;
|
|
881
|
-
privileged?: boolean;
|
|
882
|
-
readonlyRootFilesystem?: boolean;
|
|
883
|
-
dnsServers?: string[];
|
|
884
|
-
dnsSearchDomains?: string[];
|
|
885
|
-
extraHosts?: HostEntry[];
|
|
886
|
-
dockerSecurityOptions?: string[];
|
|
887
|
-
interactive?: boolean;
|
|
888
|
-
pseudoTerminal?: boolean;
|
|
889
|
-
dockerLabels?: Record<string, string
|
|
890
|
-
ulimits?: Ulimit[];
|
|
891
|
-
logConfiguration?: LogConfiguration;
|
|
892
|
-
healthCheck?: HealthCheck;
|
|
893
|
-
systemControls?: SystemControl[];
|
|
894
|
-
resourceRequirements?: ResourceRequirement[];
|
|
895
|
-
firelensConfiguration?: FirelensConfiguration;
|
|
896
|
-
credentialSpecs?: string[];
|
|
856
|
+
name?: string | undefined;
|
|
857
|
+
image?: string | undefined;
|
|
858
|
+
repositoryCredentials?: RepositoryCredentials | undefined;
|
|
859
|
+
cpu?: number | undefined;
|
|
860
|
+
memory?: number | undefined;
|
|
861
|
+
memoryReservation?: number | undefined;
|
|
862
|
+
links?: string[] | undefined;
|
|
863
|
+
portMappings?: PortMapping[] | undefined;
|
|
864
|
+
essential?: boolean | undefined;
|
|
865
|
+
restartPolicy?: ContainerRestartPolicy | undefined;
|
|
866
|
+
entryPoint?: string[] | undefined;
|
|
867
|
+
command?: string[] | undefined;
|
|
868
|
+
environment?: KeyValuePair[] | undefined;
|
|
869
|
+
environmentFiles?: EnvironmentFile[] | undefined;
|
|
870
|
+
mountPoints?: MountPoint[] | undefined;
|
|
871
|
+
volumesFrom?: VolumeFrom[] | undefined;
|
|
872
|
+
linuxParameters?: LinuxParameters | undefined;
|
|
873
|
+
secrets?: Secret[] | undefined;
|
|
874
|
+
dependsOn?: ContainerDependency[] | undefined;
|
|
875
|
+
startTimeout?: number | undefined;
|
|
876
|
+
stopTimeout?: number | undefined;
|
|
877
|
+
hostname?: string | undefined;
|
|
878
|
+
user?: string | undefined;
|
|
879
|
+
workingDirectory?: string | undefined;
|
|
880
|
+
disableNetworking?: boolean | undefined;
|
|
881
|
+
privileged?: boolean | undefined;
|
|
882
|
+
readonlyRootFilesystem?: boolean | undefined;
|
|
883
|
+
dnsServers?: string[] | undefined;
|
|
884
|
+
dnsSearchDomains?: string[] | undefined;
|
|
885
|
+
extraHosts?: HostEntry[] | undefined;
|
|
886
|
+
dockerSecurityOptions?: string[] | undefined;
|
|
887
|
+
interactive?: boolean | undefined;
|
|
888
|
+
pseudoTerminal?: boolean | undefined;
|
|
889
|
+
dockerLabels?: Record<string, string> | undefined;
|
|
890
|
+
ulimits?: Ulimit[] | undefined;
|
|
891
|
+
logConfiguration?: LogConfiguration | undefined;
|
|
892
|
+
healthCheck?: HealthCheck | undefined;
|
|
893
|
+
systemControls?: SystemControl[] | undefined;
|
|
894
|
+
resourceRequirements?: ResourceRequirement[] | undefined;
|
|
895
|
+
firelensConfiguration?: FirelensConfiguration | undefined;
|
|
896
|
+
credentialSpecs?: string[] | undefined;
|
|
897
897
|
}
|
|
898
898
|
export interface EphemeralStorage {
|
|
899
899
|
sizeInGiB: number | undefined;
|
|
@@ -926,8 +926,8 @@ export declare const TaskDefinitionPlacementConstraintType: {
|
|
|
926
926
|
export type TaskDefinitionPlacementConstraintType =
|
|
927
927
|
(typeof TaskDefinitionPlacementConstraintType)[keyof typeof TaskDefinitionPlacementConstraintType];
|
|
928
928
|
export interface TaskDefinitionPlacementConstraint {
|
|
929
|
-
type?: TaskDefinitionPlacementConstraintType;
|
|
930
|
-
expression?: string;
|
|
929
|
+
type?: TaskDefinitionPlacementConstraintType | undefined;
|
|
930
|
+
expression?: string | undefined;
|
|
931
931
|
}
|
|
932
932
|
export declare const ProxyConfigurationType: {
|
|
933
933
|
readonly APPMESH: "APPMESH";
|
|
@@ -935,9 +935,9 @@ export declare const ProxyConfigurationType: {
|
|
|
935
935
|
export type ProxyConfigurationType =
|
|
936
936
|
(typeof ProxyConfigurationType)[keyof typeof ProxyConfigurationType];
|
|
937
937
|
export interface ProxyConfiguration {
|
|
938
|
-
type?: ProxyConfigurationType;
|
|
938
|
+
type?: ProxyConfigurationType | undefined;
|
|
939
939
|
containerName: string | undefined;
|
|
940
|
-
properties?: KeyValuePair[];
|
|
940
|
+
properties?: KeyValuePair[] | undefined;
|
|
941
941
|
}
|
|
942
942
|
export declare const CPUArchitecture: {
|
|
943
943
|
readonly ARM64: "ARM64";
|
|
@@ -957,8 +957,8 @@ export declare const OSFamily: {
|
|
|
957
957
|
};
|
|
958
958
|
export type OSFamily = (typeof OSFamily)[keyof typeof OSFamily];
|
|
959
959
|
export interface RuntimePlatform {
|
|
960
|
-
cpuArchitecture?: CPUArchitecture;
|
|
961
|
-
operatingSystemFamily?: OSFamily;
|
|
960
|
+
cpuArchitecture?: CPUArchitecture | undefined;
|
|
961
|
+
operatingSystemFamily?: OSFamily | undefined;
|
|
962
962
|
}
|
|
963
963
|
export declare const TaskDefinitionStatus: {
|
|
964
964
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -973,11 +973,11 @@ export declare const Scope: {
|
|
|
973
973
|
};
|
|
974
974
|
export type Scope = (typeof Scope)[keyof typeof Scope];
|
|
975
975
|
export interface DockerVolumeConfiguration {
|
|
976
|
-
scope?: Scope;
|
|
977
|
-
autoprovision?: boolean;
|
|
978
|
-
driver?: string;
|
|
979
|
-
driverOpts?: Record<string, string
|
|
980
|
-
labels?: Record<string, string
|
|
976
|
+
scope?: Scope | undefined;
|
|
977
|
+
autoprovision?: boolean | undefined;
|
|
978
|
+
driver?: string | undefined;
|
|
979
|
+
driverOpts?: Record<string, string> | undefined;
|
|
980
|
+
labels?: Record<string, string> | undefined;
|
|
981
981
|
}
|
|
982
982
|
export declare const EFSAuthorizationConfigIAM: {
|
|
983
983
|
readonly DISABLED: "DISABLED";
|
|
@@ -986,8 +986,8 @@ export declare const EFSAuthorizationConfigIAM: {
|
|
|
986
986
|
export type EFSAuthorizationConfigIAM =
|
|
987
987
|
(typeof EFSAuthorizationConfigIAM)[keyof typeof EFSAuthorizationConfigIAM];
|
|
988
988
|
export interface EFSAuthorizationConfig {
|
|
989
|
-
accessPointId?: string;
|
|
990
|
-
iam?: EFSAuthorizationConfigIAM;
|
|
989
|
+
accessPointId?: string | undefined;
|
|
990
|
+
iam?: EFSAuthorizationConfigIAM | undefined;
|
|
991
991
|
}
|
|
992
992
|
export declare const EFSTransitEncryption: {
|
|
993
993
|
readonly DISABLED: "DISABLED";
|
|
@@ -997,10 +997,10 @@ export type EFSTransitEncryption =
|
|
|
997
997
|
(typeof EFSTransitEncryption)[keyof typeof EFSTransitEncryption];
|
|
998
998
|
export interface EFSVolumeConfiguration {
|
|
999
999
|
fileSystemId: string | undefined;
|
|
1000
|
-
rootDirectory?: string;
|
|
1001
|
-
transitEncryption?: EFSTransitEncryption;
|
|
1002
|
-
transitEncryptionPort?: number;
|
|
1003
|
-
authorizationConfig?: EFSAuthorizationConfig;
|
|
1000
|
+
rootDirectory?: string | undefined;
|
|
1001
|
+
transitEncryption?: EFSTransitEncryption | undefined;
|
|
1002
|
+
transitEncryptionPort?: number | undefined;
|
|
1003
|
+
authorizationConfig?: EFSAuthorizationConfig | undefined;
|
|
1004
1004
|
}
|
|
1005
1005
|
export interface FSxWindowsFileServerAuthorizationConfig {
|
|
1006
1006
|
credentialsParameter: string | undefined;
|
|
@@ -1012,54 +1012,56 @@ export interface FSxWindowsFileServerVolumeConfiguration {
|
|
|
1012
1012
|
authorizationConfig: FSxWindowsFileServerAuthorizationConfig | undefined;
|
|
1013
1013
|
}
|
|
1014
1014
|
export interface HostVolumeProperties {
|
|
1015
|
-
sourcePath?: string;
|
|
1015
|
+
sourcePath?: string | undefined;
|
|
1016
1016
|
}
|
|
1017
1017
|
export interface Volume {
|
|
1018
|
-
name?: string;
|
|
1019
|
-
host?: HostVolumeProperties;
|
|
1020
|
-
dockerVolumeConfiguration?: DockerVolumeConfiguration;
|
|
1021
|
-
efsVolumeConfiguration?: EFSVolumeConfiguration;
|
|
1022
|
-
fsxWindowsFileServerVolumeConfiguration?:
|
|
1023
|
-
|
|
1018
|
+
name?: string | undefined;
|
|
1019
|
+
host?: HostVolumeProperties | undefined;
|
|
1020
|
+
dockerVolumeConfiguration?: DockerVolumeConfiguration | undefined;
|
|
1021
|
+
efsVolumeConfiguration?: EFSVolumeConfiguration | undefined;
|
|
1022
|
+
fsxWindowsFileServerVolumeConfiguration?:
|
|
1023
|
+
| FSxWindowsFileServerVolumeConfiguration
|
|
1024
|
+
| undefined;
|
|
1025
|
+
configuredAtLaunch?: boolean | undefined;
|
|
1024
1026
|
}
|
|
1025
1027
|
export interface TaskDefinition {
|
|
1026
|
-
taskDefinitionArn?: string;
|
|
1027
|
-
containerDefinitions?: ContainerDefinition[];
|
|
1028
|
-
family?: string;
|
|
1029
|
-
taskRoleArn?: string;
|
|
1030
|
-
executionRoleArn?: string;
|
|
1031
|
-
networkMode?: NetworkMode;
|
|
1032
|
-
revision?: number;
|
|
1033
|
-
volumes?: Volume[];
|
|
1034
|
-
status?: TaskDefinitionStatus;
|
|
1035
|
-
requiresAttributes?: Attribute[];
|
|
1036
|
-
placementConstraints?: TaskDefinitionPlacementConstraint[];
|
|
1037
|
-
compatibilities?: Compatibility[];
|
|
1038
|
-
runtimePlatform?: RuntimePlatform;
|
|
1039
|
-
requiresCompatibilities?: Compatibility[];
|
|
1040
|
-
cpu?: string;
|
|
1041
|
-
memory?: string;
|
|
1042
|
-
inferenceAccelerators?: InferenceAccelerator[];
|
|
1043
|
-
pidMode?: PidMode;
|
|
1044
|
-
ipcMode?: IpcMode;
|
|
1045
|
-
proxyConfiguration?: ProxyConfiguration;
|
|
1046
|
-
registeredAt?: Date;
|
|
1047
|
-
deregisteredAt?: Date;
|
|
1048
|
-
registeredBy?: string;
|
|
1049
|
-
ephemeralStorage?: EphemeralStorage;
|
|
1028
|
+
taskDefinitionArn?: string | undefined;
|
|
1029
|
+
containerDefinitions?: ContainerDefinition[] | undefined;
|
|
1030
|
+
family?: string | undefined;
|
|
1031
|
+
taskRoleArn?: string | undefined;
|
|
1032
|
+
executionRoleArn?: string | undefined;
|
|
1033
|
+
networkMode?: NetworkMode | undefined;
|
|
1034
|
+
revision?: number | undefined;
|
|
1035
|
+
volumes?: Volume[] | undefined;
|
|
1036
|
+
status?: TaskDefinitionStatus | undefined;
|
|
1037
|
+
requiresAttributes?: Attribute[] | undefined;
|
|
1038
|
+
placementConstraints?: TaskDefinitionPlacementConstraint[] | undefined;
|
|
1039
|
+
compatibilities?: Compatibility[] | undefined;
|
|
1040
|
+
runtimePlatform?: RuntimePlatform | undefined;
|
|
1041
|
+
requiresCompatibilities?: Compatibility[] | undefined;
|
|
1042
|
+
cpu?: string | undefined;
|
|
1043
|
+
memory?: string | undefined;
|
|
1044
|
+
inferenceAccelerators?: InferenceAccelerator[] | undefined;
|
|
1045
|
+
pidMode?: PidMode | undefined;
|
|
1046
|
+
ipcMode?: IpcMode | undefined;
|
|
1047
|
+
proxyConfiguration?: ProxyConfiguration | undefined;
|
|
1048
|
+
registeredAt?: Date | undefined;
|
|
1049
|
+
deregisteredAt?: Date | undefined;
|
|
1050
|
+
registeredBy?: string | undefined;
|
|
1051
|
+
ephemeralStorage?: EphemeralStorage | undefined;
|
|
1050
1052
|
}
|
|
1051
1053
|
export interface DeleteTaskDefinitionsResponse {
|
|
1052
|
-
taskDefinitions?: TaskDefinition[];
|
|
1053
|
-
failures?: Failure[];
|
|
1054
|
+
taskDefinitions?: TaskDefinition[] | undefined;
|
|
1055
|
+
failures?: Failure[] | undefined;
|
|
1054
1056
|
}
|
|
1055
1057
|
export interface DeleteTaskSetRequest {
|
|
1056
1058
|
cluster: string | undefined;
|
|
1057
1059
|
service: string | undefined;
|
|
1058
1060
|
taskSet: string | undefined;
|
|
1059
|
-
force?: boolean;
|
|
1061
|
+
force?: boolean | undefined;
|
|
1060
1062
|
}
|
|
1061
1063
|
export interface DeleteTaskSetResponse {
|
|
1062
|
-
taskSet?: TaskSet;
|
|
1064
|
+
taskSet?: TaskSet | undefined;
|
|
1063
1065
|
}
|
|
1064
1066
|
export declare class TaskSetNotFoundException extends __BaseException {
|
|
1065
1067
|
readonly name: "TaskSetNotFoundException";
|
|
@@ -1069,9 +1071,9 @@ export declare class TaskSetNotFoundException extends __BaseException {
|
|
|
1069
1071
|
);
|
|
1070
1072
|
}
|
|
1071
1073
|
export interface DeregisterContainerInstanceRequest {
|
|
1072
|
-
cluster?: string;
|
|
1074
|
+
cluster?: string | undefined;
|
|
1073
1075
|
containerInstance: string | undefined;
|
|
1074
|
-
force?: boolean;
|
|
1076
|
+
force?: boolean | undefined;
|
|
1075
1077
|
}
|
|
1076
1078
|
export declare const InstanceHealthCheckState: {
|
|
1077
1079
|
readonly IMPAIRED: "IMPAIRED";
|
|
@@ -1087,56 +1089,56 @@ export declare const InstanceHealthCheckType: {
|
|
|
1087
1089
|
export type InstanceHealthCheckType =
|
|
1088
1090
|
(typeof InstanceHealthCheckType)[keyof typeof InstanceHealthCheckType];
|
|
1089
1091
|
export interface InstanceHealthCheckResult {
|
|
1090
|
-
type?: InstanceHealthCheckType;
|
|
1091
|
-
status?: InstanceHealthCheckState;
|
|
1092
|
-
lastUpdated?: Date;
|
|
1093
|
-
lastStatusChange?: Date;
|
|
1092
|
+
type?: InstanceHealthCheckType | undefined;
|
|
1093
|
+
status?: InstanceHealthCheckState | undefined;
|
|
1094
|
+
lastUpdated?: Date | undefined;
|
|
1095
|
+
lastStatusChange?: Date | undefined;
|
|
1094
1096
|
}
|
|
1095
1097
|
export interface ContainerInstanceHealthStatus {
|
|
1096
|
-
overallStatus?: InstanceHealthCheckState;
|
|
1097
|
-
details?: InstanceHealthCheckResult[];
|
|
1098
|
+
overallStatus?: InstanceHealthCheckState | undefined;
|
|
1099
|
+
details?: InstanceHealthCheckResult[] | undefined;
|
|
1098
1100
|
}
|
|
1099
1101
|
export interface Resource {
|
|
1100
|
-
name?: string;
|
|
1101
|
-
type?: string;
|
|
1102
|
-
doubleValue?: number;
|
|
1103
|
-
longValue?: number;
|
|
1104
|
-
integerValue?: number;
|
|
1105
|
-
stringSetValue?: string[];
|
|
1102
|
+
name?: string | undefined;
|
|
1103
|
+
type?: string | undefined;
|
|
1104
|
+
doubleValue?: number | undefined;
|
|
1105
|
+
longValue?: number | undefined;
|
|
1106
|
+
integerValue?: number | undefined;
|
|
1107
|
+
stringSetValue?: string[] | undefined;
|
|
1106
1108
|
}
|
|
1107
1109
|
export interface VersionInfo {
|
|
1108
|
-
agentVersion?: string;
|
|
1109
|
-
agentHash?: string;
|
|
1110
|
-
dockerVersion?: string;
|
|
1110
|
+
agentVersion?: string | undefined;
|
|
1111
|
+
agentHash?: string | undefined;
|
|
1112
|
+
dockerVersion?: string | undefined;
|
|
1111
1113
|
}
|
|
1112
1114
|
export interface ContainerInstance {
|
|
1113
|
-
containerInstanceArn?: string;
|
|
1114
|
-
ec2InstanceId?: string;
|
|
1115
|
-
capacityProviderName?: string;
|
|
1116
|
-
version?: number;
|
|
1117
|
-
versionInfo?: VersionInfo;
|
|
1118
|
-
remainingResources?: Resource[];
|
|
1119
|
-
registeredResources?: Resource[];
|
|
1120
|
-
status?: string;
|
|
1121
|
-
statusReason?: string;
|
|
1122
|
-
agentConnected?: boolean;
|
|
1123
|
-
runningTasksCount?: number;
|
|
1124
|
-
pendingTasksCount?: number;
|
|
1125
|
-
agentUpdateStatus?: AgentUpdateStatus;
|
|
1126
|
-
attributes?: Attribute[];
|
|
1127
|
-
registeredAt?: Date;
|
|
1128
|
-
attachments?: Attachment[];
|
|
1129
|
-
tags?: Tag[];
|
|
1130
|
-
healthStatus?: ContainerInstanceHealthStatus;
|
|
1115
|
+
containerInstanceArn?: string | undefined;
|
|
1116
|
+
ec2InstanceId?: string | undefined;
|
|
1117
|
+
capacityProviderName?: string | undefined;
|
|
1118
|
+
version?: number | undefined;
|
|
1119
|
+
versionInfo?: VersionInfo | undefined;
|
|
1120
|
+
remainingResources?: Resource[] | undefined;
|
|
1121
|
+
registeredResources?: Resource[] | undefined;
|
|
1122
|
+
status?: string | undefined;
|
|
1123
|
+
statusReason?: string | undefined;
|
|
1124
|
+
agentConnected?: boolean | undefined;
|
|
1125
|
+
runningTasksCount?: number | undefined;
|
|
1126
|
+
pendingTasksCount?: number | undefined;
|
|
1127
|
+
agentUpdateStatus?: AgentUpdateStatus | undefined;
|
|
1128
|
+
attributes?: Attribute[] | undefined;
|
|
1129
|
+
registeredAt?: Date | undefined;
|
|
1130
|
+
attachments?: Attachment[] | undefined;
|
|
1131
|
+
tags?: Tag[] | undefined;
|
|
1132
|
+
healthStatus?: ContainerInstanceHealthStatus | undefined;
|
|
1131
1133
|
}
|
|
1132
1134
|
export interface DeregisterContainerInstanceResponse {
|
|
1133
|
-
containerInstance?: ContainerInstance;
|
|
1135
|
+
containerInstance?: ContainerInstance | undefined;
|
|
1134
1136
|
}
|
|
1135
1137
|
export interface DeregisterTaskDefinitionRequest {
|
|
1136
1138
|
taskDefinition: string | undefined;
|
|
1137
1139
|
}
|
|
1138
1140
|
export interface DeregisterTaskDefinitionResponse {
|
|
1139
|
-
taskDefinition?: TaskDefinition;
|
|
1141
|
+
taskDefinition?: TaskDefinition | undefined;
|
|
1140
1142
|
}
|
|
1141
1143
|
export declare const CapacityProviderField: {
|
|
1142
1144
|
readonly TAGS: "TAGS";
|
|
@@ -1144,15 +1146,15 @@ export declare const CapacityProviderField: {
|
|
|
1144
1146
|
export type CapacityProviderField =
|
|
1145
1147
|
(typeof CapacityProviderField)[keyof typeof CapacityProviderField];
|
|
1146
1148
|
export interface DescribeCapacityProvidersRequest {
|
|
1147
|
-
capacityProviders?: string[];
|
|
1148
|
-
include?: CapacityProviderField[];
|
|
1149
|
-
maxResults?: number;
|
|
1150
|
-
nextToken?: string;
|
|
1149
|
+
capacityProviders?: string[] | undefined;
|
|
1150
|
+
include?: CapacityProviderField[] | undefined;
|
|
1151
|
+
maxResults?: number | undefined;
|
|
1152
|
+
nextToken?: string | undefined;
|
|
1151
1153
|
}
|
|
1152
1154
|
export interface DescribeCapacityProvidersResponse {
|
|
1153
|
-
capacityProviders?: CapacityProvider[];
|
|
1154
|
-
failures?: Failure[];
|
|
1155
|
-
nextToken?: string;
|
|
1155
|
+
capacityProviders?: CapacityProvider[] | undefined;
|
|
1156
|
+
failures?: Failure[] | undefined;
|
|
1157
|
+
nextToken?: string | undefined;
|
|
1156
1158
|
}
|
|
1157
1159
|
export declare const ClusterField: {
|
|
1158
1160
|
readonly ATTACHMENTS: "ATTACHMENTS";
|
|
@@ -1163,12 +1165,12 @@ export declare const ClusterField: {
|
|
|
1163
1165
|
};
|
|
1164
1166
|
export type ClusterField = (typeof ClusterField)[keyof typeof ClusterField];
|
|
1165
1167
|
export interface DescribeClustersRequest {
|
|
1166
|
-
clusters?: string[];
|
|
1167
|
-
include?: ClusterField[];
|
|
1168
|
+
clusters?: string[] | undefined;
|
|
1169
|
+
include?: ClusterField[] | undefined;
|
|
1168
1170
|
}
|
|
1169
1171
|
export interface DescribeClustersResponse {
|
|
1170
|
-
clusters?: Cluster[];
|
|
1171
|
-
failures?: Failure[];
|
|
1172
|
+
clusters?: Cluster[] | undefined;
|
|
1173
|
+
failures?: Failure[] | undefined;
|
|
1172
1174
|
}
|
|
1173
1175
|
export declare const ContainerInstanceField: {
|
|
1174
1176
|
readonly CONTAINER_INSTANCE_HEALTH: "CONTAINER_INSTANCE_HEALTH";
|
|
@@ -1177,13 +1179,13 @@ export declare const ContainerInstanceField: {
|
|
|
1177
1179
|
export type ContainerInstanceField =
|
|
1178
1180
|
(typeof ContainerInstanceField)[keyof typeof ContainerInstanceField];
|
|
1179
1181
|
export interface DescribeContainerInstancesRequest {
|
|
1180
|
-
cluster?: string;
|
|
1182
|
+
cluster?: string | undefined;
|
|
1181
1183
|
containerInstances: string[] | undefined;
|
|
1182
|
-
include?: ContainerInstanceField[];
|
|
1184
|
+
include?: ContainerInstanceField[] | undefined;
|
|
1183
1185
|
}
|
|
1184
1186
|
export interface DescribeContainerInstancesResponse {
|
|
1185
|
-
containerInstances?: ContainerInstance[];
|
|
1186
|
-
failures?: Failure[];
|
|
1187
|
+
containerInstances?: ContainerInstance[] | undefined;
|
|
1188
|
+
failures?: Failure[] | undefined;
|
|
1187
1189
|
}
|
|
1188
1190
|
export interface DescribeServiceDeploymentsRequest {
|
|
1189
1191
|
serviceDeploymentArns: string[] | undefined;
|
|
@@ -1197,25 +1199,25 @@ export declare const ServiceDeploymentRollbackMonitorsStatus: {
|
|
|
1197
1199
|
export type ServiceDeploymentRollbackMonitorsStatus =
|
|
1198
1200
|
(typeof ServiceDeploymentRollbackMonitorsStatus)[keyof typeof ServiceDeploymentRollbackMonitorsStatus];
|
|
1199
1201
|
export interface ServiceDeploymentAlarms {
|
|
1200
|
-
status?: ServiceDeploymentRollbackMonitorsStatus;
|
|
1201
|
-
alarmNames?: string[];
|
|
1202
|
-
triggeredAlarmNames?: string[];
|
|
1202
|
+
status?: ServiceDeploymentRollbackMonitorsStatus | undefined;
|
|
1203
|
+
alarmNames?: string[] | undefined;
|
|
1204
|
+
triggeredAlarmNames?: string[] | undefined;
|
|
1203
1205
|
}
|
|
1204
1206
|
export interface ServiceDeploymentCircuitBreaker {
|
|
1205
|
-
status?: ServiceDeploymentRollbackMonitorsStatus;
|
|
1206
|
-
failureCount?: number;
|
|
1207
|
-
threshold?: number;
|
|
1207
|
+
status?: ServiceDeploymentRollbackMonitorsStatus | undefined;
|
|
1208
|
+
failureCount?: number | undefined;
|
|
1209
|
+
threshold?: number | undefined;
|
|
1208
1210
|
}
|
|
1209
1211
|
export interface Rollback {
|
|
1210
|
-
reason?: string;
|
|
1211
|
-
startedAt?: Date;
|
|
1212
|
-
serviceRevisionArn?: string;
|
|
1212
|
+
reason?: string | undefined;
|
|
1213
|
+
startedAt?: Date | undefined;
|
|
1214
|
+
serviceRevisionArn?: string | undefined;
|
|
1213
1215
|
}
|
|
1214
1216
|
export interface ServiceRevisionSummary {
|
|
1215
|
-
arn?: string;
|
|
1216
|
-
requestedTaskCount?: number;
|
|
1217
|
-
runningTaskCount?: number;
|
|
1218
|
-
pendingTaskCount?: number;
|
|
1217
|
+
arn?: string | undefined;
|
|
1218
|
+
requestedTaskCount?: number | undefined;
|
|
1219
|
+
runningTaskCount?: number | undefined;
|
|
1220
|
+
pendingTaskCount?: number | undefined;
|
|
1219
1221
|
}
|
|
1220
1222
|
export declare const ServiceDeploymentStatus: {
|
|
1221
1223
|
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
@@ -1230,70 +1232,70 @@ export declare const ServiceDeploymentStatus: {
|
|
|
1230
1232
|
export type ServiceDeploymentStatus =
|
|
1231
1233
|
(typeof ServiceDeploymentStatus)[keyof typeof ServiceDeploymentStatus];
|
|
1232
1234
|
export interface ServiceDeployment {
|
|
1233
|
-
serviceDeploymentArn?: string;
|
|
1234
|
-
serviceArn?: string;
|
|
1235
|
-
clusterArn?: string;
|
|
1236
|
-
createdAt?: Date;
|
|
1237
|
-
startedAt?: Date;
|
|
1238
|
-
finishedAt?: Date;
|
|
1239
|
-
stoppedAt?: Date;
|
|
1240
|
-
updatedAt?: Date;
|
|
1241
|
-
sourceServiceRevisions?: ServiceRevisionSummary[];
|
|
1242
|
-
targetServiceRevision?: ServiceRevisionSummary;
|
|
1243
|
-
status?: ServiceDeploymentStatus;
|
|
1244
|
-
statusReason?: string;
|
|
1245
|
-
deploymentConfiguration?: DeploymentConfiguration;
|
|
1246
|
-
rollback?: Rollback;
|
|
1247
|
-
deploymentCircuitBreaker?: ServiceDeploymentCircuitBreaker;
|
|
1248
|
-
alarms?: ServiceDeploymentAlarms;
|
|
1235
|
+
serviceDeploymentArn?: string | undefined;
|
|
1236
|
+
serviceArn?: string | undefined;
|
|
1237
|
+
clusterArn?: string | undefined;
|
|
1238
|
+
createdAt?: Date | undefined;
|
|
1239
|
+
startedAt?: Date | undefined;
|
|
1240
|
+
finishedAt?: Date | undefined;
|
|
1241
|
+
stoppedAt?: Date | undefined;
|
|
1242
|
+
updatedAt?: Date | undefined;
|
|
1243
|
+
sourceServiceRevisions?: ServiceRevisionSummary[] | undefined;
|
|
1244
|
+
targetServiceRevision?: ServiceRevisionSummary | undefined;
|
|
1245
|
+
status?: ServiceDeploymentStatus | undefined;
|
|
1246
|
+
statusReason?: string | undefined;
|
|
1247
|
+
deploymentConfiguration?: DeploymentConfiguration | undefined;
|
|
1248
|
+
rollback?: Rollback | undefined;
|
|
1249
|
+
deploymentCircuitBreaker?: ServiceDeploymentCircuitBreaker | undefined;
|
|
1250
|
+
alarms?: ServiceDeploymentAlarms | undefined;
|
|
1249
1251
|
}
|
|
1250
1252
|
export interface DescribeServiceDeploymentsResponse {
|
|
1251
|
-
serviceDeployments?: ServiceDeployment[];
|
|
1252
|
-
failures?: Failure[];
|
|
1253
|
+
serviceDeployments?: ServiceDeployment[] | undefined;
|
|
1254
|
+
failures?: Failure[] | undefined;
|
|
1253
1255
|
}
|
|
1254
1256
|
export interface DescribeServiceRevisionsRequest {
|
|
1255
1257
|
serviceRevisionArns: string[] | undefined;
|
|
1256
1258
|
}
|
|
1257
1259
|
export interface ContainerImage {
|
|
1258
|
-
containerName?: string;
|
|
1259
|
-
imageDigest?: string;
|
|
1260
|
-
image?: string;
|
|
1260
|
+
containerName?: string | undefined;
|
|
1261
|
+
imageDigest?: string | undefined;
|
|
1262
|
+
image?: string | undefined;
|
|
1261
1263
|
}
|
|
1262
1264
|
export interface ServiceRevision {
|
|
1263
|
-
serviceRevisionArn?: string;
|
|
1264
|
-
serviceArn?: string;
|
|
1265
|
-
clusterArn?: string;
|
|
1266
|
-
taskDefinition?: string;
|
|
1267
|
-
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
1268
|
-
launchType?: LaunchType;
|
|
1269
|
-
platformVersion?: string;
|
|
1270
|
-
platformFamily?: string;
|
|
1271
|
-
loadBalancers?: LoadBalancer[];
|
|
1272
|
-
serviceRegistries?: ServiceRegistry[];
|
|
1273
|
-
networkConfiguration?: NetworkConfiguration;
|
|
1274
|
-
containerImages?: ContainerImage[];
|
|
1275
|
-
guardDutyEnabled?: boolean;
|
|
1276
|
-
serviceConnectConfiguration?: ServiceConnectConfiguration;
|
|
1277
|
-
volumeConfigurations?: ServiceVolumeConfiguration[];
|
|
1278
|
-
fargateEphemeralStorage?: DeploymentEphemeralStorage;
|
|
1279
|
-
createdAt?: Date;
|
|
1265
|
+
serviceRevisionArn?: string | undefined;
|
|
1266
|
+
serviceArn?: string | undefined;
|
|
1267
|
+
clusterArn?: string | undefined;
|
|
1268
|
+
taskDefinition?: string | undefined;
|
|
1269
|
+
capacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
1270
|
+
launchType?: LaunchType | undefined;
|
|
1271
|
+
platformVersion?: string | undefined;
|
|
1272
|
+
platformFamily?: string | undefined;
|
|
1273
|
+
loadBalancers?: LoadBalancer[] | undefined;
|
|
1274
|
+
serviceRegistries?: ServiceRegistry[] | undefined;
|
|
1275
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
1276
|
+
containerImages?: ContainerImage[] | undefined;
|
|
1277
|
+
guardDutyEnabled?: boolean | undefined;
|
|
1278
|
+
serviceConnectConfiguration?: ServiceConnectConfiguration | undefined;
|
|
1279
|
+
volumeConfigurations?: ServiceVolumeConfiguration[] | undefined;
|
|
1280
|
+
fargateEphemeralStorage?: DeploymentEphemeralStorage | undefined;
|
|
1281
|
+
createdAt?: Date | undefined;
|
|
1280
1282
|
}
|
|
1281
1283
|
export interface DescribeServiceRevisionsResponse {
|
|
1282
|
-
serviceRevisions?: ServiceRevision[];
|
|
1283
|
-
failures?: Failure[];
|
|
1284
|
+
serviceRevisions?: ServiceRevision[] | undefined;
|
|
1285
|
+
failures?: Failure[] | undefined;
|
|
1284
1286
|
}
|
|
1285
1287
|
export declare const ServiceField: {
|
|
1286
1288
|
readonly TAGS: "TAGS";
|
|
1287
1289
|
};
|
|
1288
1290
|
export type ServiceField = (typeof ServiceField)[keyof typeof ServiceField];
|
|
1289
1291
|
export interface DescribeServicesRequest {
|
|
1290
|
-
cluster?: string;
|
|
1292
|
+
cluster?: string | undefined;
|
|
1291
1293
|
services: string[] | undefined;
|
|
1292
|
-
include?: ServiceField[];
|
|
1294
|
+
include?: ServiceField[] | undefined;
|
|
1293
1295
|
}
|
|
1294
1296
|
export interface DescribeServicesResponse {
|
|
1295
|
-
services?: Service[];
|
|
1296
|
-
failures?: Failure[];
|
|
1297
|
+
services?: Service[] | undefined;
|
|
1298
|
+
failures?: Failure[] | undefined;
|
|
1297
1299
|
}
|
|
1298
1300
|
export declare const TaskDefinitionField: {
|
|
1299
1301
|
readonly TAGS: "TAGS";
|
|
@@ -1302,20 +1304,20 @@ export type TaskDefinitionField =
|
|
|
1302
1304
|
(typeof TaskDefinitionField)[keyof typeof TaskDefinitionField];
|
|
1303
1305
|
export interface DescribeTaskDefinitionRequest {
|
|
1304
1306
|
taskDefinition: string | undefined;
|
|
1305
|
-
include?: TaskDefinitionField[];
|
|
1307
|
+
include?: TaskDefinitionField[] | undefined;
|
|
1306
1308
|
}
|
|
1307
1309
|
export interface DescribeTaskDefinitionResponse {
|
|
1308
|
-
taskDefinition?: TaskDefinition;
|
|
1309
|
-
tags?: Tag[];
|
|
1310
|
+
taskDefinition?: TaskDefinition | undefined;
|
|
1311
|
+
tags?: Tag[] | undefined;
|
|
1310
1312
|
}
|
|
1311
1313
|
export declare const TaskField: {
|
|
1312
1314
|
readonly TAGS: "TAGS";
|
|
1313
1315
|
};
|
|
1314
1316
|
export type TaskField = (typeof TaskField)[keyof typeof TaskField];
|
|
1315
1317
|
export interface DescribeTasksRequest {
|
|
1316
|
-
cluster?: string;
|
|
1318
|
+
cluster?: string | undefined;
|
|
1317
1319
|
tasks: string[] | undefined;
|
|
1318
|
-
include?: TaskField[];
|
|
1320
|
+
include?: TaskField[] | undefined;
|
|
1319
1321
|
}
|
|
1320
1322
|
export declare const Connectivity: {
|
|
1321
1323
|
readonly CONNECTED: "CONNECTED";
|
|
@@ -1334,69 +1336,69 @@ export declare const ManagedAgentName: {
|
|
|
1334
1336
|
export type ManagedAgentName =
|
|
1335
1337
|
(typeof ManagedAgentName)[keyof typeof ManagedAgentName];
|
|
1336
1338
|
export interface ManagedAgent {
|
|
1337
|
-
lastStartedAt?: Date;
|
|
1338
|
-
name?: ManagedAgentName;
|
|
1339
|
-
reason?: string;
|
|
1340
|
-
lastStatus?: string;
|
|
1339
|
+
lastStartedAt?: Date | undefined;
|
|
1340
|
+
name?: ManagedAgentName | undefined;
|
|
1341
|
+
reason?: string | undefined;
|
|
1342
|
+
lastStatus?: string | undefined;
|
|
1341
1343
|
}
|
|
1342
1344
|
export interface NetworkBinding {
|
|
1343
|
-
bindIP?: string;
|
|
1344
|
-
containerPort?: number;
|
|
1345
|
-
hostPort?: number;
|
|
1346
|
-
protocol?: TransportProtocol;
|
|
1347
|
-
containerPortRange?: string;
|
|
1348
|
-
hostPortRange?: string;
|
|
1345
|
+
bindIP?: string | undefined;
|
|
1346
|
+
containerPort?: number | undefined;
|
|
1347
|
+
hostPort?: number | undefined;
|
|
1348
|
+
protocol?: TransportProtocol | undefined;
|
|
1349
|
+
containerPortRange?: string | undefined;
|
|
1350
|
+
hostPortRange?: string | undefined;
|
|
1349
1351
|
}
|
|
1350
1352
|
export interface NetworkInterface {
|
|
1351
|
-
attachmentId?: string;
|
|
1352
|
-
privateIpv4Address?: string;
|
|
1353
|
-
ipv6Address?: string;
|
|
1353
|
+
attachmentId?: string | undefined;
|
|
1354
|
+
privateIpv4Address?: string | undefined;
|
|
1355
|
+
ipv6Address?: string | undefined;
|
|
1354
1356
|
}
|
|
1355
1357
|
export interface Container {
|
|
1356
|
-
containerArn?: string;
|
|
1357
|
-
taskArn?: string;
|
|
1358
|
-
name?: string;
|
|
1359
|
-
image?: string;
|
|
1360
|
-
imageDigest?: string;
|
|
1361
|
-
runtimeId?: string;
|
|
1362
|
-
lastStatus?: string;
|
|
1363
|
-
exitCode?: number;
|
|
1364
|
-
reason?: string;
|
|
1365
|
-
networkBindings?: NetworkBinding[];
|
|
1366
|
-
networkInterfaces?: NetworkInterface[];
|
|
1367
|
-
healthStatus?: HealthStatus;
|
|
1368
|
-
managedAgents?: ManagedAgent[];
|
|
1369
|
-
cpu?: string;
|
|
1370
|
-
memory?: string;
|
|
1371
|
-
memoryReservation?: string;
|
|
1372
|
-
gpuIds?: string[];
|
|
1358
|
+
containerArn?: string | undefined;
|
|
1359
|
+
taskArn?: string | undefined;
|
|
1360
|
+
name?: string | undefined;
|
|
1361
|
+
image?: string | undefined;
|
|
1362
|
+
imageDigest?: string | undefined;
|
|
1363
|
+
runtimeId?: string | undefined;
|
|
1364
|
+
lastStatus?: string | undefined;
|
|
1365
|
+
exitCode?: number | undefined;
|
|
1366
|
+
reason?: string | undefined;
|
|
1367
|
+
networkBindings?: NetworkBinding[] | undefined;
|
|
1368
|
+
networkInterfaces?: NetworkInterface[] | undefined;
|
|
1369
|
+
healthStatus?: HealthStatus | undefined;
|
|
1370
|
+
managedAgents?: ManagedAgent[] | undefined;
|
|
1371
|
+
cpu?: string | undefined;
|
|
1372
|
+
memory?: string | undefined;
|
|
1373
|
+
memoryReservation?: string | undefined;
|
|
1374
|
+
gpuIds?: string[] | undefined;
|
|
1373
1375
|
}
|
|
1374
1376
|
export interface TaskEphemeralStorage {
|
|
1375
|
-
sizeInGiB?: number;
|
|
1376
|
-
kmsKeyId?: string;
|
|
1377
|
+
sizeInGiB?: number | undefined;
|
|
1378
|
+
kmsKeyId?: string | undefined;
|
|
1377
1379
|
}
|
|
1378
1380
|
export interface ContainerOverride {
|
|
1379
|
-
name?: string;
|
|
1380
|
-
command?: string[];
|
|
1381
|
-
environment?: KeyValuePair[];
|
|
1382
|
-
environmentFiles?: EnvironmentFile[];
|
|
1383
|
-
cpu?: number;
|
|
1384
|
-
memory?: number;
|
|
1385
|
-
memoryReservation?: number;
|
|
1386
|
-
resourceRequirements?: ResourceRequirement[];
|
|
1381
|
+
name?: string | undefined;
|
|
1382
|
+
command?: string[] | undefined;
|
|
1383
|
+
environment?: KeyValuePair[] | undefined;
|
|
1384
|
+
environmentFiles?: EnvironmentFile[] | undefined;
|
|
1385
|
+
cpu?: number | undefined;
|
|
1386
|
+
memory?: number | undefined;
|
|
1387
|
+
memoryReservation?: number | undefined;
|
|
1388
|
+
resourceRequirements?: ResourceRequirement[] | undefined;
|
|
1387
1389
|
}
|
|
1388
1390
|
export interface InferenceAcceleratorOverride {
|
|
1389
|
-
deviceName?: string;
|
|
1390
|
-
deviceType?: string;
|
|
1391
|
+
deviceName?: string | undefined;
|
|
1392
|
+
deviceType?: string | undefined;
|
|
1391
1393
|
}
|
|
1392
1394
|
export interface TaskOverride {
|
|
1393
|
-
containerOverrides?: ContainerOverride[];
|
|
1394
|
-
cpu?: string;
|
|
1395
|
-
inferenceAcceleratorOverrides?: InferenceAcceleratorOverride[];
|
|
1396
|
-
executionRoleArn?: string;
|
|
1397
|
-
memory?: string;
|
|
1398
|
-
taskRoleArn?: string;
|
|
1399
|
-
ephemeralStorage?: EphemeralStorage;
|
|
1395
|
+
containerOverrides?: ContainerOverride[] | undefined;
|
|
1396
|
+
cpu?: string | undefined;
|
|
1397
|
+
inferenceAcceleratorOverrides?: InferenceAcceleratorOverride[] | undefined;
|
|
1398
|
+
executionRoleArn?: string | undefined;
|
|
1399
|
+
memory?: string | undefined;
|
|
1400
|
+
taskRoleArn?: string | undefined;
|
|
1401
|
+
ephemeralStorage?: EphemeralStorage | undefined;
|
|
1400
1402
|
}
|
|
1401
1403
|
export declare const TaskStopCode: {
|
|
1402
1404
|
readonly ESSENTIAL_CONTAINER_EXITED: "EssentialContainerExited";
|
|
@@ -1408,47 +1410,47 @@ export declare const TaskStopCode: {
|
|
|
1408
1410
|
};
|
|
1409
1411
|
export type TaskStopCode = (typeof TaskStopCode)[keyof typeof TaskStopCode];
|
|
1410
1412
|
export interface Task {
|
|
1411
|
-
attachments?: Attachment[];
|
|
1412
|
-
attributes?: Attribute[];
|
|
1413
|
-
availabilityZone?: string;
|
|
1414
|
-
capacityProviderName?: string;
|
|
1415
|
-
clusterArn?: string;
|
|
1416
|
-
connectivity?: Connectivity;
|
|
1417
|
-
connectivityAt?: Date;
|
|
1418
|
-
containerInstanceArn?: string;
|
|
1419
|
-
containers?: Container[];
|
|
1420
|
-
cpu?: string;
|
|
1421
|
-
createdAt?: Date;
|
|
1422
|
-
desiredStatus?: string;
|
|
1423
|
-
enableExecuteCommand?: boolean;
|
|
1424
|
-
executionStoppedAt?: Date;
|
|
1425
|
-
group?: string;
|
|
1426
|
-
healthStatus?: HealthStatus;
|
|
1427
|
-
inferenceAccelerators?: InferenceAccelerator[];
|
|
1428
|
-
lastStatus?: string;
|
|
1429
|
-
launchType?: LaunchType;
|
|
1430
|
-
memory?: string;
|
|
1431
|
-
overrides?: TaskOverride;
|
|
1432
|
-
platformVersion?: string;
|
|
1433
|
-
platformFamily?: string;
|
|
1434
|
-
pullStartedAt?: Date;
|
|
1435
|
-
pullStoppedAt?: Date;
|
|
1436
|
-
startedAt?: Date;
|
|
1437
|
-
startedBy?: string;
|
|
1438
|
-
stopCode?: TaskStopCode;
|
|
1439
|
-
stoppedAt?: Date;
|
|
1440
|
-
stoppedReason?: string;
|
|
1441
|
-
stoppingAt?: Date;
|
|
1442
|
-
tags?: Tag[];
|
|
1443
|
-
taskArn?: string;
|
|
1444
|
-
taskDefinitionArn?: string;
|
|
1445
|
-
version?: number;
|
|
1446
|
-
ephemeralStorage?: EphemeralStorage;
|
|
1447
|
-
fargateEphemeralStorage?: TaskEphemeralStorage;
|
|
1413
|
+
attachments?: Attachment[] | undefined;
|
|
1414
|
+
attributes?: Attribute[] | undefined;
|
|
1415
|
+
availabilityZone?: string | undefined;
|
|
1416
|
+
capacityProviderName?: string | undefined;
|
|
1417
|
+
clusterArn?: string | undefined;
|
|
1418
|
+
connectivity?: Connectivity | undefined;
|
|
1419
|
+
connectivityAt?: Date | undefined;
|
|
1420
|
+
containerInstanceArn?: string | undefined;
|
|
1421
|
+
containers?: Container[] | undefined;
|
|
1422
|
+
cpu?: string | undefined;
|
|
1423
|
+
createdAt?: Date | undefined;
|
|
1424
|
+
desiredStatus?: string | undefined;
|
|
1425
|
+
enableExecuteCommand?: boolean | undefined;
|
|
1426
|
+
executionStoppedAt?: Date | undefined;
|
|
1427
|
+
group?: string | undefined;
|
|
1428
|
+
healthStatus?: HealthStatus | undefined;
|
|
1429
|
+
inferenceAccelerators?: InferenceAccelerator[] | undefined;
|
|
1430
|
+
lastStatus?: string | undefined;
|
|
1431
|
+
launchType?: LaunchType | undefined;
|
|
1432
|
+
memory?: string | undefined;
|
|
1433
|
+
overrides?: TaskOverride | undefined;
|
|
1434
|
+
platformVersion?: string | undefined;
|
|
1435
|
+
platformFamily?: string | undefined;
|
|
1436
|
+
pullStartedAt?: Date | undefined;
|
|
1437
|
+
pullStoppedAt?: Date | undefined;
|
|
1438
|
+
startedAt?: Date | undefined;
|
|
1439
|
+
startedBy?: string | undefined;
|
|
1440
|
+
stopCode?: TaskStopCode | undefined;
|
|
1441
|
+
stoppedAt?: Date | undefined;
|
|
1442
|
+
stoppedReason?: string | undefined;
|
|
1443
|
+
stoppingAt?: Date | undefined;
|
|
1444
|
+
tags?: Tag[] | undefined;
|
|
1445
|
+
taskArn?: string | undefined;
|
|
1446
|
+
taskDefinitionArn?: string | undefined;
|
|
1447
|
+
version?: number | undefined;
|
|
1448
|
+
ephemeralStorage?: EphemeralStorage | undefined;
|
|
1449
|
+
fargateEphemeralStorage?: TaskEphemeralStorage | undefined;
|
|
1448
1450
|
}
|
|
1449
1451
|
export interface DescribeTasksResponse {
|
|
1450
|
-
tasks?: Task[];
|
|
1451
|
-
failures?: Failure[];
|
|
1452
|
+
tasks?: Task[] | undefined;
|
|
1453
|
+
failures?: Failure[] | undefined;
|
|
1452
1454
|
}
|
|
1453
1455
|
export declare const TaskSetField: {
|
|
1454
1456
|
readonly TAGS: "TAGS";
|
|
@@ -1457,41 +1459,41 @@ export type TaskSetField = (typeof TaskSetField)[keyof typeof TaskSetField];
|
|
|
1457
1459
|
export interface DescribeTaskSetsRequest {
|
|
1458
1460
|
cluster: string | undefined;
|
|
1459
1461
|
service: string | undefined;
|
|
1460
|
-
taskSets?: string[];
|
|
1461
|
-
include?: TaskSetField[];
|
|
1462
|
+
taskSets?: string[] | undefined;
|
|
1463
|
+
include?: TaskSetField[] | undefined;
|
|
1462
1464
|
}
|
|
1463
1465
|
export interface DescribeTaskSetsResponse {
|
|
1464
|
-
taskSets?: TaskSet[];
|
|
1465
|
-
failures?: Failure[];
|
|
1466
|
+
taskSets?: TaskSet[] | undefined;
|
|
1467
|
+
failures?: Failure[] | undefined;
|
|
1466
1468
|
}
|
|
1467
1469
|
export interface DiscoverPollEndpointRequest {
|
|
1468
|
-
containerInstance?: string;
|
|
1469
|
-
cluster?: string;
|
|
1470
|
+
containerInstance?: string | undefined;
|
|
1471
|
+
cluster?: string | undefined;
|
|
1470
1472
|
}
|
|
1471
1473
|
export interface DiscoverPollEndpointResponse {
|
|
1472
|
-
endpoint?: string;
|
|
1473
|
-
telemetryEndpoint?: string;
|
|
1474
|
-
serviceConnectEndpoint?: string;
|
|
1474
|
+
endpoint?: string | undefined;
|
|
1475
|
+
telemetryEndpoint?: string | undefined;
|
|
1476
|
+
serviceConnectEndpoint?: string | undefined;
|
|
1475
1477
|
}
|
|
1476
1478
|
export interface ExecuteCommandRequest {
|
|
1477
|
-
cluster?: string;
|
|
1478
|
-
container?: string;
|
|
1479
|
+
cluster?: string | undefined;
|
|
1480
|
+
container?: string | undefined;
|
|
1479
1481
|
command: string | undefined;
|
|
1480
1482
|
interactive: boolean | undefined;
|
|
1481
1483
|
task: string | undefined;
|
|
1482
1484
|
}
|
|
1483
1485
|
export interface Session {
|
|
1484
|
-
sessionId?: string;
|
|
1485
|
-
streamUrl?: string;
|
|
1486
|
-
tokenValue?: string;
|
|
1486
|
+
sessionId?: string | undefined;
|
|
1487
|
+
streamUrl?: string | undefined;
|
|
1488
|
+
tokenValue?: string | undefined;
|
|
1487
1489
|
}
|
|
1488
1490
|
export interface ExecuteCommandResponse {
|
|
1489
|
-
clusterArn?: string;
|
|
1490
|
-
containerArn?: string;
|
|
1491
|
-
containerName?: string;
|
|
1492
|
-
interactive?: boolean;
|
|
1493
|
-
session?: Session;
|
|
1494
|
-
taskArn?: string;
|
|
1491
|
+
clusterArn?: string | undefined;
|
|
1492
|
+
containerArn?: string | undefined;
|
|
1493
|
+
containerName?: string | undefined;
|
|
1494
|
+
interactive?: boolean | undefined;
|
|
1495
|
+
session?: Session | undefined;
|
|
1496
|
+
taskArn?: string | undefined;
|
|
1495
1497
|
}
|
|
1496
1498
|
export declare class TargetNotConnectedException extends __BaseException {
|
|
1497
1499
|
readonly name: "TargetNotConnectedException";
|
|
@@ -1502,16 +1504,16 @@ export declare class TargetNotConnectedException extends __BaseException {
|
|
|
1502
1504
|
}
|
|
1503
1505
|
export interface GetTaskProtectionRequest {
|
|
1504
1506
|
cluster: string | undefined;
|
|
1505
|
-
tasks?: string[];
|
|
1507
|
+
tasks?: string[] | undefined;
|
|
1506
1508
|
}
|
|
1507
1509
|
export interface ProtectedTask {
|
|
1508
|
-
taskArn?: string;
|
|
1509
|
-
protectionEnabled?: boolean;
|
|
1510
|
-
expirationDate?: Date;
|
|
1510
|
+
taskArn?: string | undefined;
|
|
1511
|
+
protectionEnabled?: boolean | undefined;
|
|
1512
|
+
expirationDate?: Date | undefined;
|
|
1511
1513
|
}
|
|
1512
1514
|
export interface GetTaskProtectionResponse {
|
|
1513
|
-
protectedTasks?: ProtectedTask[];
|
|
1514
|
-
failures?: Failure[];
|
|
1515
|
+
protectedTasks?: ProtectedTask[] | undefined;
|
|
1516
|
+
failures?: Failure[] | undefined;
|
|
1515
1517
|
}
|
|
1516
1518
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
1517
1519
|
readonly name: "ResourceNotFoundException";
|
|
@@ -1521,36 +1523,36 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
1521
1523
|
);
|
|
1522
1524
|
}
|
|
1523
1525
|
export interface ListAccountSettingsRequest {
|
|
1524
|
-
name?: SettingName;
|
|
1525
|
-
value?: string;
|
|
1526
|
-
principalArn?: string;
|
|
1527
|
-
effectiveSettings?: boolean;
|
|
1528
|
-
nextToken?: string;
|
|
1529
|
-
maxResults?: number;
|
|
1526
|
+
name?: SettingName | undefined;
|
|
1527
|
+
value?: string | undefined;
|
|
1528
|
+
principalArn?: string | undefined;
|
|
1529
|
+
effectiveSettings?: boolean | undefined;
|
|
1530
|
+
nextToken?: string | undefined;
|
|
1531
|
+
maxResults?: number | undefined;
|
|
1530
1532
|
}
|
|
1531
1533
|
export interface ListAccountSettingsResponse {
|
|
1532
|
-
settings?: Setting[];
|
|
1533
|
-
nextToken?: string;
|
|
1534
|
+
settings?: Setting[] | undefined;
|
|
1535
|
+
nextToken?: string | undefined;
|
|
1534
1536
|
}
|
|
1535
1537
|
export interface ListAttributesRequest {
|
|
1536
|
-
cluster?: string;
|
|
1538
|
+
cluster?: string | undefined;
|
|
1537
1539
|
targetType: TargetType | undefined;
|
|
1538
|
-
attributeName?: string;
|
|
1539
|
-
attributeValue?: string;
|
|
1540
|
-
nextToken?: string;
|
|
1541
|
-
maxResults?: number;
|
|
1540
|
+
attributeName?: string | undefined;
|
|
1541
|
+
attributeValue?: string | undefined;
|
|
1542
|
+
nextToken?: string | undefined;
|
|
1543
|
+
maxResults?: number | undefined;
|
|
1542
1544
|
}
|
|
1543
1545
|
export interface ListAttributesResponse {
|
|
1544
|
-
attributes?: Attribute[];
|
|
1545
|
-
nextToken?: string;
|
|
1546
|
+
attributes?: Attribute[] | undefined;
|
|
1547
|
+
nextToken?: string | undefined;
|
|
1546
1548
|
}
|
|
1547
1549
|
export interface ListClustersRequest {
|
|
1548
|
-
nextToken?: string;
|
|
1549
|
-
maxResults?: number;
|
|
1550
|
+
nextToken?: string | undefined;
|
|
1551
|
+
maxResults?: number | undefined;
|
|
1550
1552
|
}
|
|
1551
1553
|
export interface ListClustersResponse {
|
|
1552
|
-
clusterArns?: string[];
|
|
1553
|
-
nextToken?: string;
|
|
1554
|
+
clusterArns?: string[] | undefined;
|
|
1555
|
+
nextToken?: string | undefined;
|
|
1554
1556
|
}
|
|
1555
1557
|
export declare const ContainerInstanceStatus: {
|
|
1556
1558
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -1562,68 +1564,68 @@ export declare const ContainerInstanceStatus: {
|
|
|
1562
1564
|
export type ContainerInstanceStatus =
|
|
1563
1565
|
(typeof ContainerInstanceStatus)[keyof typeof ContainerInstanceStatus];
|
|
1564
1566
|
export interface ListContainerInstancesRequest {
|
|
1565
|
-
cluster?: string;
|
|
1566
|
-
filter?: string;
|
|
1567
|
-
nextToken?: string;
|
|
1568
|
-
maxResults?: number;
|
|
1569
|
-
status?: ContainerInstanceStatus;
|
|
1567
|
+
cluster?: string | undefined;
|
|
1568
|
+
filter?: string | undefined;
|
|
1569
|
+
nextToken?: string | undefined;
|
|
1570
|
+
maxResults?: number | undefined;
|
|
1571
|
+
status?: ContainerInstanceStatus | undefined;
|
|
1570
1572
|
}
|
|
1571
1573
|
export interface ListContainerInstancesResponse {
|
|
1572
|
-
containerInstanceArns?: string[];
|
|
1573
|
-
nextToken?: string;
|
|
1574
|
+
containerInstanceArns?: string[] | undefined;
|
|
1575
|
+
nextToken?: string | undefined;
|
|
1574
1576
|
}
|
|
1575
1577
|
export interface CreatedAt {
|
|
1576
|
-
before?: Date;
|
|
1577
|
-
after?: Date;
|
|
1578
|
+
before?: Date | undefined;
|
|
1579
|
+
after?: Date | undefined;
|
|
1578
1580
|
}
|
|
1579
1581
|
export interface ListServiceDeploymentsRequest {
|
|
1580
1582
|
service: string | undefined;
|
|
1581
|
-
cluster?: string;
|
|
1582
|
-
status?: ServiceDeploymentStatus[];
|
|
1583
|
-
createdAt?: CreatedAt;
|
|
1584
|
-
nextToken?: string;
|
|
1585
|
-
maxResults?: number;
|
|
1583
|
+
cluster?: string | undefined;
|
|
1584
|
+
status?: ServiceDeploymentStatus[] | undefined;
|
|
1585
|
+
createdAt?: CreatedAt | undefined;
|
|
1586
|
+
nextToken?: string | undefined;
|
|
1587
|
+
maxResults?: number | undefined;
|
|
1586
1588
|
}
|
|
1587
1589
|
export interface ServiceDeploymentBrief {
|
|
1588
|
-
serviceDeploymentArn?: string;
|
|
1589
|
-
serviceArn?: string;
|
|
1590
|
-
clusterArn?: string;
|
|
1591
|
-
startedAt?: Date;
|
|
1592
|
-
createdAt?: Date;
|
|
1593
|
-
finishedAt?: Date;
|
|
1594
|
-
targetServiceRevisionArn?: string;
|
|
1595
|
-
status?: ServiceDeploymentStatus;
|
|
1596
|
-
statusReason?: string;
|
|
1590
|
+
serviceDeploymentArn?: string | undefined;
|
|
1591
|
+
serviceArn?: string | undefined;
|
|
1592
|
+
clusterArn?: string | undefined;
|
|
1593
|
+
startedAt?: Date | undefined;
|
|
1594
|
+
createdAt?: Date | undefined;
|
|
1595
|
+
finishedAt?: Date | undefined;
|
|
1596
|
+
targetServiceRevisionArn?: string | undefined;
|
|
1597
|
+
status?: ServiceDeploymentStatus | undefined;
|
|
1598
|
+
statusReason?: string | undefined;
|
|
1597
1599
|
}
|
|
1598
1600
|
export interface ListServiceDeploymentsResponse {
|
|
1599
|
-
serviceDeployments?: ServiceDeploymentBrief[];
|
|
1600
|
-
nextToken?: string;
|
|
1601
|
+
serviceDeployments?: ServiceDeploymentBrief[] | undefined;
|
|
1602
|
+
nextToken?: string | undefined;
|
|
1601
1603
|
}
|
|
1602
1604
|
export interface ListServicesRequest {
|
|
1603
|
-
cluster?: string;
|
|
1604
|
-
nextToken?: string;
|
|
1605
|
-
maxResults?: number;
|
|
1606
|
-
launchType?: LaunchType;
|
|
1607
|
-
schedulingStrategy?: SchedulingStrategy;
|
|
1605
|
+
cluster?: string | undefined;
|
|
1606
|
+
nextToken?: string | undefined;
|
|
1607
|
+
maxResults?: number | undefined;
|
|
1608
|
+
launchType?: LaunchType | undefined;
|
|
1609
|
+
schedulingStrategy?: SchedulingStrategy | undefined;
|
|
1608
1610
|
}
|
|
1609
1611
|
export interface ListServicesResponse {
|
|
1610
|
-
serviceArns?: string[];
|
|
1611
|
-
nextToken?: string;
|
|
1612
|
+
serviceArns?: string[] | undefined;
|
|
1613
|
+
nextToken?: string | undefined;
|
|
1612
1614
|
}
|
|
1613
1615
|
export interface ListServicesByNamespaceRequest {
|
|
1614
1616
|
namespace: string | undefined;
|
|
1615
|
-
nextToken?: string;
|
|
1616
|
-
maxResults?: number;
|
|
1617
|
+
nextToken?: string | undefined;
|
|
1618
|
+
maxResults?: number | undefined;
|
|
1617
1619
|
}
|
|
1618
1620
|
export interface ListServicesByNamespaceResponse {
|
|
1619
|
-
serviceArns?: string[];
|
|
1620
|
-
nextToken?: string;
|
|
1621
|
+
serviceArns?: string[] | undefined;
|
|
1622
|
+
nextToken?: string | undefined;
|
|
1621
1623
|
}
|
|
1622
1624
|
export interface ListTagsForResourceRequest {
|
|
1623
1625
|
resourceArn: string | undefined;
|
|
1624
1626
|
}
|
|
1625
1627
|
export interface ListTagsForResourceResponse {
|
|
1626
|
-
tags?: Tag[];
|
|
1628
|
+
tags?: Tag[] | undefined;
|
|
1627
1629
|
}
|
|
1628
1630
|
export declare const TaskDefinitionFamilyStatus: {
|
|
1629
1631
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -1633,14 +1635,14 @@ export declare const TaskDefinitionFamilyStatus: {
|
|
|
1633
1635
|
export type TaskDefinitionFamilyStatus =
|
|
1634
1636
|
(typeof TaskDefinitionFamilyStatus)[keyof typeof TaskDefinitionFamilyStatus];
|
|
1635
1637
|
export interface ListTaskDefinitionFamiliesRequest {
|
|
1636
|
-
familyPrefix?: string;
|
|
1637
|
-
status?: TaskDefinitionFamilyStatus;
|
|
1638
|
-
nextToken?: string;
|
|
1639
|
-
maxResults?: number;
|
|
1638
|
+
familyPrefix?: string | undefined;
|
|
1639
|
+
status?: TaskDefinitionFamilyStatus | undefined;
|
|
1640
|
+
nextToken?: string | undefined;
|
|
1641
|
+
maxResults?: number | undefined;
|
|
1640
1642
|
}
|
|
1641
1643
|
export interface ListTaskDefinitionFamiliesResponse {
|
|
1642
|
-
families?: string[];
|
|
1643
|
-
nextToken?: string;
|
|
1644
|
+
families?: string[] | undefined;
|
|
1645
|
+
nextToken?: string | undefined;
|
|
1644
1646
|
}
|
|
1645
1647
|
export declare const SortOrder: {
|
|
1646
1648
|
readonly ASC: "ASC";
|
|
@@ -1648,15 +1650,15 @@ export declare const SortOrder: {
|
|
|
1648
1650
|
};
|
|
1649
1651
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1650
1652
|
export interface ListTaskDefinitionsRequest {
|
|
1651
|
-
familyPrefix?: string;
|
|
1652
|
-
status?: TaskDefinitionStatus;
|
|
1653
|
-
sort?: SortOrder;
|
|
1654
|
-
nextToken?: string;
|
|
1655
|
-
maxResults?: number;
|
|
1653
|
+
familyPrefix?: string | undefined;
|
|
1654
|
+
status?: TaskDefinitionStatus | undefined;
|
|
1655
|
+
sort?: SortOrder | undefined;
|
|
1656
|
+
nextToken?: string | undefined;
|
|
1657
|
+
maxResults?: number | undefined;
|
|
1656
1658
|
}
|
|
1657
1659
|
export interface ListTaskDefinitionsResponse {
|
|
1658
|
-
taskDefinitionArns?: string[];
|
|
1659
|
-
nextToken?: string;
|
|
1660
|
+
taskDefinitionArns?: string[] | undefined;
|
|
1661
|
+
nextToken?: string | undefined;
|
|
1660
1662
|
}
|
|
1661
1663
|
export declare const DesiredStatus: {
|
|
1662
1664
|
readonly PENDING: "PENDING";
|
|
@@ -1665,34 +1667,34 @@ export declare const DesiredStatus: {
|
|
|
1665
1667
|
};
|
|
1666
1668
|
export type DesiredStatus = (typeof DesiredStatus)[keyof typeof DesiredStatus];
|
|
1667
1669
|
export interface ListTasksRequest {
|
|
1668
|
-
cluster?: string;
|
|
1669
|
-
containerInstance?: string;
|
|
1670
|
-
family?: string;
|
|
1671
|
-
nextToken?: string;
|
|
1672
|
-
maxResults?: number;
|
|
1673
|
-
startedBy?: string;
|
|
1674
|
-
serviceName?: string;
|
|
1675
|
-
desiredStatus?: DesiredStatus;
|
|
1676
|
-
launchType?: LaunchType;
|
|
1670
|
+
cluster?: string | undefined;
|
|
1671
|
+
containerInstance?: string | undefined;
|
|
1672
|
+
family?: string | undefined;
|
|
1673
|
+
nextToken?: string | undefined;
|
|
1674
|
+
maxResults?: number | undefined;
|
|
1675
|
+
startedBy?: string | undefined;
|
|
1676
|
+
serviceName?: string | undefined;
|
|
1677
|
+
desiredStatus?: DesiredStatus | undefined;
|
|
1678
|
+
launchType?: LaunchType | undefined;
|
|
1677
1679
|
}
|
|
1678
1680
|
export interface ListTasksResponse {
|
|
1679
|
-
taskArns?: string[];
|
|
1680
|
-
nextToken?: string;
|
|
1681
|
+
taskArns?: string[] | undefined;
|
|
1682
|
+
nextToken?: string | undefined;
|
|
1681
1683
|
}
|
|
1682
1684
|
export interface PutAccountSettingRequest {
|
|
1683
1685
|
name: SettingName | undefined;
|
|
1684
1686
|
value: string | undefined;
|
|
1685
|
-
principalArn?: string;
|
|
1687
|
+
principalArn?: string | undefined;
|
|
1686
1688
|
}
|
|
1687
1689
|
export interface PutAccountSettingResponse {
|
|
1688
|
-
setting?: Setting;
|
|
1690
|
+
setting?: Setting | undefined;
|
|
1689
1691
|
}
|
|
1690
1692
|
export interface PutAccountSettingDefaultRequest {
|
|
1691
1693
|
name: SettingName | undefined;
|
|
1692
1694
|
value: string | undefined;
|
|
1693
1695
|
}
|
|
1694
1696
|
export interface PutAccountSettingDefaultResponse {
|
|
1695
|
-
setting?: Setting;
|
|
1697
|
+
setting?: Setting | undefined;
|
|
1696
1698
|
}
|
|
1697
1699
|
export declare class AttributeLimitExceededException extends __BaseException {
|
|
1698
1700
|
readonly name: "AttributeLimitExceededException";
|
|
@@ -1705,11 +1707,11 @@ export declare class AttributeLimitExceededException extends __BaseException {
|
|
|
1705
1707
|
);
|
|
1706
1708
|
}
|
|
1707
1709
|
export interface PutAttributesRequest {
|
|
1708
|
-
cluster?: string;
|
|
1710
|
+
cluster?: string | undefined;
|
|
1709
1711
|
attributes: Attribute[] | undefined;
|
|
1710
1712
|
}
|
|
1711
1713
|
export interface PutAttributesResponse {
|
|
1712
|
-
attributes?: Attribute[];
|
|
1714
|
+
attributes?: Attribute[] | undefined;
|
|
1713
1715
|
}
|
|
1714
1716
|
export interface PutClusterCapacityProvidersRequest {
|
|
1715
1717
|
cluster: string | undefined;
|
|
@@ -1717,7 +1719,7 @@ export interface PutClusterCapacityProvidersRequest {
|
|
|
1717
1719
|
defaultCapacityProviderStrategy: CapacityProviderStrategyItem[] | undefined;
|
|
1718
1720
|
}
|
|
1719
1721
|
export interface PutClusterCapacityProvidersResponse {
|
|
1720
|
-
cluster?: Cluster;
|
|
1722
|
+
cluster?: Cluster | undefined;
|
|
1721
1723
|
}
|
|
1722
1724
|
export declare class ResourceInUseException extends __BaseException {
|
|
1723
1725
|
readonly name: "ResourceInUseException";
|
|
@@ -1736,41 +1738,41 @@ export interface PlatformDevice {
|
|
|
1736
1738
|
type: PlatformDeviceType | undefined;
|
|
1737
1739
|
}
|
|
1738
1740
|
export interface RegisterContainerInstanceRequest {
|
|
1739
|
-
cluster?: string;
|
|
1740
|
-
instanceIdentityDocument?: string;
|
|
1741
|
-
instanceIdentityDocumentSignature?: string;
|
|
1742
|
-
totalResources?: Resource[];
|
|
1743
|
-
versionInfo?: VersionInfo;
|
|
1744
|
-
containerInstanceArn?: string;
|
|
1745
|
-
attributes?: Attribute[];
|
|
1746
|
-
platformDevices?: PlatformDevice[];
|
|
1747
|
-
tags?: Tag[];
|
|
1741
|
+
cluster?: string | undefined;
|
|
1742
|
+
instanceIdentityDocument?: string | undefined;
|
|
1743
|
+
instanceIdentityDocumentSignature?: string | undefined;
|
|
1744
|
+
totalResources?: Resource[] | undefined;
|
|
1745
|
+
versionInfo?: VersionInfo | undefined;
|
|
1746
|
+
containerInstanceArn?: string | undefined;
|
|
1747
|
+
attributes?: Attribute[] | undefined;
|
|
1748
|
+
platformDevices?: PlatformDevice[] | undefined;
|
|
1749
|
+
tags?: Tag[] | undefined;
|
|
1748
1750
|
}
|
|
1749
1751
|
export interface RegisterContainerInstanceResponse {
|
|
1750
|
-
containerInstance?: ContainerInstance;
|
|
1752
|
+
containerInstance?: ContainerInstance | undefined;
|
|
1751
1753
|
}
|
|
1752
1754
|
export interface RegisterTaskDefinitionRequest {
|
|
1753
1755
|
family: string | undefined;
|
|
1754
|
-
taskRoleArn?: string;
|
|
1755
|
-
executionRoleArn?: string;
|
|
1756
|
-
networkMode?: NetworkMode;
|
|
1756
|
+
taskRoleArn?: string | undefined;
|
|
1757
|
+
executionRoleArn?: string | undefined;
|
|
1758
|
+
networkMode?: NetworkMode | undefined;
|
|
1757
1759
|
containerDefinitions: ContainerDefinition[] | undefined;
|
|
1758
|
-
volumes?: Volume[];
|
|
1759
|
-
placementConstraints?: TaskDefinitionPlacementConstraint[];
|
|
1760
|
-
requiresCompatibilities?: Compatibility[];
|
|
1761
|
-
cpu?: string;
|
|
1762
|
-
memory?: string;
|
|
1763
|
-
tags?: Tag[];
|
|
1764
|
-
pidMode?: PidMode;
|
|
1765
|
-
ipcMode?: IpcMode;
|
|
1766
|
-
proxyConfiguration?: ProxyConfiguration;
|
|
1767
|
-
inferenceAccelerators?: InferenceAccelerator[];
|
|
1768
|
-
ephemeralStorage?: EphemeralStorage;
|
|
1769
|
-
runtimePlatform?: RuntimePlatform;
|
|
1760
|
+
volumes?: Volume[] | undefined;
|
|
1761
|
+
placementConstraints?: TaskDefinitionPlacementConstraint[] | undefined;
|
|
1762
|
+
requiresCompatibilities?: Compatibility[] | undefined;
|
|
1763
|
+
cpu?: string | undefined;
|
|
1764
|
+
memory?: string | undefined;
|
|
1765
|
+
tags?: Tag[] | undefined;
|
|
1766
|
+
pidMode?: PidMode | undefined;
|
|
1767
|
+
ipcMode?: IpcMode | undefined;
|
|
1768
|
+
proxyConfiguration?: ProxyConfiguration | undefined;
|
|
1769
|
+
inferenceAccelerators?: InferenceAccelerator[] | undefined;
|
|
1770
|
+
ephemeralStorage?: EphemeralStorage | undefined;
|
|
1771
|
+
runtimePlatform?: RuntimePlatform | undefined;
|
|
1770
1772
|
}
|
|
1771
1773
|
export interface RegisterTaskDefinitionResponse {
|
|
1772
|
-
taskDefinition?: TaskDefinition;
|
|
1773
|
-
tags?: Tag[];
|
|
1774
|
+
taskDefinition?: TaskDefinition | undefined;
|
|
1775
|
+
tags?: Tag[] | undefined;
|
|
1774
1776
|
}
|
|
1775
1777
|
export declare class BlockedException extends __BaseException {
|
|
1776
1778
|
readonly name: "BlockedException";
|
|
@@ -1780,134 +1782,134 @@ export declare class BlockedException extends __BaseException {
|
|
|
1780
1782
|
export declare class ConflictException extends __BaseException {
|
|
1781
1783
|
readonly name: "ConflictException";
|
|
1782
1784
|
readonly $fault: "client";
|
|
1783
|
-
resourceIds?: string[];
|
|
1785
|
+
resourceIds?: string[] | undefined;
|
|
1784
1786
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
1785
1787
|
}
|
|
1786
1788
|
export interface TaskManagedEBSVolumeTerminationPolicy {
|
|
1787
1789
|
deleteOnTermination: boolean | undefined;
|
|
1788
1790
|
}
|
|
1789
1791
|
export interface TaskManagedEBSVolumeConfiguration {
|
|
1790
|
-
encrypted?: boolean;
|
|
1791
|
-
kmsKeyId?: string;
|
|
1792
|
-
volumeType?: string;
|
|
1793
|
-
sizeInGiB?: number;
|
|
1794
|
-
snapshotId?: string;
|
|
1795
|
-
iops?: number;
|
|
1796
|
-
throughput?: number;
|
|
1797
|
-
tagSpecifications?: EBSTagSpecification[];
|
|
1792
|
+
encrypted?: boolean | undefined;
|
|
1793
|
+
kmsKeyId?: string | undefined;
|
|
1794
|
+
volumeType?: string | undefined;
|
|
1795
|
+
sizeInGiB?: number | undefined;
|
|
1796
|
+
snapshotId?: string | undefined;
|
|
1797
|
+
iops?: number | undefined;
|
|
1798
|
+
throughput?: number | undefined;
|
|
1799
|
+
tagSpecifications?: EBSTagSpecification[] | undefined;
|
|
1798
1800
|
roleArn: string | undefined;
|
|
1799
|
-
terminationPolicy?: TaskManagedEBSVolumeTerminationPolicy;
|
|
1800
|
-
filesystemType?: TaskFilesystemType;
|
|
1801
|
+
terminationPolicy?: TaskManagedEBSVolumeTerminationPolicy | undefined;
|
|
1802
|
+
filesystemType?: TaskFilesystemType | undefined;
|
|
1801
1803
|
}
|
|
1802
1804
|
export interface TaskVolumeConfiguration {
|
|
1803
1805
|
name: string | undefined;
|
|
1804
|
-
managedEBSVolume?: TaskManagedEBSVolumeConfiguration;
|
|
1806
|
+
managedEBSVolume?: TaskManagedEBSVolumeConfiguration | undefined;
|
|
1805
1807
|
}
|
|
1806
1808
|
export interface RunTaskRequest {
|
|
1807
|
-
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
1808
|
-
cluster?: string;
|
|
1809
|
-
count?: number;
|
|
1810
|
-
enableECSManagedTags?: boolean;
|
|
1811
|
-
enableExecuteCommand?: boolean;
|
|
1812
|
-
group?: string;
|
|
1813
|
-
launchType?: LaunchType;
|
|
1814
|
-
networkConfiguration?: NetworkConfiguration;
|
|
1815
|
-
overrides?: TaskOverride;
|
|
1816
|
-
placementConstraints?: PlacementConstraint[];
|
|
1817
|
-
placementStrategy?: PlacementStrategy[];
|
|
1818
|
-
platformVersion?: string;
|
|
1819
|
-
propagateTags?: PropagateTags;
|
|
1820
|
-
referenceId?: string;
|
|
1821
|
-
startedBy?: string;
|
|
1822
|
-
tags?: Tag[];
|
|
1809
|
+
capacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
1810
|
+
cluster?: string | undefined;
|
|
1811
|
+
count?: number | undefined;
|
|
1812
|
+
enableECSManagedTags?: boolean | undefined;
|
|
1813
|
+
enableExecuteCommand?: boolean | undefined;
|
|
1814
|
+
group?: string | undefined;
|
|
1815
|
+
launchType?: LaunchType | undefined;
|
|
1816
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
1817
|
+
overrides?: TaskOverride | undefined;
|
|
1818
|
+
placementConstraints?: PlacementConstraint[] | undefined;
|
|
1819
|
+
placementStrategy?: PlacementStrategy[] | undefined;
|
|
1820
|
+
platformVersion?: string | undefined;
|
|
1821
|
+
propagateTags?: PropagateTags | undefined;
|
|
1822
|
+
referenceId?: string | undefined;
|
|
1823
|
+
startedBy?: string | undefined;
|
|
1824
|
+
tags?: Tag[] | undefined;
|
|
1823
1825
|
taskDefinition: string | undefined;
|
|
1824
|
-
clientToken?: string;
|
|
1825
|
-
volumeConfigurations?: TaskVolumeConfiguration[];
|
|
1826
|
+
clientToken?: string | undefined;
|
|
1827
|
+
volumeConfigurations?: TaskVolumeConfiguration[] | undefined;
|
|
1826
1828
|
}
|
|
1827
1829
|
export interface RunTaskResponse {
|
|
1828
|
-
tasks?: Task[];
|
|
1829
|
-
failures?: Failure[];
|
|
1830
|
+
tasks?: Task[] | undefined;
|
|
1831
|
+
failures?: Failure[] | undefined;
|
|
1830
1832
|
}
|
|
1831
1833
|
export interface StartTaskRequest {
|
|
1832
|
-
cluster?: string;
|
|
1834
|
+
cluster?: string | undefined;
|
|
1833
1835
|
containerInstances: string[] | undefined;
|
|
1834
|
-
enableECSManagedTags?: boolean;
|
|
1835
|
-
enableExecuteCommand?: boolean;
|
|
1836
|
-
group?: string;
|
|
1837
|
-
networkConfiguration?: NetworkConfiguration;
|
|
1838
|
-
overrides?: TaskOverride;
|
|
1839
|
-
propagateTags?: PropagateTags;
|
|
1840
|
-
referenceId?: string;
|
|
1841
|
-
startedBy?: string;
|
|
1842
|
-
tags?: Tag[];
|
|
1836
|
+
enableECSManagedTags?: boolean | undefined;
|
|
1837
|
+
enableExecuteCommand?: boolean | undefined;
|
|
1838
|
+
group?: string | undefined;
|
|
1839
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
1840
|
+
overrides?: TaskOverride | undefined;
|
|
1841
|
+
propagateTags?: PropagateTags | undefined;
|
|
1842
|
+
referenceId?: string | undefined;
|
|
1843
|
+
startedBy?: string | undefined;
|
|
1844
|
+
tags?: Tag[] | undefined;
|
|
1843
1845
|
taskDefinition: string | undefined;
|
|
1844
|
-
volumeConfigurations?: TaskVolumeConfiguration[];
|
|
1846
|
+
volumeConfigurations?: TaskVolumeConfiguration[] | undefined;
|
|
1845
1847
|
}
|
|
1846
1848
|
export interface StartTaskResponse {
|
|
1847
|
-
tasks?: Task[];
|
|
1848
|
-
failures?: Failure[];
|
|
1849
|
+
tasks?: Task[] | undefined;
|
|
1850
|
+
failures?: Failure[] | undefined;
|
|
1849
1851
|
}
|
|
1850
1852
|
export interface StopTaskRequest {
|
|
1851
|
-
cluster?: string;
|
|
1853
|
+
cluster?: string | undefined;
|
|
1852
1854
|
task: string | undefined;
|
|
1853
|
-
reason?: string;
|
|
1855
|
+
reason?: string | undefined;
|
|
1854
1856
|
}
|
|
1855
1857
|
export interface StopTaskResponse {
|
|
1856
|
-
task?: Task;
|
|
1858
|
+
task?: Task | undefined;
|
|
1857
1859
|
}
|
|
1858
1860
|
export interface AttachmentStateChange {
|
|
1859
1861
|
attachmentArn: string | undefined;
|
|
1860
1862
|
status: string | undefined;
|
|
1861
1863
|
}
|
|
1862
1864
|
export interface SubmitAttachmentStateChangesRequest {
|
|
1863
|
-
cluster?: string;
|
|
1865
|
+
cluster?: string | undefined;
|
|
1864
1866
|
attachments: AttachmentStateChange[] | undefined;
|
|
1865
1867
|
}
|
|
1866
1868
|
export interface SubmitAttachmentStateChangesResponse {
|
|
1867
|
-
acknowledgment?: string;
|
|
1869
|
+
acknowledgment?: string | undefined;
|
|
1868
1870
|
}
|
|
1869
1871
|
export interface SubmitContainerStateChangeRequest {
|
|
1870
|
-
cluster?: string;
|
|
1871
|
-
task?: string;
|
|
1872
|
-
containerName?: string;
|
|
1873
|
-
runtimeId?: string;
|
|
1874
|
-
status?: string;
|
|
1875
|
-
exitCode?: number;
|
|
1876
|
-
reason?: string;
|
|
1877
|
-
networkBindings?: NetworkBinding[];
|
|
1872
|
+
cluster?: string | undefined;
|
|
1873
|
+
task?: string | undefined;
|
|
1874
|
+
containerName?: string | undefined;
|
|
1875
|
+
runtimeId?: string | undefined;
|
|
1876
|
+
status?: string | undefined;
|
|
1877
|
+
exitCode?: number | undefined;
|
|
1878
|
+
reason?: string | undefined;
|
|
1879
|
+
networkBindings?: NetworkBinding[] | undefined;
|
|
1878
1880
|
}
|
|
1879
1881
|
export interface SubmitContainerStateChangeResponse {
|
|
1880
|
-
acknowledgment?: string;
|
|
1882
|
+
acknowledgment?: string | undefined;
|
|
1881
1883
|
}
|
|
1882
1884
|
export interface ContainerStateChange {
|
|
1883
|
-
containerName?: string;
|
|
1884
|
-
imageDigest?: string;
|
|
1885
|
-
runtimeId?: string;
|
|
1886
|
-
exitCode?: number;
|
|
1887
|
-
networkBindings?: NetworkBinding[];
|
|
1888
|
-
reason?: string;
|
|
1889
|
-
status?: string;
|
|
1885
|
+
containerName?: string | undefined;
|
|
1886
|
+
imageDigest?: string | undefined;
|
|
1887
|
+
runtimeId?: string | undefined;
|
|
1888
|
+
exitCode?: number | undefined;
|
|
1889
|
+
networkBindings?: NetworkBinding[] | undefined;
|
|
1890
|
+
reason?: string | undefined;
|
|
1891
|
+
status?: string | undefined;
|
|
1890
1892
|
}
|
|
1891
1893
|
export interface ManagedAgentStateChange {
|
|
1892
1894
|
containerName: string | undefined;
|
|
1893
1895
|
managedAgentName: ManagedAgentName | undefined;
|
|
1894
1896
|
status: string | undefined;
|
|
1895
|
-
reason?: string;
|
|
1897
|
+
reason?: string | undefined;
|
|
1896
1898
|
}
|
|
1897
1899
|
export interface SubmitTaskStateChangeRequest {
|
|
1898
|
-
cluster?: string;
|
|
1899
|
-
task?: string;
|
|
1900
|
-
status?: string;
|
|
1901
|
-
reason?: string;
|
|
1902
|
-
containers?: ContainerStateChange[];
|
|
1903
|
-
attachments?: AttachmentStateChange[];
|
|
1904
|
-
managedAgents?: ManagedAgentStateChange[];
|
|
1905
|
-
pullStartedAt?: Date;
|
|
1906
|
-
pullStoppedAt?: Date;
|
|
1907
|
-
executionStoppedAt?: Date;
|
|
1900
|
+
cluster?: string | undefined;
|
|
1901
|
+
task?: string | undefined;
|
|
1902
|
+
status?: string | undefined;
|
|
1903
|
+
reason?: string | undefined;
|
|
1904
|
+
containers?: ContainerStateChange[] | undefined;
|
|
1905
|
+
attachments?: AttachmentStateChange[] | undefined;
|
|
1906
|
+
managedAgents?: ManagedAgentStateChange[] | undefined;
|
|
1907
|
+
pullStartedAt?: Date | undefined;
|
|
1908
|
+
pullStoppedAt?: Date | undefined;
|
|
1909
|
+
executionStoppedAt?: Date | undefined;
|
|
1908
1910
|
}
|
|
1909
1911
|
export interface SubmitTaskStateChangeResponse {
|
|
1910
|
-
acknowledgment?: string;
|
|
1912
|
+
acknowledgment?: string | undefined;
|
|
1911
1913
|
}
|
|
1912
1914
|
export interface TagResourceRequest {
|
|
1913
1915
|
resourceArn: string | undefined;
|
|
@@ -1920,16 +1922,16 @@ export interface UntagResourceRequest {
|
|
|
1920
1922
|
}
|
|
1921
1923
|
export interface UntagResourceResponse {}
|
|
1922
1924
|
export interface AutoScalingGroupProviderUpdate {
|
|
1923
|
-
managedScaling?: ManagedScaling;
|
|
1924
|
-
managedTerminationProtection?: ManagedTerminationProtection;
|
|
1925
|
-
managedDraining?: ManagedDraining;
|
|
1925
|
+
managedScaling?: ManagedScaling | undefined;
|
|
1926
|
+
managedTerminationProtection?: ManagedTerminationProtection | undefined;
|
|
1927
|
+
managedDraining?: ManagedDraining | undefined;
|
|
1926
1928
|
}
|
|
1927
1929
|
export interface UpdateCapacityProviderRequest {
|
|
1928
1930
|
name: string | undefined;
|
|
1929
1931
|
autoScalingGroupProvider: AutoScalingGroupProviderUpdate | undefined;
|
|
1930
1932
|
}
|
|
1931
1933
|
export interface UpdateCapacityProviderResponse {
|
|
1932
|
-
capacityProvider?: CapacityProvider;
|
|
1934
|
+
capacityProvider?: CapacityProvider | undefined;
|
|
1933
1935
|
}
|
|
1934
1936
|
export declare const SessionFilterSensitiveLog: (obj: Session) => any;
|
|
1935
1937
|
export declare const ExecuteCommandResponseFilterSensitiveLog: (
|