@aws-sdk/client-ecs 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/ECS.d.ts +57 -0
- package/dist-types/ECSClient.d.ts +24 -4
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +16 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
- package/dist-types/commands/CreateTaskSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAccountSettingCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAttributesCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +16 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTaskSetCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeContainerInstancesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTaskSetsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTasksCommand.d.ts +16 -0
- package/dist-types/commands/DiscoverPollEndpointCommand.d.ts +16 -0
- package/dist-types/commands/ExecuteCommandCommand.d.ts +16 -0
- package/dist-types/commands/GetTaskProtectionCommand.d.ts +16 -0
- package/dist-types/commands/ListAccountSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListAttributesCommand.d.ts +16 -0
- package/dist-types/commands/ListClustersCommand.d.ts +16 -0
- package/dist-types/commands/ListContainerInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesByNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTaskDefinitionFamiliesCommand.d.ts +16 -0
- package/dist-types/commands/ListTaskDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTasksCommand.d.ts +16 -0
- package/dist-types/commands/PutAccountSettingCommand.d.ts +16 -0
- package/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +16 -0
- package/dist-types/commands/PutAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +16 -0
- package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +16 -0
- package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/RunTaskCommand.d.ts +16 -0
- package/dist-types/commands/StartTaskCommand.d.ts +16 -0
- package/dist-types/commands/StopTaskCommand.d.ts +16 -0
- package/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +16 -0
- package/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +16 -0
- package/dist-types/commands/SubmitTaskStateChangeCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterSettingsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateContainerAgentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTaskSetCommand.d.ts +16 -0
- package/dist-types/models/ECSServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +631 -8
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAccountSettingsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAttributesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListClustersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListContainerInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesByNamespacePaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTaskDefinitionFamiliesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTaskDefinitionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTasksPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ECSServiceException as __BaseException } from "./ECSServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>You don't have authorization to perform the requested action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -11,6 +12,9 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
11
12
|
*/
|
|
12
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
13
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
14
18
|
export declare enum AgentUpdateStatus {
|
|
15
19
|
FAILED = "FAILED",
|
|
16
20
|
PENDING = "PENDING",
|
|
@@ -20,6 +24,7 @@ export declare enum AgentUpdateStatus {
|
|
|
20
24
|
UPDATING = "UPDATING"
|
|
21
25
|
}
|
|
22
26
|
/**
|
|
27
|
+
* @public
|
|
23
28
|
* <p>These errors are usually caused by a client action. This client action might be using
|
|
24
29
|
* an action or resource on behalf of a user that doesn't have permissions to use the
|
|
25
30
|
* action or resource,. Or, it might be specifying an identifier that isn't valid.</p>
|
|
@@ -32,11 +37,15 @@ export declare class ClientException extends __BaseException {
|
|
|
32
37
|
*/
|
|
33
38
|
constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
|
|
34
39
|
}
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
35
43
|
export declare enum ManagedScalingStatus {
|
|
36
44
|
DISABLED = "DISABLED",
|
|
37
45
|
ENABLED = "ENABLED"
|
|
38
46
|
}
|
|
39
47
|
/**
|
|
48
|
+
* @public
|
|
40
49
|
* <p>The managed scaling settings for the Auto Scaling group capacity provider.</p>
|
|
41
50
|
* <p>When managed scaling is enabled, Amazon ECS manages the scale-in and scale-out actions of
|
|
42
51
|
* the Auto Scaling group. Amazon ECS manages a target tracking scaling policy using an Amazon ECS
|
|
@@ -82,11 +91,15 @@ export interface ManagedScaling {
|
|
|
82
91
|
*/
|
|
83
92
|
instanceWarmupPeriod?: number;
|
|
84
93
|
}
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
85
97
|
export declare enum ManagedTerminationProtection {
|
|
86
98
|
DISABLED = "DISABLED",
|
|
87
99
|
ENABLED = "ENABLED"
|
|
88
100
|
}
|
|
89
101
|
/**
|
|
102
|
+
* @public
|
|
90
103
|
* <p>The details of the Auto Scaling group for the capacity provider.</p>
|
|
91
104
|
*/
|
|
92
105
|
export interface AutoScalingGroupProvider {
|
|
@@ -116,6 +129,7 @@ export interface AutoScalingGroupProvider {
|
|
|
116
129
|
managedTerminationProtection?: ManagedTerminationProtection | string;
|
|
117
130
|
}
|
|
118
131
|
/**
|
|
132
|
+
* @public
|
|
119
133
|
* <p>The metadata that you apply to a resource to help you categorize and organize them.
|
|
120
134
|
* Each tag consists of a key and an optional value. You define them.</p>
|
|
121
135
|
* <p>The following basic restrictions apply to tags:</p>
|
|
@@ -162,6 +176,9 @@ export interface Tag {
|
|
|
162
176
|
*/
|
|
163
177
|
value?: string;
|
|
164
178
|
}
|
|
179
|
+
/**
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
165
182
|
export interface CreateCapacityProviderRequest {
|
|
166
183
|
/**
|
|
167
184
|
* <p>The name of the capacity provider. Up to 255 characters are allowed. They include
|
|
@@ -212,10 +229,16 @@ export interface CreateCapacityProviderRequest {
|
|
|
212
229
|
*/
|
|
213
230
|
tags?: Tag[];
|
|
214
231
|
}
|
|
232
|
+
/**
|
|
233
|
+
* @public
|
|
234
|
+
*/
|
|
215
235
|
export declare enum CapacityProviderStatus {
|
|
216
236
|
ACTIVE = "ACTIVE",
|
|
217
237
|
INACTIVE = "INACTIVE"
|
|
218
238
|
}
|
|
239
|
+
/**
|
|
240
|
+
* @public
|
|
241
|
+
*/
|
|
219
242
|
export declare enum CapacityProviderUpdateStatus {
|
|
220
243
|
DELETE_COMPLETE = "DELETE_COMPLETE",
|
|
221
244
|
DELETE_FAILED = "DELETE_FAILED",
|
|
@@ -225,6 +248,7 @@ export declare enum CapacityProviderUpdateStatus {
|
|
|
225
248
|
UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS"
|
|
226
249
|
}
|
|
227
250
|
/**
|
|
251
|
+
* @public
|
|
228
252
|
* <p>The details for a capacity provider.</p>
|
|
229
253
|
*/
|
|
230
254
|
export interface CapacityProvider {
|
|
@@ -309,6 +333,9 @@ export interface CapacityProvider {
|
|
|
309
333
|
*/
|
|
310
334
|
tags?: Tag[];
|
|
311
335
|
}
|
|
336
|
+
/**
|
|
337
|
+
* @public
|
|
338
|
+
*/
|
|
312
339
|
export interface CreateCapacityProviderResponse {
|
|
313
340
|
/**
|
|
314
341
|
* <p>The full description of the new capacity provider.</p>
|
|
@@ -316,6 +343,7 @@ export interface CreateCapacityProviderResponse {
|
|
|
316
343
|
capacityProvider?: CapacityProvider;
|
|
317
344
|
}
|
|
318
345
|
/**
|
|
346
|
+
* @public
|
|
319
347
|
* <p>The specified parameter isn't valid. Review the available parameters for the API
|
|
320
348
|
* request.</p>
|
|
321
349
|
*/
|
|
@@ -328,6 +356,7 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
328
356
|
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
329
357
|
}
|
|
330
358
|
/**
|
|
359
|
+
* @public
|
|
331
360
|
* <p>The limit for the resource was exceeded.</p>
|
|
332
361
|
*/
|
|
333
362
|
export declare class LimitExceededException extends __BaseException {
|
|
@@ -339,6 +368,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
339
368
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
340
369
|
}
|
|
341
370
|
/**
|
|
371
|
+
* @public
|
|
342
372
|
* <p>These errors are usually caused by a server issue.</p>
|
|
343
373
|
*/
|
|
344
374
|
export declare class ServerException extends __BaseException {
|
|
@@ -350,6 +380,7 @@ export declare class ServerException extends __BaseException {
|
|
|
350
380
|
constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
|
|
351
381
|
}
|
|
352
382
|
/**
|
|
383
|
+
* @public
|
|
353
384
|
* <p>There's already a current Amazon ECS container agent update in progress on the container
|
|
354
385
|
* instance that's specified. If the container agent becomes disconnected while it's in a
|
|
355
386
|
* transitional stage, such as <code>PENDING</code> or <code>STAGING</code>, the update
|
|
@@ -365,6 +396,7 @@ export declare class UpdateInProgressException extends __BaseException {
|
|
|
365
396
|
constructor(opts: __ExceptionOptionType<UpdateInProgressException, __BaseException>);
|
|
366
397
|
}
|
|
367
398
|
/**
|
|
399
|
+
* @public
|
|
368
400
|
* <p>The log configuration for the results of the execute command actions. The logs can be
|
|
369
401
|
* sent to CloudWatch Logs or an Amazon S3 bucket.</p>
|
|
370
402
|
*/
|
|
@@ -398,12 +430,16 @@ export interface ExecuteCommandLogConfiguration {
|
|
|
398
430
|
*/
|
|
399
431
|
s3KeyPrefix?: string;
|
|
400
432
|
}
|
|
433
|
+
/**
|
|
434
|
+
* @public
|
|
435
|
+
*/
|
|
401
436
|
export declare enum ExecuteCommandLogging {
|
|
402
437
|
DEFAULT = "DEFAULT",
|
|
403
438
|
NONE = "NONE",
|
|
404
439
|
OVERRIDE = "OVERRIDE"
|
|
405
440
|
}
|
|
406
441
|
/**
|
|
442
|
+
* @public
|
|
407
443
|
* <p>The details of the execute command configuration.</p>
|
|
408
444
|
*/
|
|
409
445
|
export interface ExecuteCommandConfiguration {
|
|
@@ -444,6 +480,7 @@ export interface ExecuteCommandConfiguration {
|
|
|
444
480
|
logConfiguration?: ExecuteCommandLogConfiguration;
|
|
445
481
|
}
|
|
446
482
|
/**
|
|
483
|
+
* @public
|
|
447
484
|
* <p>The execute command configuration for the cluster.</p>
|
|
448
485
|
*/
|
|
449
486
|
export interface ClusterConfiguration {
|
|
@@ -453,6 +490,7 @@ export interface ClusterConfiguration {
|
|
|
453
490
|
executeCommandConfiguration?: ExecuteCommandConfiguration;
|
|
454
491
|
}
|
|
455
492
|
/**
|
|
493
|
+
* @public
|
|
456
494
|
* <p>The details of a capacity provider strategy. A capacity provider strategy can be set
|
|
457
495
|
* when using the <a>RunTask</a> or <a>CreateCluster</a> APIs or as
|
|
458
496
|
* the default capacity provider strategy for a cluster with the <a>CreateCluster</a> API.</p>
|
|
@@ -505,6 +543,7 @@ export interface CapacityProviderStrategyItem {
|
|
|
505
543
|
base?: number;
|
|
506
544
|
}
|
|
507
545
|
/**
|
|
546
|
+
* @public
|
|
508
547
|
* <p>Use this parameter to set a default Service Connect namespace. After you set a default
|
|
509
548
|
* Service Connect namespace, any new services with Service Connect turned on that are created in the cluster are added as
|
|
510
549
|
* client services in the namespace. This setting only applies to new services that set the <code>enabled</code> parameter to
|
|
@@ -539,10 +578,14 @@ export interface ClusterServiceConnectDefaultsRequest {
|
|
|
539
578
|
*/
|
|
540
579
|
namespace: string | undefined;
|
|
541
580
|
}
|
|
581
|
+
/**
|
|
582
|
+
* @public
|
|
583
|
+
*/
|
|
542
584
|
export declare enum ClusterSettingName {
|
|
543
585
|
CONTAINER_INSIGHTS = "containerInsights"
|
|
544
586
|
}
|
|
545
587
|
/**
|
|
588
|
+
* @public
|
|
546
589
|
* <p>The settings to use when creating a cluster. This parameter is used to turn on CloudWatch
|
|
547
590
|
* Container Insights for a cluster.</p>
|
|
548
591
|
*/
|
|
@@ -561,6 +604,9 @@ export interface ClusterSetting {
|
|
|
561
604
|
*/
|
|
562
605
|
value?: string;
|
|
563
606
|
}
|
|
607
|
+
/**
|
|
608
|
+
* @public
|
|
609
|
+
*/
|
|
564
610
|
export interface CreateClusterRequest {
|
|
565
611
|
/**
|
|
566
612
|
* <p>The name of your cluster. If you don't specify a name for your cluster, you create a
|
|
@@ -659,6 +705,7 @@ export interface CreateClusterRequest {
|
|
|
659
705
|
serviceConnectDefaults?: ClusterServiceConnectDefaultsRequest;
|
|
660
706
|
}
|
|
661
707
|
/**
|
|
708
|
+
* @public
|
|
662
709
|
* <p>A key-value pair object.</p>
|
|
663
710
|
*/
|
|
664
711
|
export interface KeyValuePair {
|
|
@@ -674,6 +721,7 @@ export interface KeyValuePair {
|
|
|
674
721
|
value?: string;
|
|
675
722
|
}
|
|
676
723
|
/**
|
|
724
|
+
* @public
|
|
677
725
|
* <p>An object representing a container instance or task attachment.</p>
|
|
678
726
|
*/
|
|
679
727
|
export interface Attachment {
|
|
@@ -699,6 +747,7 @@ export interface Attachment {
|
|
|
699
747
|
details?: KeyValuePair[];
|
|
700
748
|
}
|
|
701
749
|
/**
|
|
750
|
+
* @public
|
|
702
751
|
* <p>Use this parameter to set a default Service Connect namespace. After you set a default
|
|
703
752
|
* Service Connect namespace, any new services with Service Connect turned on that are created in the cluster are added as
|
|
704
753
|
* client services in the namespace. This setting only applies to new services that set the <code>enabled</code> parameter to
|
|
@@ -720,6 +769,7 @@ export interface ClusterServiceConnectDefaults {
|
|
|
720
769
|
namespace?: string;
|
|
721
770
|
}
|
|
722
771
|
/**
|
|
772
|
+
* @public
|
|
723
773
|
* <p>A regional grouping of one or more container instances where you can run task
|
|
724
774
|
* requests. Each account receives a default cluster the first time you use the Amazon ECS
|
|
725
775
|
* service, but you may also create other clusters. Clusters may contain more than one
|
|
@@ -914,6 +964,9 @@ export interface Cluster {
|
|
|
914
964
|
*/
|
|
915
965
|
serviceConnectDefaults?: ClusterServiceConnectDefaults;
|
|
916
966
|
}
|
|
967
|
+
/**
|
|
968
|
+
* @public
|
|
969
|
+
*/
|
|
917
970
|
export interface CreateClusterResponse {
|
|
918
971
|
/**
|
|
919
972
|
* <p>The full description of your new cluster.</p>
|
|
@@ -921,6 +974,7 @@ export interface CreateClusterResponse {
|
|
|
921
974
|
cluster?: Cluster;
|
|
922
975
|
}
|
|
923
976
|
/**
|
|
977
|
+
* @public
|
|
924
978
|
* <p>The specified cluster wasn't found. You can view your available clusters with <a>ListClusters</a>. Amazon ECS clusters are Region specific.</p>
|
|
925
979
|
*/
|
|
926
980
|
export declare class ClusterNotFoundException extends __BaseException {
|
|
@@ -932,6 +986,7 @@ export declare class ClusterNotFoundException extends __BaseException {
|
|
|
932
986
|
constructor(opts: __ExceptionOptionType<ClusterNotFoundException, __BaseException>);
|
|
933
987
|
}
|
|
934
988
|
/**
|
|
989
|
+
* @public
|
|
935
990
|
* <p>One of the methods which provide a way for you to quickly identify when a deployment
|
|
936
991
|
* has failed, and then to optionally roll back the failure to the last working
|
|
937
992
|
* deployment.</p>
|
|
@@ -963,6 +1018,7 @@ export interface DeploymentAlarms {
|
|
|
963
1018
|
rollback: boolean | undefined;
|
|
964
1019
|
}
|
|
965
1020
|
/**
|
|
1021
|
+
* @public
|
|
966
1022
|
* <note>
|
|
967
1023
|
* <p>The deployment circuit breaker can only be used for services using the rolling
|
|
968
1024
|
* update (<code>ECS</code>) deployment type.</p>
|
|
@@ -987,6 +1043,7 @@ export interface DeploymentCircuitBreaker {
|
|
|
987
1043
|
rollback: boolean | undefined;
|
|
988
1044
|
}
|
|
989
1045
|
/**
|
|
1046
|
+
* @public
|
|
990
1047
|
* <p>Optional deployment parameters that control how many tasks run during a deployment and
|
|
991
1048
|
* the ordering of stopping and starting tasks.</p>
|
|
992
1049
|
*/
|
|
@@ -1092,12 +1149,16 @@ export interface DeploymentConfiguration {
|
|
|
1092
1149
|
*/
|
|
1093
1150
|
alarms?: DeploymentAlarms;
|
|
1094
1151
|
}
|
|
1152
|
+
/**
|
|
1153
|
+
* @public
|
|
1154
|
+
*/
|
|
1095
1155
|
export declare enum DeploymentControllerType {
|
|
1096
1156
|
CODE_DEPLOY = "CODE_DEPLOY",
|
|
1097
1157
|
ECS = "ECS",
|
|
1098
1158
|
EXTERNAL = "EXTERNAL"
|
|
1099
1159
|
}
|
|
1100
1160
|
/**
|
|
1161
|
+
* @public
|
|
1101
1162
|
* <p>The deployment controller to use for the service. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html">Amazon ECS deployment types</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
1102
1163
|
*/
|
|
1103
1164
|
export interface DeploymentController {
|
|
@@ -1129,12 +1190,16 @@ export interface DeploymentController {
|
|
|
1129
1190
|
*/
|
|
1130
1191
|
type: DeploymentControllerType | string | undefined;
|
|
1131
1192
|
}
|
|
1193
|
+
/**
|
|
1194
|
+
* @public
|
|
1195
|
+
*/
|
|
1132
1196
|
export declare enum LaunchType {
|
|
1133
1197
|
EC2 = "EC2",
|
|
1134
1198
|
EXTERNAL = "EXTERNAL",
|
|
1135
1199
|
FARGATE = "FARGATE"
|
|
1136
1200
|
}
|
|
1137
1201
|
/**
|
|
1202
|
+
* @public
|
|
1138
1203
|
* <p>The load balancer configuration to use with a service or task set.</p>
|
|
1139
1204
|
* <p>For specific notes and restrictions regarding the use of load balancers with services
|
|
1140
1205
|
* and task sets, see the CreateService and CreateTaskSet actions.</p>
|
|
@@ -1189,11 +1254,15 @@ export interface LoadBalancer {
|
|
|
1189
1254
|
*/
|
|
1190
1255
|
containerPort?: number;
|
|
1191
1256
|
}
|
|
1257
|
+
/**
|
|
1258
|
+
* @public
|
|
1259
|
+
*/
|
|
1192
1260
|
export declare enum AssignPublicIp {
|
|
1193
1261
|
DISABLED = "DISABLED",
|
|
1194
1262
|
ENABLED = "ENABLED"
|
|
1195
1263
|
}
|
|
1196
1264
|
/**
|
|
1265
|
+
* @public
|
|
1197
1266
|
* <p>An object representing the networking details for a task or service.</p>
|
|
1198
1267
|
*/
|
|
1199
1268
|
export interface AwsVpcConfiguration {
|
|
@@ -1222,6 +1291,7 @@ export interface AwsVpcConfiguration {
|
|
|
1222
1291
|
assignPublicIp?: AssignPublicIp | string;
|
|
1223
1292
|
}
|
|
1224
1293
|
/**
|
|
1294
|
+
* @public
|
|
1225
1295
|
* <p>The network configuration for a task or service.</p>
|
|
1226
1296
|
*/
|
|
1227
1297
|
export interface NetworkConfiguration {
|
|
@@ -1233,11 +1303,15 @@ export interface NetworkConfiguration {
|
|
|
1233
1303
|
*/
|
|
1234
1304
|
awsvpcConfiguration?: AwsVpcConfiguration;
|
|
1235
1305
|
}
|
|
1306
|
+
/**
|
|
1307
|
+
* @public
|
|
1308
|
+
*/
|
|
1236
1309
|
export declare enum PlacementConstraintType {
|
|
1237
1310
|
DISTINCT_INSTANCE = "distinctInstance",
|
|
1238
1311
|
MEMBER_OF = "memberOf"
|
|
1239
1312
|
}
|
|
1240
1313
|
/**
|
|
1314
|
+
* @public
|
|
1241
1315
|
* <p>An object representing a constraint on task placement. For more information, see
|
|
1242
1316
|
* <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html">Task placement constraints</a> in the
|
|
1243
1317
|
* <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
@@ -1261,12 +1335,16 @@ export interface PlacementConstraint {
|
|
|
1261
1335
|
*/
|
|
1262
1336
|
expression?: string;
|
|
1263
1337
|
}
|
|
1338
|
+
/**
|
|
1339
|
+
* @public
|
|
1340
|
+
*/
|
|
1264
1341
|
export declare enum PlacementStrategyType {
|
|
1265
1342
|
BINPACK = "binpack",
|
|
1266
1343
|
RANDOM = "random",
|
|
1267
1344
|
SPREAD = "spread"
|
|
1268
1345
|
}
|
|
1269
1346
|
/**
|
|
1347
|
+
* @public
|
|
1270
1348
|
* <p>The task placement strategy for a task or service. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-strategies.html">Task placement strategies</a> in the
|
|
1271
1349
|
* <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
1272
1350
|
*/
|
|
@@ -1292,15 +1370,24 @@ export interface PlacementStrategy {
|
|
|
1292
1370
|
*/
|
|
1293
1371
|
field?: string;
|
|
1294
1372
|
}
|
|
1373
|
+
/**
|
|
1374
|
+
* @public
|
|
1375
|
+
*/
|
|
1295
1376
|
export declare enum PropagateTags {
|
|
1296
1377
|
NONE = "NONE",
|
|
1297
1378
|
SERVICE = "SERVICE",
|
|
1298
1379
|
TASK_DEFINITION = "TASK_DEFINITION"
|
|
1299
1380
|
}
|
|
1381
|
+
/**
|
|
1382
|
+
* @public
|
|
1383
|
+
*/
|
|
1300
1384
|
export declare enum SchedulingStrategy {
|
|
1301
1385
|
DAEMON = "DAEMON",
|
|
1302
1386
|
REPLICA = "REPLICA"
|
|
1303
1387
|
}
|
|
1388
|
+
/**
|
|
1389
|
+
* @public
|
|
1390
|
+
*/
|
|
1304
1391
|
export declare enum LogDriver {
|
|
1305
1392
|
AWSFIRELENS = "awsfirelens",
|
|
1306
1393
|
AWSLOGS = "awslogs",
|
|
@@ -1312,6 +1399,7 @@ export declare enum LogDriver {
|
|
|
1312
1399
|
SYSLOG = "syslog"
|
|
1313
1400
|
}
|
|
1314
1401
|
/**
|
|
1402
|
+
* @public
|
|
1315
1403
|
* <p>An object representing the secret to expose to your container. Secrets can be exposed
|
|
1316
1404
|
* to a container in the following ways:</p>
|
|
1317
1405
|
* <ul>
|
|
@@ -1348,6 +1436,7 @@ export interface Secret {
|
|
|
1348
1436
|
valueFrom: string | undefined;
|
|
1349
1437
|
}
|
|
1350
1438
|
/**
|
|
1439
|
+
* @public
|
|
1351
1440
|
* <p>The log configuration for the container. This parameter maps to <code>LogConfig</code>
|
|
1352
1441
|
* in the <a href="https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate">Create a container</a> section of the <a href="https://docs.docker.com/engine/api/v1.35/">Docker Remote API</a> and the
|
|
1353
1442
|
* <code>--log-driver</code> option to <a href="https://docs.docker.com/engine/reference/commandline/run/">
|
|
@@ -1410,7 +1499,7 @@ export interface LogConfiguration {
|
|
|
1410
1499
|
*/
|
|
1411
1500
|
logDriver: LogDriver | string | undefined;
|
|
1412
1501
|
/**
|
|
1413
|
-
* <p>The configuration options to send to the log driver. This parameter requires version 1.19 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: <code>sudo docker version --format '{{.Server.APIVersion}}'</code>
|
|
1502
|
+
* <p>The configuration options to send to the log driver. This parameter requires version 1.19 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: <code>sudo docker version --format '\{\{.Server.APIVersion\}\}'</code>
|
|
1414
1503
|
* </p>
|
|
1415
1504
|
*/
|
|
1416
1505
|
options?: Record<string, string>;
|
|
@@ -1421,6 +1510,7 @@ export interface LogConfiguration {
|
|
|
1421
1510
|
secretOptions?: Secret[];
|
|
1422
1511
|
}
|
|
1423
1512
|
/**
|
|
1513
|
+
* @public
|
|
1424
1514
|
* <p>Each alias ("endpoint") is a fully-qualified name and port number that other tasks
|
|
1425
1515
|
* ("clients") can use to connect to this service.</p>
|
|
1426
1516
|
* <p>Each name and port mapping must be unique within the namespace.</p>
|
|
@@ -1454,6 +1544,7 @@ export interface ServiceConnectClientAlias {
|
|
|
1454
1544
|
dnsName?: string;
|
|
1455
1545
|
}
|
|
1456
1546
|
/**
|
|
1547
|
+
* @public
|
|
1457
1548
|
* <p>The Service Connect service object configuration. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html">Service Connect</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
1458
1549
|
*/
|
|
1459
1550
|
export interface ServiceConnectService {
|
|
@@ -1494,6 +1585,7 @@ export interface ServiceConnectService {
|
|
|
1494
1585
|
ingressPortOverride?: number;
|
|
1495
1586
|
}
|
|
1496
1587
|
/**
|
|
1588
|
+
* @public
|
|
1497
1589
|
* <p>The Service Connect configuration of your Amazon ECS service. The configuration for this
|
|
1498
1590
|
* service to discover and connect to services, and be discovered by, and connected from,
|
|
1499
1591
|
* other services within a namespace.</p>
|
|
@@ -1572,6 +1664,7 @@ export interface ServiceConnectConfiguration {
|
|
|
1572
1664
|
logConfiguration?: LogConfiguration;
|
|
1573
1665
|
}
|
|
1574
1666
|
/**
|
|
1667
|
+
* @public
|
|
1575
1668
|
* <p>The details for the service registry.</p>
|
|
1576
1669
|
* <p>Each service may be associated with one service registry. Multiple service registries
|
|
1577
1670
|
* for each service are not supported.</p>
|
|
@@ -1614,6 +1707,9 @@ export interface ServiceRegistry {
|
|
|
1614
1707
|
*/
|
|
1615
1708
|
containerPort?: number;
|
|
1616
1709
|
}
|
|
1710
|
+
/**
|
|
1711
|
+
* @public
|
|
1712
|
+
*/
|
|
1617
1713
|
export interface CreateServiceRequest {
|
|
1618
1714
|
/**
|
|
1619
1715
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that you run your service on.
|
|
@@ -1898,12 +1994,16 @@ export interface CreateServiceRequest {
|
|
|
1898
1994
|
*/
|
|
1899
1995
|
serviceConnectConfiguration?: ServiceConnectConfiguration;
|
|
1900
1996
|
}
|
|
1997
|
+
/**
|
|
1998
|
+
* @public
|
|
1999
|
+
*/
|
|
1901
2000
|
export declare enum DeploymentRolloutState {
|
|
1902
2001
|
COMPLETED = "COMPLETED",
|
|
1903
2002
|
FAILED = "FAILED",
|
|
1904
2003
|
IN_PROGRESS = "IN_PROGRESS"
|
|
1905
2004
|
}
|
|
1906
2005
|
/**
|
|
2006
|
+
* @public
|
|
1907
2007
|
* <p>The Service Connect resource. Each configuration maps a discovery name to a
|
|
1908
2008
|
* Cloud Map service name. The data is stored in Cloud Map as part of the
|
|
1909
2009
|
* Service Connect configuration for each discovery name of this Amazon ECS service.</p>
|
|
@@ -1929,6 +2029,7 @@ export interface ServiceConnectServiceResource {
|
|
|
1929
2029
|
discoveryArn?: string;
|
|
1930
2030
|
}
|
|
1931
2031
|
/**
|
|
2032
|
+
* @public
|
|
1932
2033
|
* <p>The details of an Amazon ECS service deployment. This is used only when a service uses the
|
|
1933
2034
|
* <code>ECS</code> deployment controller type.</p>
|
|
1934
2035
|
*/
|
|
@@ -2062,6 +2163,7 @@ export interface Deployment {
|
|
|
2062
2163
|
serviceConnectResources?: ServiceConnectServiceResource[];
|
|
2063
2164
|
}
|
|
2064
2165
|
/**
|
|
2166
|
+
* @public
|
|
2065
2167
|
* <p>The details for an event that's associated with a service.</p>
|
|
2066
2168
|
*/
|
|
2067
2169
|
export interface ServiceEvent {
|
|
@@ -2078,10 +2180,14 @@ export interface ServiceEvent {
|
|
|
2078
2180
|
*/
|
|
2079
2181
|
message?: string;
|
|
2080
2182
|
}
|
|
2183
|
+
/**
|
|
2184
|
+
* @public
|
|
2185
|
+
*/
|
|
2081
2186
|
export declare enum ScaleUnit {
|
|
2082
2187
|
PERCENT = "PERCENT"
|
|
2083
2188
|
}
|
|
2084
2189
|
/**
|
|
2190
|
+
* @public
|
|
2085
2191
|
* <p>A floating-point percentage of the desired number of tasks to place and keep running
|
|
2086
2192
|
* in the task set.</p>
|
|
2087
2193
|
*/
|
|
@@ -2096,11 +2202,15 @@ export interface Scale {
|
|
|
2096
2202
|
*/
|
|
2097
2203
|
unit?: ScaleUnit | string;
|
|
2098
2204
|
}
|
|
2205
|
+
/**
|
|
2206
|
+
* @public
|
|
2207
|
+
*/
|
|
2099
2208
|
export declare enum StabilityStatus {
|
|
2100
2209
|
STABILIZING = "STABILIZING",
|
|
2101
2210
|
STEADY_STATE = "STEADY_STATE"
|
|
2102
2211
|
}
|
|
2103
2212
|
/**
|
|
2213
|
+
* @public
|
|
2104
2214
|
* <p>Information about a set of Amazon ECS tasks in either an CodeDeploy or an <code>EXTERNAL</code>
|
|
2105
2215
|
* deployment. An Amazon ECS task set includes details such as the desired number of tasks, how
|
|
2106
2216
|
* many tasks are running, and whether the task set serves production traffic.</p>
|
|
@@ -2297,6 +2407,7 @@ export interface TaskSet {
|
|
|
2297
2407
|
tags?: Tag[];
|
|
2298
2408
|
}
|
|
2299
2409
|
/**
|
|
2410
|
+
* @public
|
|
2300
2411
|
* <p>Details on a service within a cluster</p>
|
|
2301
2412
|
*/
|
|
2302
2413
|
export interface Service {
|
|
@@ -2513,6 +2624,9 @@ export interface Service {
|
|
|
2513
2624
|
*/
|
|
2514
2625
|
enableExecuteCommand?: boolean;
|
|
2515
2626
|
}
|
|
2627
|
+
/**
|
|
2628
|
+
* @public
|
|
2629
|
+
*/
|
|
2516
2630
|
export interface CreateServiceResponse {
|
|
2517
2631
|
/**
|
|
2518
2632
|
* <p>The full description of your service following the create call.</p>
|
|
@@ -2530,6 +2644,7 @@ export interface CreateServiceResponse {
|
|
|
2530
2644
|
service?: Service;
|
|
2531
2645
|
}
|
|
2532
2646
|
/**
|
|
2647
|
+
* @public
|
|
2533
2648
|
* <p>The specified namespace wasn't found.</p>
|
|
2534
2649
|
*/
|
|
2535
2650
|
export declare class NamespaceNotFoundException extends __BaseException {
|
|
@@ -2541,6 +2656,7 @@ export declare class NamespaceNotFoundException extends __BaseException {
|
|
|
2541
2656
|
constructor(opts: __ExceptionOptionType<NamespaceNotFoundException, __BaseException>);
|
|
2542
2657
|
}
|
|
2543
2658
|
/**
|
|
2659
|
+
* @public
|
|
2544
2660
|
* <p>The specified platform version doesn't satisfy the required capabilities of the task
|
|
2545
2661
|
* definition.</p>
|
|
2546
2662
|
*/
|
|
@@ -2553,6 +2669,7 @@ export declare class PlatformTaskDefinitionIncompatibilityException extends __Ba
|
|
|
2553
2669
|
constructor(opts: __ExceptionOptionType<PlatformTaskDefinitionIncompatibilityException, __BaseException>);
|
|
2554
2670
|
}
|
|
2555
2671
|
/**
|
|
2672
|
+
* @public
|
|
2556
2673
|
* <p>The specified platform version doesn't exist.</p>
|
|
2557
2674
|
*/
|
|
2558
2675
|
export declare class PlatformUnknownException extends __BaseException {
|
|
@@ -2564,6 +2681,7 @@ export declare class PlatformUnknownException extends __BaseException {
|
|
|
2564
2681
|
constructor(opts: __ExceptionOptionType<PlatformUnknownException, __BaseException>);
|
|
2565
2682
|
}
|
|
2566
2683
|
/**
|
|
2684
|
+
* @public
|
|
2567
2685
|
* <p>The specified task isn't supported in this Region.</p>
|
|
2568
2686
|
*/
|
|
2569
2687
|
export declare class UnsupportedFeatureException extends __BaseException {
|
|
@@ -2574,6 +2692,9 @@ export declare class UnsupportedFeatureException extends __BaseException {
|
|
|
2574
2692
|
*/
|
|
2575
2693
|
constructor(opts: __ExceptionOptionType<UnsupportedFeatureException, __BaseException>);
|
|
2576
2694
|
}
|
|
2695
|
+
/**
|
|
2696
|
+
* @public
|
|
2697
|
+
*/
|
|
2577
2698
|
export interface CreateTaskSetRequest {
|
|
2578
2699
|
/**
|
|
2579
2700
|
* <p>The short name or full Amazon Resource Name (ARN) of the service to create the task set in.</p>
|
|
@@ -2693,6 +2814,9 @@ export interface CreateTaskSetRequest {
|
|
|
2693
2814
|
*/
|
|
2694
2815
|
tags?: Tag[];
|
|
2695
2816
|
}
|
|
2817
|
+
/**
|
|
2818
|
+
* @public
|
|
2819
|
+
*/
|
|
2696
2820
|
export interface CreateTaskSetResponse {
|
|
2697
2821
|
/**
|
|
2698
2822
|
* <p>Information about a set of Amazon ECS tasks in either an CodeDeploy or an
|
|
@@ -2703,6 +2827,7 @@ export interface CreateTaskSetResponse {
|
|
|
2703
2827
|
taskSet?: TaskSet;
|
|
2704
2828
|
}
|
|
2705
2829
|
/**
|
|
2830
|
+
* @public
|
|
2706
2831
|
* <p>The specified service isn't active. You can't update a service that's inactive. If you
|
|
2707
2832
|
* have previously deleted a service, you can re-create it with <a>CreateService</a>.</p>
|
|
2708
2833
|
*/
|
|
@@ -2715,6 +2840,7 @@ export declare class ServiceNotActiveException extends __BaseException {
|
|
|
2715
2840
|
constructor(opts: __ExceptionOptionType<ServiceNotActiveException, __BaseException>);
|
|
2716
2841
|
}
|
|
2717
2842
|
/**
|
|
2843
|
+
* @public
|
|
2718
2844
|
* <p>The specified service wasn't found. You can view your available services with <a>ListServices</a>. Amazon ECS services are cluster specific and Region
|
|
2719
2845
|
* specific.</p>
|
|
2720
2846
|
*/
|
|
@@ -2726,6 +2852,9 @@ export declare class ServiceNotFoundException extends __BaseException {
|
|
|
2726
2852
|
*/
|
|
2727
2853
|
constructor(opts: __ExceptionOptionType<ServiceNotFoundException, __BaseException>);
|
|
2728
2854
|
}
|
|
2855
|
+
/**
|
|
2856
|
+
* @public
|
|
2857
|
+
*/
|
|
2729
2858
|
export declare enum SettingName {
|
|
2730
2859
|
AWSVPC_TRUNKING = "awsvpcTrunking",
|
|
2731
2860
|
CONTAINER_INSIGHTS = "containerInsights",
|
|
@@ -2733,6 +2862,9 @@ export declare enum SettingName {
|
|
|
2733
2862
|
SERVICE_LONG_ARN_FORMAT = "serviceLongArnFormat",
|
|
2734
2863
|
TASK_LONG_ARN_FORMAT = "taskLongArnFormat"
|
|
2735
2864
|
}
|
|
2865
|
+
/**
|
|
2866
|
+
* @public
|
|
2867
|
+
*/
|
|
2736
2868
|
export interface DeleteAccountSettingRequest {
|
|
2737
2869
|
/**
|
|
2738
2870
|
* <p>The resource name to disable the account setting for. If
|
|
@@ -2753,6 +2885,7 @@ export interface DeleteAccountSettingRequest {
|
|
|
2753
2885
|
principalArn?: string;
|
|
2754
2886
|
}
|
|
2755
2887
|
/**
|
|
2888
|
+
* @public
|
|
2756
2889
|
* <p>The current account setting for a resource.</p>
|
|
2757
2890
|
*/
|
|
2758
2891
|
export interface Setting {
|
|
@@ -2770,16 +2903,23 @@ export interface Setting {
|
|
|
2770
2903
|
*/
|
|
2771
2904
|
principalArn?: string;
|
|
2772
2905
|
}
|
|
2906
|
+
/**
|
|
2907
|
+
* @public
|
|
2908
|
+
*/
|
|
2773
2909
|
export interface DeleteAccountSettingResponse {
|
|
2774
2910
|
/**
|
|
2775
2911
|
* <p>The account setting for the specified principal ARN.</p>
|
|
2776
2912
|
*/
|
|
2777
2913
|
setting?: Setting;
|
|
2778
2914
|
}
|
|
2915
|
+
/**
|
|
2916
|
+
* @public
|
|
2917
|
+
*/
|
|
2779
2918
|
export declare enum TargetType {
|
|
2780
2919
|
CONTAINER_INSTANCE = "container-instance"
|
|
2781
2920
|
}
|
|
2782
2921
|
/**
|
|
2922
|
+
* @public
|
|
2783
2923
|
* <p>An attribute is a name-value pair that's associated with an Amazon ECS object. Use
|
|
2784
2924
|
* attributes to extend the Amazon ECS data model by adding custom metadata to your resources.
|
|
2785
2925
|
* For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html#attributes">Attributes</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
@@ -2809,6 +2949,9 @@ export interface Attribute {
|
|
|
2809
2949
|
*/
|
|
2810
2950
|
targetId?: string;
|
|
2811
2951
|
}
|
|
2952
|
+
/**
|
|
2953
|
+
* @public
|
|
2954
|
+
*/
|
|
2812
2955
|
export interface DeleteAttributesRequest {
|
|
2813
2956
|
/**
|
|
2814
2957
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that contains the resource to delete
|
|
@@ -2823,6 +2966,9 @@ export interface DeleteAttributesRequest {
|
|
|
2823
2966
|
*/
|
|
2824
2967
|
attributes: Attribute[] | undefined;
|
|
2825
2968
|
}
|
|
2969
|
+
/**
|
|
2970
|
+
* @public
|
|
2971
|
+
*/
|
|
2826
2972
|
export interface DeleteAttributesResponse {
|
|
2827
2973
|
/**
|
|
2828
2974
|
* <p>A list of attribute objects that were successfully deleted from your resource.</p>
|
|
@@ -2830,6 +2976,7 @@ export interface DeleteAttributesResponse {
|
|
|
2830
2976
|
attributes?: Attribute[];
|
|
2831
2977
|
}
|
|
2832
2978
|
/**
|
|
2979
|
+
* @public
|
|
2833
2980
|
* <p>The specified target wasn't found. You can view your available container instances
|
|
2834
2981
|
* with <a>ListContainerInstances</a>. Amazon ECS container instances are
|
|
2835
2982
|
* cluster-specific and Region-specific.</p>
|
|
@@ -2842,12 +2989,18 @@ export declare class TargetNotFoundException extends __BaseException {
|
|
|
2842
2989
|
*/
|
|
2843
2990
|
constructor(opts: __ExceptionOptionType<TargetNotFoundException, __BaseException>);
|
|
2844
2991
|
}
|
|
2992
|
+
/**
|
|
2993
|
+
* @public
|
|
2994
|
+
*/
|
|
2845
2995
|
export interface DeleteCapacityProviderRequest {
|
|
2846
2996
|
/**
|
|
2847
2997
|
* <p>The short name or full Amazon Resource Name (ARN) of the capacity provider to delete.</p>
|
|
2848
2998
|
*/
|
|
2849
2999
|
capacityProvider: string | undefined;
|
|
2850
3000
|
}
|
|
3001
|
+
/**
|
|
3002
|
+
* @public
|
|
3003
|
+
*/
|
|
2851
3004
|
export interface DeleteCapacityProviderResponse {
|
|
2852
3005
|
/**
|
|
2853
3006
|
* <p>The details of the capacity provider.</p>
|
|
@@ -2855,6 +3008,7 @@ export interface DeleteCapacityProviderResponse {
|
|
|
2855
3008
|
capacityProvider?: CapacityProvider;
|
|
2856
3009
|
}
|
|
2857
3010
|
/**
|
|
3011
|
+
* @public
|
|
2858
3012
|
* <p>You can't delete a cluster that has registered container instances. First, deregister
|
|
2859
3013
|
* the container instances before you can delete the cluster. For more information, see
|
|
2860
3014
|
* <a>DeregisterContainerInstance</a>.</p>
|
|
@@ -2868,6 +3022,7 @@ export declare class ClusterContainsContainerInstancesException extends __BaseEx
|
|
|
2868
3022
|
constructor(opts: __ExceptionOptionType<ClusterContainsContainerInstancesException, __BaseException>);
|
|
2869
3023
|
}
|
|
2870
3024
|
/**
|
|
3025
|
+
* @public
|
|
2871
3026
|
* <p>You can't delete a cluster that contains services. First, update the service to reduce
|
|
2872
3027
|
* its desired task count to 0, and then delete the service. For more information, see
|
|
2873
3028
|
* <a>UpdateService</a> and <a>DeleteService</a>.</p>
|
|
@@ -2881,6 +3036,7 @@ export declare class ClusterContainsServicesException extends __BaseException {
|
|
|
2881
3036
|
constructor(opts: __ExceptionOptionType<ClusterContainsServicesException, __BaseException>);
|
|
2882
3037
|
}
|
|
2883
3038
|
/**
|
|
3039
|
+
* @public
|
|
2884
3040
|
* <p>You can't delete a cluster that has active tasks.</p>
|
|
2885
3041
|
*/
|
|
2886
3042
|
export declare class ClusterContainsTasksException extends __BaseException {
|
|
@@ -2891,18 +3047,27 @@ export declare class ClusterContainsTasksException extends __BaseException {
|
|
|
2891
3047
|
*/
|
|
2892
3048
|
constructor(opts: __ExceptionOptionType<ClusterContainsTasksException, __BaseException>);
|
|
2893
3049
|
}
|
|
3050
|
+
/**
|
|
3051
|
+
* @public
|
|
3052
|
+
*/
|
|
2894
3053
|
export interface DeleteClusterRequest {
|
|
2895
3054
|
/**
|
|
2896
3055
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to delete.</p>
|
|
2897
3056
|
*/
|
|
2898
3057
|
cluster: string | undefined;
|
|
2899
3058
|
}
|
|
3059
|
+
/**
|
|
3060
|
+
* @public
|
|
3061
|
+
*/
|
|
2900
3062
|
export interface DeleteClusterResponse {
|
|
2901
3063
|
/**
|
|
2902
3064
|
* <p>The full description of the deleted cluster.</p>
|
|
2903
3065
|
*/
|
|
2904
3066
|
cluster?: Cluster;
|
|
2905
3067
|
}
|
|
3068
|
+
/**
|
|
3069
|
+
* @public
|
|
3070
|
+
*/
|
|
2906
3071
|
export interface DeleteServiceRequest {
|
|
2907
3072
|
/**
|
|
2908
3073
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service to delete.
|
|
@@ -2920,12 +3085,18 @@ export interface DeleteServiceRequest {
|
|
|
2920
3085
|
*/
|
|
2921
3086
|
force?: boolean;
|
|
2922
3087
|
}
|
|
3088
|
+
/**
|
|
3089
|
+
* @public
|
|
3090
|
+
*/
|
|
2923
3091
|
export interface DeleteServiceResponse {
|
|
2924
3092
|
/**
|
|
2925
3093
|
* <p>The full description of the deleted service.</p>
|
|
2926
3094
|
*/
|
|
2927
3095
|
service?: Service;
|
|
2928
3096
|
}
|
|
3097
|
+
/**
|
|
3098
|
+
* @public
|
|
3099
|
+
*/
|
|
2929
3100
|
export interface DeleteTaskDefinitionsRequest {
|
|
2930
3101
|
/**
|
|
2931
3102
|
* <p>The <code>family</code> and <code>revision</code> (<code>family:revision</code>) or
|
|
@@ -2936,6 +3107,7 @@ export interface DeleteTaskDefinitionsRequest {
|
|
|
2936
3107
|
taskDefinitions: string[] | undefined;
|
|
2937
3108
|
}
|
|
2938
3109
|
/**
|
|
3110
|
+
* @public
|
|
2939
3111
|
* <p>A failed resource. For a list of common causes, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/api_failures_messages.html">API failure
|
|
2940
3112
|
* reasons</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
2941
3113
|
*/
|
|
@@ -2953,11 +3125,17 @@ export interface Failure {
|
|
|
2953
3125
|
*/
|
|
2954
3126
|
detail?: string;
|
|
2955
3127
|
}
|
|
3128
|
+
/**
|
|
3129
|
+
* @public
|
|
3130
|
+
*/
|
|
2956
3131
|
export declare enum Compatibility {
|
|
2957
3132
|
EC2 = "EC2",
|
|
2958
3133
|
EXTERNAL = "EXTERNAL",
|
|
2959
3134
|
FARGATE = "FARGATE"
|
|
2960
3135
|
}
|
|
3136
|
+
/**
|
|
3137
|
+
* @public
|
|
3138
|
+
*/
|
|
2961
3139
|
export declare enum ContainerCondition {
|
|
2962
3140
|
COMPLETE = "COMPLETE",
|
|
2963
3141
|
HEALTHY = "HEALTHY",
|
|
@@ -2965,6 +3143,7 @@ export declare enum ContainerCondition {
|
|
|
2965
3143
|
SUCCESS = "SUCCESS"
|
|
2966
3144
|
}
|
|
2967
3145
|
/**
|
|
3146
|
+
* @public
|
|
2968
3147
|
* <p>The dependencies defined for container startup and shutdown. A container can contain
|
|
2969
3148
|
* multiple dependencies. When a dependency is defined for container startup, for container
|
|
2970
3149
|
* shutdown it is reversed.</p>
|
|
@@ -3031,10 +3210,14 @@ export interface ContainerDependency {
|
|
|
3031
3210
|
*/
|
|
3032
3211
|
condition: ContainerCondition | string | undefined;
|
|
3033
3212
|
}
|
|
3213
|
+
/**
|
|
3214
|
+
* @public
|
|
3215
|
+
*/
|
|
3034
3216
|
export declare enum EnvironmentFileType {
|
|
3035
3217
|
S3 = "s3"
|
|
3036
3218
|
}
|
|
3037
3219
|
/**
|
|
3220
|
+
* @public
|
|
3038
3221
|
* <p>A list of files containing the environment variables to pass to a container. You can
|
|
3039
3222
|
* specify up to ten environment files. The file must have a <code>.env</code> file
|
|
3040
3223
|
* extension. Each line in an environment file should contain an environment variable in
|
|
@@ -3071,6 +3254,7 @@ export interface EnvironmentFile {
|
|
|
3071
3254
|
type: EnvironmentFileType | string | undefined;
|
|
3072
3255
|
}
|
|
3073
3256
|
/**
|
|
3257
|
+
* @public
|
|
3074
3258
|
* <p>Hostnames and IP address entries that are added to the <code>/etc/hosts</code> file of
|
|
3075
3259
|
* a container via the <code>extraHosts</code> parameter of its <a>ContainerDefinition</a>. </p>
|
|
3076
3260
|
*/
|
|
@@ -3084,11 +3268,15 @@ export interface HostEntry {
|
|
|
3084
3268
|
*/
|
|
3085
3269
|
ipAddress: string | undefined;
|
|
3086
3270
|
}
|
|
3271
|
+
/**
|
|
3272
|
+
* @public
|
|
3273
|
+
*/
|
|
3087
3274
|
export declare enum FirelensConfigurationType {
|
|
3088
3275
|
FLUENTBIT = "fluentbit",
|
|
3089
3276
|
FLUENTD = "fluentd"
|
|
3090
3277
|
}
|
|
3091
3278
|
/**
|
|
3279
|
+
* @public
|
|
3092
3280
|
* <p>The FireLens configuration for the container. This is used to specify and configure a
|
|
3093
3281
|
* log router for container logs. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html">Custom log routing</a>
|
|
3094
3282
|
* in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
@@ -3104,7 +3292,7 @@ export interface FirelensConfiguration {
|
|
|
3104
3292
|
* used to specify a custom configuration file or to add additional metadata, such as the
|
|
3105
3293
|
* task, task definition, cluster, and container instance details to the log event. If
|
|
3106
3294
|
* specified, the syntax to use is
|
|
3107
|
-
* <code>"options"
|
|
3295
|
+
* <code>"options":\{"enable-ecs-log-metadata":"true|false","config-file-type:"s3|file","config-file-value":"arn:aws:s3:::mybucket/fluent.conf|filepath"\}</code>.
|
|
3108
3296
|
* For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html#firelens-taskdef">Creating
|
|
3109
3297
|
* a task definition that uses a FireLens configuration</a> in the
|
|
3110
3298
|
* <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
@@ -3116,6 +3304,7 @@ export interface FirelensConfiguration {
|
|
|
3116
3304
|
options?: Record<string, string>;
|
|
3117
3305
|
}
|
|
3118
3306
|
/**
|
|
3307
|
+
* @public
|
|
3119
3308
|
* <p>An object representing a container health check. Health check parameters that are
|
|
3120
3309
|
* specified in a container definition override any Docker health checks that exist in the
|
|
3121
3310
|
* container image (such as those specified in a parent image or from the image's
|
|
@@ -3248,6 +3437,7 @@ export interface HealthCheck {
|
|
|
3248
3437
|
startPeriod?: number;
|
|
3249
3438
|
}
|
|
3250
3439
|
/**
|
|
3440
|
+
* @public
|
|
3251
3441
|
* <p>The Linux capabilities for the container that are added to or dropped from the default
|
|
3252
3442
|
* configuration provided by Docker. For more information about the default capabilities
|
|
3253
3443
|
* and the non-default available capabilities, see <a href="https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities">Runtime privilege and Linux capabilities</a> in the <i>Docker run
|
|
@@ -3294,12 +3484,16 @@ export interface KernelCapabilities {
|
|
|
3294
3484
|
*/
|
|
3295
3485
|
drop?: string[];
|
|
3296
3486
|
}
|
|
3487
|
+
/**
|
|
3488
|
+
* @public
|
|
3489
|
+
*/
|
|
3297
3490
|
export declare enum DeviceCgroupPermission {
|
|
3298
3491
|
MKNOD = "mknod",
|
|
3299
3492
|
READ = "read",
|
|
3300
3493
|
WRITE = "write"
|
|
3301
3494
|
}
|
|
3302
3495
|
/**
|
|
3496
|
+
* @public
|
|
3303
3497
|
* <p>An object representing a container instance host device.</p>
|
|
3304
3498
|
*/
|
|
3305
3499
|
export interface Device {
|
|
@@ -3319,6 +3513,7 @@ export interface Device {
|
|
|
3319
3513
|
permissions?: (DeviceCgroupPermission | string)[];
|
|
3320
3514
|
}
|
|
3321
3515
|
/**
|
|
3516
|
+
* @public
|
|
3322
3517
|
* <p>The container path, mount options, and size of the tmpfs mount.</p>
|
|
3323
3518
|
*/
|
|
3324
3519
|
export interface Tmpfs {
|
|
@@ -3343,6 +3538,7 @@ export interface Tmpfs {
|
|
|
3343
3538
|
mountOptions?: string[];
|
|
3344
3539
|
}
|
|
3345
3540
|
/**
|
|
3541
|
+
* @public
|
|
3346
3542
|
* <p>Linux-specific options that are applied to the container, such as Linux <a>KernelCapabilities</a>.</p>
|
|
3347
3543
|
*/
|
|
3348
3544
|
export interface LinuxParameters {
|
|
@@ -3369,7 +3565,7 @@ export interface LinuxParameters {
|
|
|
3369
3565
|
devices?: Device[];
|
|
3370
3566
|
/**
|
|
3371
3567
|
* <p>Run an <code>init</code> process inside the container that forwards signals and reaps
|
|
3372
|
-
* processes. This parameter maps to the <code>--init</code> option to <a href="https://docs.docker.com/engine/reference/run/#security-configuration">docker run</a>. This parameter requires version 1.25 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: <code>sudo docker version --format '{{.Server.APIVersion}}'</code>
|
|
3568
|
+
* processes. This parameter maps to the <code>--init</code> option to <a href="https://docs.docker.com/engine/reference/run/#security-configuration">docker run</a>. This parameter requires version 1.25 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: <code>sudo docker version --format '\{\{.Server.APIVersion\}\}'</code>
|
|
3373
3569
|
* </p>
|
|
3374
3570
|
*/
|
|
3375
3571
|
initProcessEnabled?: boolean;
|
|
@@ -3424,6 +3620,7 @@ export interface LinuxParameters {
|
|
|
3424
3620
|
swappiness?: number;
|
|
3425
3621
|
}
|
|
3426
3622
|
/**
|
|
3623
|
+
* @public
|
|
3427
3624
|
* <p>Details for a volume mount point that's used in a container definition.</p>
|
|
3428
3625
|
*/
|
|
3429
3626
|
export interface MountPoint {
|
|
@@ -3443,16 +3640,23 @@ export interface MountPoint {
|
|
|
3443
3640
|
*/
|
|
3444
3641
|
readOnly?: boolean;
|
|
3445
3642
|
}
|
|
3643
|
+
/**
|
|
3644
|
+
* @public
|
|
3645
|
+
*/
|
|
3446
3646
|
export declare enum ApplicationProtocol {
|
|
3447
3647
|
GRPC = "grpc",
|
|
3448
3648
|
HTTP = "http",
|
|
3449
3649
|
HTTP2 = "http2"
|
|
3450
3650
|
}
|
|
3651
|
+
/**
|
|
3652
|
+
* @public
|
|
3653
|
+
*/
|
|
3451
3654
|
export declare enum TransportProtocol {
|
|
3452
3655
|
TCP = "tcp",
|
|
3453
3656
|
UDP = "udp"
|
|
3454
3657
|
}
|
|
3455
3658
|
/**
|
|
3659
|
+
* @public
|
|
3456
3660
|
* <p>Port mappings allow containers to access ports on the host container instance to send
|
|
3457
3661
|
* or receive traffic. Port mappings are specified as part of the container
|
|
3458
3662
|
* definition.</p>
|
|
@@ -3616,6 +3820,7 @@ export interface PortMapping {
|
|
|
3616
3820
|
containerPortRange?: string;
|
|
3617
3821
|
}
|
|
3618
3822
|
/**
|
|
3823
|
+
* @public
|
|
3619
3824
|
* <p>The repository credentials for private registry authentication.</p>
|
|
3620
3825
|
*/
|
|
3621
3826
|
export interface RepositoryCredentials {
|
|
@@ -3631,11 +3836,15 @@ export interface RepositoryCredentials {
|
|
|
3631
3836
|
*/
|
|
3632
3837
|
credentialsParameter: string | undefined;
|
|
3633
3838
|
}
|
|
3839
|
+
/**
|
|
3840
|
+
* @public
|
|
3841
|
+
*/
|
|
3634
3842
|
export declare enum ResourceType {
|
|
3635
3843
|
GPU = "GPU",
|
|
3636
3844
|
INFERENCE_ACCELERATOR = "InferenceAccelerator"
|
|
3637
3845
|
}
|
|
3638
3846
|
/**
|
|
3847
|
+
* @public
|
|
3639
3848
|
* <p>The type and amount of a resource to assign to a container. The supported resource
|
|
3640
3849
|
* types are GPUs and Elastic Inference accelerators. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-gpu.html">Working with
|
|
3641
3850
|
* GPUs on Amazon ECS</a> or <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-inference.html">Working with
|
|
@@ -3661,6 +3870,7 @@ export interface ResourceRequirement {
|
|
|
3661
3870
|
type: ResourceType | string | undefined;
|
|
3662
3871
|
}
|
|
3663
3872
|
/**
|
|
3873
|
+
* @public
|
|
3664
3874
|
* <p>A list of namespaced kernel parameters to set in the container. This parameter maps to
|
|
3665
3875
|
* <code>Sysctls</code> in the <a href="https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate">Create a container</a> section of the
|
|
3666
3876
|
* <a href="https://docs.docker.com/engine/api/v1.35/">Docker Remote API</a> and the <code>--sysctl</code> option to <a href="https://docs.docker.com/engine/reference/run/#security-configuration">docker run</a>.</p>
|
|
@@ -3695,6 +3905,9 @@ export interface SystemControl {
|
|
|
3695
3905
|
*/
|
|
3696
3906
|
value?: string;
|
|
3697
3907
|
}
|
|
3908
|
+
/**
|
|
3909
|
+
* @public
|
|
3910
|
+
*/
|
|
3698
3911
|
export declare enum UlimitName {
|
|
3699
3912
|
CORE = "core",
|
|
3700
3913
|
CPU = "cpu",
|
|
@@ -3713,6 +3926,7 @@ export declare enum UlimitName {
|
|
|
3713
3926
|
STACK = "stack"
|
|
3714
3927
|
}
|
|
3715
3928
|
/**
|
|
3929
|
+
* @public
|
|
3716
3930
|
* <p>The <code>ulimit</code> settings to pass to the container.</p>
|
|
3717
3931
|
* <p>Amazon ECS tasks hosted on Fargate use the default
|
|
3718
3932
|
* resource limit values set by the operating system with the exception of
|
|
@@ -3739,6 +3953,7 @@ export interface Ulimit {
|
|
|
3739
3953
|
hardLimit: number | undefined;
|
|
3740
3954
|
}
|
|
3741
3955
|
/**
|
|
3956
|
+
* @public
|
|
3742
3957
|
* <p>Details on a data volume from another container in the same task definition.</p>
|
|
3743
3958
|
*/
|
|
3744
3959
|
export interface VolumeFrom {
|
|
@@ -3755,6 +3970,7 @@ export interface VolumeFrom {
|
|
|
3755
3970
|
readOnly?: boolean;
|
|
3756
3971
|
}
|
|
3757
3972
|
/**
|
|
3973
|
+
* @public
|
|
3758
3974
|
* <p>Container definitions are used in task definitions to describe the different
|
|
3759
3975
|
* containers that are launched as part of a task.</p>
|
|
3760
3976
|
*/
|
|
@@ -4305,7 +4521,7 @@ export interface ContainerDefinition {
|
|
|
4305
4521
|
/**
|
|
4306
4522
|
* <p>A key/value map of labels to add to the container. This parameter maps to
|
|
4307
4523
|
* <code>Labels</code> in the <a href="https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate">Create a container</a> section of the
|
|
4308
|
-
* <a href="https://docs.docker.com/engine/api/v1.35/">Docker Remote API</a> and the <code>--label</code> option to <a href="https://docs.docker.com/engine/reference/run/#security-configuration">docker run</a>. This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: <code>sudo docker version --format '{{.Server.APIVersion}}'</code>
|
|
4524
|
+
* <a href="https://docs.docker.com/engine/api/v1.35/">Docker Remote API</a> and the <code>--label</code> option to <a href="https://docs.docker.com/engine/reference/run/#security-configuration">docker run</a>. This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: <code>sudo docker version --format '\{\{.Server.APIVersion\}\}'</code>
|
|
4309
4525
|
* </p>
|
|
4310
4526
|
*/
|
|
4311
4527
|
dockerLabels?: Record<string, string>;
|
|
@@ -4322,7 +4538,7 @@ export interface ContainerDefinition {
|
|
|
4322
4538
|
* the number of open files that a container can use. The default
|
|
4323
4539
|
* <code>nofile</code> soft limit is <code>1024</code> and the default hard limit
|
|
4324
4540
|
* is <code>4096</code>.</p>
|
|
4325
|
-
* <p>This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: <code>sudo docker version --format '{{.Server.APIVersion}}'</code>
|
|
4541
|
+
* <p>This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: <code>sudo docker version --format '\{\{.Server.APIVersion\}\}'</code>
|
|
4326
4542
|
* </p>
|
|
4327
4543
|
* <note>
|
|
4328
4544
|
* <p>This parameter is not supported for Windows containers.</p>
|
|
@@ -4347,7 +4563,7 @@ export interface ContainerDefinition {
|
|
|
4347
4563
|
* daemon (shown in the <a>LogConfiguration</a> data type). Additional log
|
|
4348
4564
|
* drivers may be available in future releases of the Amazon ECS container agent.</p>
|
|
4349
4565
|
* </note>
|
|
4350
|
-
* <p>This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: <code>sudo docker version --format '{{.Server.APIVersion}}'</code>
|
|
4566
|
+
* <p>This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: <code>sudo docker version --format '\{\{.Server.APIVersion\}\}'</code>
|
|
4351
4567
|
* </p>
|
|
4352
4568
|
* <note>
|
|
4353
4569
|
* <p>The Amazon ECS container agent running on a container instance must register the
|
|
@@ -4395,6 +4611,7 @@ export interface ContainerDefinition {
|
|
|
4395
4611
|
firelensConfiguration?: FirelensConfiguration;
|
|
4396
4612
|
}
|
|
4397
4613
|
/**
|
|
4614
|
+
* @public
|
|
4398
4615
|
* <p>The amount of ephemeral storage to allocate for the task. This parameter is used to
|
|
4399
4616
|
* expand the total amount of ephemeral storage available, beyond the default amount, for
|
|
4400
4617
|
* tasks hosted on Fargate. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/userguide/using_data_volumes.html">Fargate task
|
|
@@ -4414,6 +4631,7 @@ export interface EphemeralStorage {
|
|
|
4414
4631
|
sizeInGiB: number | undefined;
|
|
4415
4632
|
}
|
|
4416
4633
|
/**
|
|
4634
|
+
* @public
|
|
4417
4635
|
* <p>Details on an Elastic Inference accelerator. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-inference.html">Working with Amazon Elastic Inference on
|
|
4418
4636
|
* Amazon ECS</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
4419
4637
|
*/
|
|
@@ -4428,25 +4646,38 @@ export interface InferenceAccelerator {
|
|
|
4428
4646
|
*/
|
|
4429
4647
|
deviceType: string | undefined;
|
|
4430
4648
|
}
|
|
4649
|
+
/**
|
|
4650
|
+
* @public
|
|
4651
|
+
*/
|
|
4431
4652
|
export declare enum IpcMode {
|
|
4432
4653
|
HOST = "host",
|
|
4433
4654
|
NONE = "none",
|
|
4434
4655
|
TASK = "task"
|
|
4435
4656
|
}
|
|
4657
|
+
/**
|
|
4658
|
+
* @public
|
|
4659
|
+
*/
|
|
4436
4660
|
export declare enum NetworkMode {
|
|
4437
4661
|
AWSVPC = "awsvpc",
|
|
4438
4662
|
BRIDGE = "bridge",
|
|
4439
4663
|
HOST = "host",
|
|
4440
4664
|
NONE = "none"
|
|
4441
4665
|
}
|
|
4666
|
+
/**
|
|
4667
|
+
* @public
|
|
4668
|
+
*/
|
|
4442
4669
|
export declare enum PidMode {
|
|
4443
4670
|
HOST = "host",
|
|
4444
4671
|
TASK = "task"
|
|
4445
4672
|
}
|
|
4673
|
+
/**
|
|
4674
|
+
* @public
|
|
4675
|
+
*/
|
|
4446
4676
|
export declare enum TaskDefinitionPlacementConstraintType {
|
|
4447
4677
|
MEMBER_OF = "memberOf"
|
|
4448
4678
|
}
|
|
4449
4679
|
/**
|
|
4680
|
+
* @public
|
|
4450
4681
|
* <p>An object representing a constraint on task placement in the task definition. For more
|
|
4451
4682
|
* information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html">Task placement constraints</a> in the
|
|
4452
4683
|
* <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
@@ -4466,10 +4697,14 @@ export interface TaskDefinitionPlacementConstraint {
|
|
|
4466
4697
|
*/
|
|
4467
4698
|
expression?: string;
|
|
4468
4699
|
}
|
|
4700
|
+
/**
|
|
4701
|
+
* @public
|
|
4702
|
+
*/
|
|
4469
4703
|
export declare enum ProxyConfigurationType {
|
|
4470
4704
|
APPMESH = "APPMESH"
|
|
4471
4705
|
}
|
|
4472
4706
|
/**
|
|
4707
|
+
* @public
|
|
4473
4708
|
* <p>The configuration details for the App Mesh proxy.</p>
|
|
4474
4709
|
* <p>For tasks that use the EC2 launch type, the container instances require
|
|
4475
4710
|
* at least version 1.26.0 of the container agent and at least version 1.26.0-1 of the
|
|
@@ -4538,10 +4773,16 @@ export interface ProxyConfiguration {
|
|
|
4538
4773
|
*/
|
|
4539
4774
|
properties?: KeyValuePair[];
|
|
4540
4775
|
}
|
|
4776
|
+
/**
|
|
4777
|
+
* @public
|
|
4778
|
+
*/
|
|
4541
4779
|
export declare enum CPUArchitecture {
|
|
4542
4780
|
ARM64 = "ARM64",
|
|
4543
4781
|
X86_64 = "X86_64"
|
|
4544
4782
|
}
|
|
4783
|
+
/**
|
|
4784
|
+
* @public
|
|
4785
|
+
*/
|
|
4545
4786
|
export declare enum OSFamily {
|
|
4546
4787
|
LINUX = "LINUX",
|
|
4547
4788
|
WINDOWS_SERVER_2004_CORE = "WINDOWS_SERVER_2004_CORE",
|
|
@@ -4553,6 +4794,7 @@ export declare enum OSFamily {
|
|
|
4553
4794
|
WINDOWS_SERVER_20H2_CORE = "WINDOWS_SERVER_20H2_CORE"
|
|
4554
4795
|
}
|
|
4555
4796
|
/**
|
|
4797
|
+
* @public
|
|
4556
4798
|
* <p>Information about the platform for the Amazon ECS service or task.</p>
|
|
4557
4799
|
* <p>For more information about <code>RuntimePlatform</code>, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#runtime-platform">RuntimePlatform</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
4558
4800
|
*/
|
|
@@ -4569,16 +4811,23 @@ export interface RuntimePlatform {
|
|
|
4569
4811
|
*/
|
|
4570
4812
|
operatingSystemFamily?: OSFamily | string;
|
|
4571
4813
|
}
|
|
4814
|
+
/**
|
|
4815
|
+
* @public
|
|
4816
|
+
*/
|
|
4572
4817
|
export declare enum TaskDefinitionStatus {
|
|
4573
4818
|
ACTIVE = "ACTIVE",
|
|
4574
4819
|
DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
|
|
4575
4820
|
INACTIVE = "INACTIVE"
|
|
4576
4821
|
}
|
|
4822
|
+
/**
|
|
4823
|
+
* @public
|
|
4824
|
+
*/
|
|
4577
4825
|
export declare enum Scope {
|
|
4578
4826
|
SHARED = "shared",
|
|
4579
4827
|
TASK = "task"
|
|
4580
4828
|
}
|
|
4581
4829
|
/**
|
|
4830
|
+
* @public
|
|
4582
4831
|
* <p>This parameter is specified when you're using Docker volumes. Docker volumes are only
|
|
4583
4832
|
* supported when you're using the EC2 launch type. Windows containers only
|
|
4584
4833
|
* support the use of the <code>local</code> driver. To use bind mounts, specify a
|
|
@@ -4627,11 +4876,15 @@ export interface DockerVolumeConfiguration {
|
|
|
4627
4876
|
*/
|
|
4628
4877
|
labels?: Record<string, string>;
|
|
4629
4878
|
}
|
|
4879
|
+
/**
|
|
4880
|
+
* @public
|
|
4881
|
+
*/
|
|
4630
4882
|
export declare enum EFSAuthorizationConfigIAM {
|
|
4631
4883
|
DISABLED = "DISABLED",
|
|
4632
4884
|
ENABLED = "ENABLED"
|
|
4633
4885
|
}
|
|
4634
4886
|
/**
|
|
4887
|
+
* @public
|
|
4635
4888
|
* <p>The authorization configuration details for the Amazon EFS file system.</p>
|
|
4636
4889
|
*/
|
|
4637
4890
|
export interface EFSAuthorizationConfig {
|
|
@@ -4653,11 +4906,15 @@ export interface EFSAuthorizationConfig {
|
|
|
4653
4906
|
*/
|
|
4654
4907
|
iam?: EFSAuthorizationConfigIAM | string;
|
|
4655
4908
|
}
|
|
4909
|
+
/**
|
|
4910
|
+
* @public
|
|
4911
|
+
*/
|
|
4656
4912
|
export declare enum EFSTransitEncryption {
|
|
4657
4913
|
DISABLED = "DISABLED",
|
|
4658
4914
|
ENABLED = "ENABLED"
|
|
4659
4915
|
}
|
|
4660
4916
|
/**
|
|
4917
|
+
* @public
|
|
4661
4918
|
* <p>This parameter is specified when you're using an Amazon Elastic File System file system for task
|
|
4662
4919
|
* storage. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/efs-volumes.html">Amazon EFS volumes</a> in the
|
|
4663
4920
|
* <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
@@ -4699,6 +4956,7 @@ export interface EFSVolumeConfiguration {
|
|
|
4699
4956
|
authorizationConfig?: EFSAuthorizationConfig;
|
|
4700
4957
|
}
|
|
4701
4958
|
/**
|
|
4959
|
+
* @public
|
|
4702
4960
|
* <p>The authorization configuration details for Amazon FSx for Windows File Server file system. See <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_FSxWindowsFileServerVolumeConfiguration.html">FSxWindowsFileServerVolumeConfiguration</a> in the <i>Amazon ECS API
|
|
4703
4961
|
* Reference</i>.</p>
|
|
4704
4962
|
* <p>For more information and the input format, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/wfsx-volumes.html">Amazon FSx for Windows File Server Volumes</a>
|
|
@@ -4718,6 +4976,7 @@ export interface FSxWindowsFileServerAuthorizationConfig {
|
|
|
4718
4976
|
domain: string | undefined;
|
|
4719
4977
|
}
|
|
4720
4978
|
/**
|
|
4979
|
+
* @public
|
|
4721
4980
|
* <p>This parameter is specified when you're using <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/what-is.html">Amazon FSx for Windows File Server</a> file system for task
|
|
4722
4981
|
* storage.</p>
|
|
4723
4982
|
* <p>For more information and the input format, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/wfsx-volumes.html">Amazon FSx for Windows File Server volumes</a>
|
|
@@ -4739,6 +4998,7 @@ export interface FSxWindowsFileServerVolumeConfiguration {
|
|
|
4739
4998
|
authorizationConfig: FSxWindowsFileServerAuthorizationConfig | undefined;
|
|
4740
4999
|
}
|
|
4741
5000
|
/**
|
|
5001
|
+
* @public
|
|
4742
5002
|
* <p>Details on a container instance bind mount host volume.</p>
|
|
4743
5003
|
*/
|
|
4744
5004
|
export interface HostVolumeProperties {
|
|
@@ -4757,6 +5017,7 @@ export interface HostVolumeProperties {
|
|
|
4757
5017
|
sourcePath?: string;
|
|
4758
5018
|
}
|
|
4759
5019
|
/**
|
|
5020
|
+
* @public
|
|
4760
5021
|
* <p>A data volume that's used in a task definition. For tasks that use the Amazon Elastic File System
|
|
4761
5022
|
* (Amazon EFS), specify an <code>efsVolumeConfiguration</code>. For Windows tasks that use
|
|
4762
5023
|
* Amazon FSx for Windows File Server file system, specify a
|
|
@@ -4808,6 +5069,7 @@ export interface Volume {
|
|
|
4808
5069
|
fsxWindowsFileServerVolumeConfiguration?: FSxWindowsFileServerVolumeConfiguration;
|
|
4809
5070
|
}
|
|
4810
5071
|
/**
|
|
5072
|
+
* @public
|
|
4811
5073
|
* <p>The details of a task definition which describes the container and volume definitions
|
|
4812
5074
|
* of an Amazon Elastic Container Service task. You can specify which Docker images to use, the required
|
|
4813
5075
|
* resources, and other configurations related to launching the task definition through an
|
|
@@ -5098,6 +5360,9 @@ export interface TaskDefinition {
|
|
|
5098
5360
|
*/
|
|
5099
5361
|
ephemeralStorage?: EphemeralStorage;
|
|
5100
5362
|
}
|
|
5363
|
+
/**
|
|
5364
|
+
* @public
|
|
5365
|
+
*/
|
|
5101
5366
|
export interface DeleteTaskDefinitionsResponse {
|
|
5102
5367
|
/**
|
|
5103
5368
|
* <p>The list of deleted task definitions.</p>
|
|
@@ -5108,6 +5373,9 @@ export interface DeleteTaskDefinitionsResponse {
|
|
|
5108
5373
|
*/
|
|
5109
5374
|
failures?: Failure[];
|
|
5110
5375
|
}
|
|
5376
|
+
/**
|
|
5377
|
+
* @public
|
|
5378
|
+
*/
|
|
5111
5379
|
export interface DeleteTaskSetRequest {
|
|
5112
5380
|
/**
|
|
5113
5381
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task
|
|
@@ -5129,6 +5397,9 @@ export interface DeleteTaskSetRequest {
|
|
|
5129
5397
|
*/
|
|
5130
5398
|
force?: boolean;
|
|
5131
5399
|
}
|
|
5400
|
+
/**
|
|
5401
|
+
* @public
|
|
5402
|
+
*/
|
|
5132
5403
|
export interface DeleteTaskSetResponse {
|
|
5133
5404
|
/**
|
|
5134
5405
|
* <p>Details about the task set.</p>
|
|
@@ -5136,6 +5407,7 @@ export interface DeleteTaskSetResponse {
|
|
|
5136
5407
|
taskSet?: TaskSet;
|
|
5137
5408
|
}
|
|
5138
5409
|
/**
|
|
5410
|
+
* @public
|
|
5139
5411
|
* <p>The specified task set wasn't found. You can view your available task sets with <a>DescribeTaskSets</a>. Task sets are specific to each cluster, service and
|
|
5140
5412
|
* Region.</p>
|
|
5141
5413
|
*/
|
|
@@ -5147,6 +5419,9 @@ export declare class TaskSetNotFoundException extends __BaseException {
|
|
|
5147
5419
|
*/
|
|
5148
5420
|
constructor(opts: __ExceptionOptionType<TaskSetNotFoundException, __BaseException>);
|
|
5149
5421
|
}
|
|
5422
|
+
/**
|
|
5423
|
+
* @public
|
|
5424
|
+
*/
|
|
5150
5425
|
export interface DeregisterContainerInstanceRequest {
|
|
5151
5426
|
/**
|
|
5152
5427
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instance to
|
|
@@ -5172,16 +5447,23 @@ export interface DeregisterContainerInstanceRequest {
|
|
|
5172
5447
|
*/
|
|
5173
5448
|
force?: boolean;
|
|
5174
5449
|
}
|
|
5450
|
+
/**
|
|
5451
|
+
* @public
|
|
5452
|
+
*/
|
|
5175
5453
|
export declare enum InstanceHealthCheckState {
|
|
5176
5454
|
IMPAIRED = "IMPAIRED",
|
|
5177
5455
|
INITIALIZING = "INITIALIZING",
|
|
5178
5456
|
INSUFFICIENT_DATA = "INSUFFICIENT_DATA",
|
|
5179
5457
|
OK = "OK"
|
|
5180
5458
|
}
|
|
5459
|
+
/**
|
|
5460
|
+
* @public
|
|
5461
|
+
*/
|
|
5181
5462
|
export declare enum InstanceHealthCheckType {
|
|
5182
5463
|
CONTAINER_RUNTIME = "CONTAINER_RUNTIME"
|
|
5183
5464
|
}
|
|
5184
5465
|
/**
|
|
5466
|
+
* @public
|
|
5185
5467
|
* <p>An object representing the result of a container instance health status check.</p>
|
|
5186
5468
|
*/
|
|
5187
5469
|
export interface InstanceHealthCheckResult {
|
|
@@ -5204,6 +5486,7 @@ export interface InstanceHealthCheckResult {
|
|
|
5204
5486
|
lastStatusChange?: Date;
|
|
5205
5487
|
}
|
|
5206
5488
|
/**
|
|
5489
|
+
* @public
|
|
5207
5490
|
* <p>An object representing the health status of the container instance.</p>
|
|
5208
5491
|
*/
|
|
5209
5492
|
export interface ContainerInstanceHealthStatus {
|
|
@@ -5219,6 +5502,7 @@ export interface ContainerInstanceHealthStatus {
|
|
|
5219
5502
|
details?: InstanceHealthCheckResult[];
|
|
5220
5503
|
}
|
|
5221
5504
|
/**
|
|
5505
|
+
* @public
|
|
5222
5506
|
* <p>Describes the resources available for a container instance.</p>
|
|
5223
5507
|
*/
|
|
5224
5508
|
export interface Resource {
|
|
@@ -5254,6 +5538,7 @@ export interface Resource {
|
|
|
5254
5538
|
stringSetValue?: string[];
|
|
5255
5539
|
}
|
|
5256
5540
|
/**
|
|
5541
|
+
* @public
|
|
5257
5542
|
* <p>The Docker and Amazon ECS container agent version information about a container
|
|
5258
5543
|
* instance.</p>
|
|
5259
5544
|
*/
|
|
@@ -5273,6 +5558,7 @@ export interface VersionInfo {
|
|
|
5273
5558
|
dockerVersion?: string;
|
|
5274
5559
|
}
|
|
5275
5560
|
/**
|
|
5561
|
+
* @public
|
|
5276
5562
|
* <p>An Amazon EC2 or External instance that's running the Amazon ECS agent and has been registered
|
|
5277
5563
|
* with a cluster.</p>
|
|
5278
5564
|
*/
|
|
@@ -5425,12 +5711,18 @@ export interface ContainerInstance {
|
|
|
5425
5711
|
*/
|
|
5426
5712
|
healthStatus?: ContainerInstanceHealthStatus;
|
|
5427
5713
|
}
|
|
5714
|
+
/**
|
|
5715
|
+
* @public
|
|
5716
|
+
*/
|
|
5428
5717
|
export interface DeregisterContainerInstanceResponse {
|
|
5429
5718
|
/**
|
|
5430
5719
|
* <p>The container instance that was deregistered.</p>
|
|
5431
5720
|
*/
|
|
5432
5721
|
containerInstance?: ContainerInstance;
|
|
5433
5722
|
}
|
|
5723
|
+
/**
|
|
5724
|
+
* @public
|
|
5725
|
+
*/
|
|
5434
5726
|
export interface DeregisterTaskDefinitionRequest {
|
|
5435
5727
|
/**
|
|
5436
5728
|
* <p>The <code>family</code> and <code>revision</code> (<code>family:revision</code>) or
|
|
@@ -5439,15 +5731,24 @@ export interface DeregisterTaskDefinitionRequest {
|
|
|
5439
5731
|
*/
|
|
5440
5732
|
taskDefinition: string | undefined;
|
|
5441
5733
|
}
|
|
5734
|
+
/**
|
|
5735
|
+
* @public
|
|
5736
|
+
*/
|
|
5442
5737
|
export interface DeregisterTaskDefinitionResponse {
|
|
5443
5738
|
/**
|
|
5444
5739
|
* <p>The full description of the deregistered task.</p>
|
|
5445
5740
|
*/
|
|
5446
5741
|
taskDefinition?: TaskDefinition;
|
|
5447
5742
|
}
|
|
5743
|
+
/**
|
|
5744
|
+
* @public
|
|
5745
|
+
*/
|
|
5448
5746
|
export declare enum CapacityProviderField {
|
|
5449
5747
|
TAGS = "TAGS"
|
|
5450
5748
|
}
|
|
5749
|
+
/**
|
|
5750
|
+
* @public
|
|
5751
|
+
*/
|
|
5451
5752
|
export interface DescribeCapacityProvidersRequest {
|
|
5452
5753
|
/**
|
|
5453
5754
|
* <p>The short name or full Amazon Resource Name (ARN) of one or more capacity providers. Up to
|
|
@@ -5486,6 +5787,9 @@ export interface DescribeCapacityProvidersRequest {
|
|
|
5486
5787
|
*/
|
|
5487
5788
|
nextToken?: string;
|
|
5488
5789
|
}
|
|
5790
|
+
/**
|
|
5791
|
+
* @public
|
|
5792
|
+
*/
|
|
5489
5793
|
export interface DescribeCapacityProvidersResponse {
|
|
5490
5794
|
/**
|
|
5491
5795
|
* <p>The list of capacity providers.</p>
|
|
@@ -5504,6 +5808,9 @@ export interface DescribeCapacityProvidersResponse {
|
|
|
5504
5808
|
*/
|
|
5505
5809
|
nextToken?: string;
|
|
5506
5810
|
}
|
|
5811
|
+
/**
|
|
5812
|
+
* @public
|
|
5813
|
+
*/
|
|
5507
5814
|
export declare enum ClusterField {
|
|
5508
5815
|
ATTACHMENTS = "ATTACHMENTS",
|
|
5509
5816
|
CONFIGURATIONS = "CONFIGURATIONS",
|
|
@@ -5511,6 +5818,9 @@ export declare enum ClusterField {
|
|
|
5511
5818
|
STATISTICS = "STATISTICS",
|
|
5512
5819
|
TAGS = "TAGS"
|
|
5513
5820
|
}
|
|
5821
|
+
/**
|
|
5822
|
+
* @public
|
|
5823
|
+
*/
|
|
5514
5824
|
export interface DescribeClustersRequest {
|
|
5515
5825
|
/**
|
|
5516
5826
|
* <p>A list of up to 100 cluster names or full cluster Amazon Resource Name (ARN) entries.
|
|
@@ -5533,6 +5843,9 @@ export interface DescribeClustersRequest {
|
|
|
5533
5843
|
*/
|
|
5534
5844
|
include?: (ClusterField | string)[];
|
|
5535
5845
|
}
|
|
5846
|
+
/**
|
|
5847
|
+
* @public
|
|
5848
|
+
*/
|
|
5536
5849
|
export interface DescribeClustersResponse {
|
|
5537
5850
|
/**
|
|
5538
5851
|
* <p>The list of clusters.</p>
|
|
@@ -5543,10 +5856,16 @@ export interface DescribeClustersResponse {
|
|
|
5543
5856
|
*/
|
|
5544
5857
|
failures?: Failure[];
|
|
5545
5858
|
}
|
|
5859
|
+
/**
|
|
5860
|
+
* @public
|
|
5861
|
+
*/
|
|
5546
5862
|
export declare enum ContainerInstanceField {
|
|
5547
5863
|
CONTAINER_INSTANCE_HEALTH = "CONTAINER_INSTANCE_HEALTH",
|
|
5548
5864
|
TAGS = "TAGS"
|
|
5549
5865
|
}
|
|
5866
|
+
/**
|
|
5867
|
+
* @public
|
|
5868
|
+
*/
|
|
5550
5869
|
export interface DescribeContainerInstancesRequest {
|
|
5551
5870
|
/**
|
|
5552
5871
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instances to
|
|
@@ -5568,6 +5887,9 @@ export interface DescribeContainerInstancesRequest {
|
|
|
5568
5887
|
*/
|
|
5569
5888
|
include?: (ContainerInstanceField | string)[];
|
|
5570
5889
|
}
|
|
5890
|
+
/**
|
|
5891
|
+
* @public
|
|
5892
|
+
*/
|
|
5571
5893
|
export interface DescribeContainerInstancesResponse {
|
|
5572
5894
|
/**
|
|
5573
5895
|
* <p>The list of container instances.</p>
|
|
@@ -5578,9 +5900,15 @@ export interface DescribeContainerInstancesResponse {
|
|
|
5578
5900
|
*/
|
|
5579
5901
|
failures?: Failure[];
|
|
5580
5902
|
}
|
|
5903
|
+
/**
|
|
5904
|
+
* @public
|
|
5905
|
+
*/
|
|
5581
5906
|
export declare enum ServiceField {
|
|
5582
5907
|
TAGS = "TAGS"
|
|
5583
5908
|
}
|
|
5909
|
+
/**
|
|
5910
|
+
* @public
|
|
5911
|
+
*/
|
|
5584
5912
|
export interface DescribeServicesRequest {
|
|
5585
5913
|
/**
|
|
5586
5914
|
* <p>The short name or full Amazon Resource Name (ARN)the cluster that hosts the service to describe.
|
|
@@ -5600,6 +5928,9 @@ export interface DescribeServicesRequest {
|
|
|
5600
5928
|
*/
|
|
5601
5929
|
include?: (ServiceField | string)[];
|
|
5602
5930
|
}
|
|
5931
|
+
/**
|
|
5932
|
+
* @public
|
|
5933
|
+
*/
|
|
5603
5934
|
export interface DescribeServicesResponse {
|
|
5604
5935
|
/**
|
|
5605
5936
|
* <p>The list of services described.</p>
|
|
@@ -5610,9 +5941,15 @@ export interface DescribeServicesResponse {
|
|
|
5610
5941
|
*/
|
|
5611
5942
|
failures?: Failure[];
|
|
5612
5943
|
}
|
|
5944
|
+
/**
|
|
5945
|
+
* @public
|
|
5946
|
+
*/
|
|
5613
5947
|
export declare enum TaskDefinitionField {
|
|
5614
5948
|
TAGS = "TAGS"
|
|
5615
5949
|
}
|
|
5950
|
+
/**
|
|
5951
|
+
* @public
|
|
5952
|
+
*/
|
|
5616
5953
|
export interface DescribeTaskDefinitionRequest {
|
|
5617
5954
|
/**
|
|
5618
5955
|
* <p>The <code>family</code> for the latest <code>ACTIVE</code> revision,
|
|
@@ -5628,6 +5965,9 @@ export interface DescribeTaskDefinitionRequest {
|
|
|
5628
5965
|
*/
|
|
5629
5966
|
include?: (TaskDefinitionField | string)[];
|
|
5630
5967
|
}
|
|
5968
|
+
/**
|
|
5969
|
+
* @public
|
|
5970
|
+
*/
|
|
5631
5971
|
export interface DescribeTaskDefinitionResponse {
|
|
5632
5972
|
/**
|
|
5633
5973
|
* <p>The full task definition description.</p>
|
|
@@ -5670,9 +6010,15 @@ export interface DescribeTaskDefinitionResponse {
|
|
|
5670
6010
|
*/
|
|
5671
6011
|
tags?: Tag[];
|
|
5672
6012
|
}
|
|
6013
|
+
/**
|
|
6014
|
+
* @public
|
|
6015
|
+
*/
|
|
5673
6016
|
export declare enum TaskField {
|
|
5674
6017
|
TAGS = "TAGS"
|
|
5675
6018
|
}
|
|
6019
|
+
/**
|
|
6020
|
+
* @public
|
|
6021
|
+
*/
|
|
5676
6022
|
export interface DescribeTasksRequest {
|
|
5677
6023
|
/**
|
|
5678
6024
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task or tasks to
|
|
@@ -5691,19 +6037,29 @@ export interface DescribeTasksRequest {
|
|
|
5691
6037
|
*/
|
|
5692
6038
|
include?: (TaskField | string)[];
|
|
5693
6039
|
}
|
|
6040
|
+
/**
|
|
6041
|
+
* @public
|
|
6042
|
+
*/
|
|
5694
6043
|
export declare enum Connectivity {
|
|
5695
6044
|
CONNECTED = "CONNECTED",
|
|
5696
6045
|
DISCONNECTED = "DISCONNECTED"
|
|
5697
6046
|
}
|
|
6047
|
+
/**
|
|
6048
|
+
* @public
|
|
6049
|
+
*/
|
|
5698
6050
|
export declare enum HealthStatus {
|
|
5699
6051
|
HEALTHY = "HEALTHY",
|
|
5700
6052
|
UNHEALTHY = "UNHEALTHY",
|
|
5701
6053
|
UNKNOWN = "UNKNOWN"
|
|
5702
6054
|
}
|
|
6055
|
+
/**
|
|
6056
|
+
* @public
|
|
6057
|
+
*/
|
|
5703
6058
|
export declare enum ManagedAgentName {
|
|
5704
6059
|
ExecuteCommandAgent = "ExecuteCommandAgent"
|
|
5705
6060
|
}
|
|
5706
6061
|
/**
|
|
6062
|
+
* @public
|
|
5707
6063
|
* <p>Details about the managed agent status for the container.</p>
|
|
5708
6064
|
*/
|
|
5709
6065
|
export interface ManagedAgent {
|
|
@@ -5726,6 +6082,7 @@ export interface ManagedAgent {
|
|
|
5726
6082
|
lastStatus?: string;
|
|
5727
6083
|
}
|
|
5728
6084
|
/**
|
|
6085
|
+
* @public
|
|
5729
6086
|
* <p>Details on the network bindings between a container and its host container instance.
|
|
5730
6087
|
* After a task reaches the <code>RUNNING</code> status, manual and automatic host and
|
|
5731
6088
|
* container port assignments are visible in the <code>networkBindings</code> section of
|
|
@@ -5817,6 +6174,7 @@ export interface NetworkBinding {
|
|
|
5817
6174
|
hostPortRange?: string;
|
|
5818
6175
|
}
|
|
5819
6176
|
/**
|
|
6177
|
+
* @public
|
|
5820
6178
|
* <p>An object representing the elastic network interface for tasks that use the
|
|
5821
6179
|
* <code>awsvpc</code> network mode.</p>
|
|
5822
6180
|
*/
|
|
@@ -5835,6 +6193,7 @@ export interface NetworkInterface {
|
|
|
5835
6193
|
ipv6Address?: string;
|
|
5836
6194
|
}
|
|
5837
6195
|
/**
|
|
6196
|
+
* @public
|
|
5838
6197
|
* <p>A Docker container that's part of a task.</p>
|
|
5839
6198
|
*/
|
|
5840
6199
|
export interface Container {
|
|
@@ -5917,9 +6276,10 @@ export interface Container {
|
|
|
5917
6276
|
gpuIds?: string[];
|
|
5918
6277
|
}
|
|
5919
6278
|
/**
|
|
6279
|
+
* @public
|
|
5920
6280
|
* <p>The overrides that are sent to a container. An empty container override can be passed
|
|
5921
|
-
* in. An example of an empty container override is <code
|
|
5922
|
-
* }</code>. If a non-empty container override is specified, the <code>name</code>
|
|
6281
|
+
* in. An example of an empty container override is <code>\{"containerOverrides": [ ]
|
|
6282
|
+
* \}</code>. If a non-empty container override is specified, the <code>name</code>
|
|
5923
6283
|
* parameter must be included.</p>
|
|
5924
6284
|
*/
|
|
5925
6285
|
export interface ContainerOverride {
|
|
@@ -5968,6 +6328,7 @@ export interface ContainerOverride {
|
|
|
5968
6328
|
resourceRequirements?: ResourceRequirement[];
|
|
5969
6329
|
}
|
|
5970
6330
|
/**
|
|
6331
|
+
* @public
|
|
5971
6332
|
* <p>Details on an Elastic Inference accelerator task override. This parameter is used to
|
|
5972
6333
|
* override the Elastic Inference accelerator specified in the task definition. For more
|
|
5973
6334
|
* information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-inference.html">Working with Amazon
|
|
@@ -5985,6 +6346,7 @@ export interface InferenceAcceleratorOverride {
|
|
|
5985
6346
|
deviceType?: string;
|
|
5986
6347
|
}
|
|
5987
6348
|
/**
|
|
6349
|
+
* @public
|
|
5988
6350
|
* <p>The overrides that are associated with a task.</p>
|
|
5989
6351
|
*/
|
|
5990
6352
|
export interface TaskOverride {
|
|
@@ -6034,6 +6396,9 @@ export interface TaskOverride {
|
|
|
6034
6396
|
*/
|
|
6035
6397
|
ephemeralStorage?: EphemeralStorage;
|
|
6036
6398
|
}
|
|
6399
|
+
/**
|
|
6400
|
+
* @public
|
|
6401
|
+
*/
|
|
6037
6402
|
export declare enum TaskStopCode {
|
|
6038
6403
|
ESSENTIAL_CONTAINER_EXITED = "EssentialContainerExited",
|
|
6039
6404
|
SERVICE_SCHEDULER_INITIATED = "ServiceSchedulerInitiated",
|
|
@@ -6043,6 +6408,7 @@ export declare enum TaskStopCode {
|
|
|
6043
6408
|
USER_INITIATED = "UserInitiated"
|
|
6044
6409
|
}
|
|
6045
6410
|
/**
|
|
6411
|
+
* @public
|
|
6046
6412
|
* <p>Details on a task in a cluster.</p>
|
|
6047
6413
|
*/
|
|
6048
6414
|
export interface Task {
|
|
@@ -6370,6 +6736,9 @@ export interface Task {
|
|
|
6370
6736
|
*/
|
|
6371
6737
|
ephemeralStorage?: EphemeralStorage;
|
|
6372
6738
|
}
|
|
6739
|
+
/**
|
|
6740
|
+
* @public
|
|
6741
|
+
*/
|
|
6373
6742
|
export interface DescribeTasksResponse {
|
|
6374
6743
|
/**
|
|
6375
6744
|
* <p>The list of tasks.</p>
|
|
@@ -6380,9 +6749,15 @@ export interface DescribeTasksResponse {
|
|
|
6380
6749
|
*/
|
|
6381
6750
|
failures?: Failure[];
|
|
6382
6751
|
}
|
|
6752
|
+
/**
|
|
6753
|
+
* @public
|
|
6754
|
+
*/
|
|
6383
6755
|
export declare enum TaskSetField {
|
|
6384
6756
|
TAGS = "TAGS"
|
|
6385
6757
|
}
|
|
6758
|
+
/**
|
|
6759
|
+
* @public
|
|
6760
|
+
*/
|
|
6386
6761
|
export interface DescribeTaskSetsRequest {
|
|
6387
6762
|
/**
|
|
6388
6763
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task
|
|
@@ -6405,6 +6780,9 @@ export interface DescribeTaskSetsRequest {
|
|
|
6405
6780
|
*/
|
|
6406
6781
|
include?: (TaskSetField | string)[];
|
|
6407
6782
|
}
|
|
6783
|
+
/**
|
|
6784
|
+
* @public
|
|
6785
|
+
*/
|
|
6408
6786
|
export interface DescribeTaskSetsResponse {
|
|
6409
6787
|
/**
|
|
6410
6788
|
* <p>The list of task sets described.</p>
|
|
@@ -6415,6 +6793,9 @@ export interface DescribeTaskSetsResponse {
|
|
|
6415
6793
|
*/
|
|
6416
6794
|
failures?: Failure[];
|
|
6417
6795
|
}
|
|
6796
|
+
/**
|
|
6797
|
+
* @public
|
|
6798
|
+
*/
|
|
6418
6799
|
export interface DiscoverPollEndpointRequest {
|
|
6419
6800
|
/**
|
|
6420
6801
|
* <p>The container instance ID or full ARN of the container instance. For more
|
|
@@ -6427,6 +6808,9 @@ export interface DiscoverPollEndpointRequest {
|
|
|
6427
6808
|
*/
|
|
6428
6809
|
cluster?: string;
|
|
6429
6810
|
}
|
|
6811
|
+
/**
|
|
6812
|
+
* @public
|
|
6813
|
+
*/
|
|
6430
6814
|
export interface DiscoverPollEndpointResponse {
|
|
6431
6815
|
/**
|
|
6432
6816
|
* <p>The endpoint for the Amazon ECS agent to poll.</p>
|
|
@@ -6442,6 +6826,9 @@ export interface DiscoverPollEndpointResponse {
|
|
|
6442
6826
|
*/
|
|
6443
6827
|
serviceConnectEndpoint?: string;
|
|
6444
6828
|
}
|
|
6829
|
+
/**
|
|
6830
|
+
* @public
|
|
6831
|
+
*/
|
|
6445
6832
|
export interface ExecuteCommandRequest {
|
|
6446
6833
|
/**
|
|
6447
6834
|
* <p>The Amazon Resource Name (ARN) or short name of the cluster the task is running in.
|
|
@@ -6467,6 +6854,7 @@ export interface ExecuteCommandRequest {
|
|
|
6467
6854
|
task: string | undefined;
|
|
6468
6855
|
}
|
|
6469
6856
|
/**
|
|
6857
|
+
* @public
|
|
6470
6858
|
* <p>The details for the execute command session.</p>
|
|
6471
6859
|
*/
|
|
6472
6860
|
export interface Session {
|
|
@@ -6485,6 +6873,9 @@ export interface Session {
|
|
|
6485
6873
|
*/
|
|
6486
6874
|
tokenValue?: string;
|
|
6487
6875
|
}
|
|
6876
|
+
/**
|
|
6877
|
+
* @public
|
|
6878
|
+
*/
|
|
6488
6879
|
export interface ExecuteCommandResponse {
|
|
6489
6880
|
/**
|
|
6490
6881
|
* <p>The Amazon Resource Name (ARN) of the cluster.</p>
|
|
@@ -6515,6 +6906,7 @@ export interface ExecuteCommandResponse {
|
|
|
6515
6906
|
taskArn?: string;
|
|
6516
6907
|
}
|
|
6517
6908
|
/**
|
|
6909
|
+
* @public
|
|
6518
6910
|
* <p>The execute command cannot run. This error can be caused by any of the following
|
|
6519
6911
|
* configuration issues:</p>
|
|
6520
6912
|
* <ul>
|
|
@@ -6540,6 +6932,9 @@ export declare class TargetNotConnectedException extends __BaseException {
|
|
|
6540
6932
|
*/
|
|
6541
6933
|
constructor(opts: __ExceptionOptionType<TargetNotConnectedException, __BaseException>);
|
|
6542
6934
|
}
|
|
6935
|
+
/**
|
|
6936
|
+
* @public
|
|
6937
|
+
*/
|
|
6543
6938
|
export interface GetTaskProtectionRequest {
|
|
6544
6939
|
/**
|
|
6545
6940
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task
|
|
@@ -6552,6 +6947,7 @@ export interface GetTaskProtectionRequest {
|
|
|
6552
6947
|
tasks?: string[];
|
|
6553
6948
|
}
|
|
6554
6949
|
/**
|
|
6950
|
+
* @public
|
|
6555
6951
|
* <p>An object representing the protection status details for a task. You can set the
|
|
6556
6952
|
* protection status with the <a>UpdateTaskProtection</a> API and get the status
|
|
6557
6953
|
* of tasks with the <a>GetTaskProtection</a> API.</p>
|
|
@@ -6571,6 +6967,9 @@ export interface ProtectedTask {
|
|
|
6571
6967
|
*/
|
|
6572
6968
|
expirationDate?: Date;
|
|
6573
6969
|
}
|
|
6970
|
+
/**
|
|
6971
|
+
* @public
|
|
6972
|
+
*/
|
|
6574
6973
|
export interface GetTaskProtectionResponse {
|
|
6575
6974
|
/**
|
|
6576
6975
|
* <p>A list of tasks with the following information.</p>
|
|
@@ -6599,6 +6998,7 @@ export interface GetTaskProtectionResponse {
|
|
|
6599
6998
|
failures?: Failure[];
|
|
6600
6999
|
}
|
|
6601
7000
|
/**
|
|
7001
|
+
* @public
|
|
6602
7002
|
* <p>The specified resource wasn't found.</p>
|
|
6603
7003
|
*/
|
|
6604
7004
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -6609,6 +7009,9 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
6609
7009
|
*/
|
|
6610
7010
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
6611
7011
|
}
|
|
7012
|
+
/**
|
|
7013
|
+
* @public
|
|
7014
|
+
*/
|
|
6612
7015
|
export interface ListAccountSettingsRequest {
|
|
6613
7016
|
/**
|
|
6614
7017
|
* <p>The name of the account setting you want to list the settings for.</p>
|
|
@@ -6661,6 +7064,9 @@ export interface ListAccountSettingsRequest {
|
|
|
6661
7064
|
*/
|
|
6662
7065
|
maxResults?: number;
|
|
6663
7066
|
}
|
|
7067
|
+
/**
|
|
7068
|
+
* @public
|
|
7069
|
+
*/
|
|
6664
7070
|
export interface ListAccountSettingsResponse {
|
|
6665
7071
|
/**
|
|
6666
7072
|
* <p>The account settings for the resource.</p>
|
|
@@ -6675,6 +7081,9 @@ export interface ListAccountSettingsResponse {
|
|
|
6675
7081
|
*/
|
|
6676
7082
|
nextToken?: string;
|
|
6677
7083
|
}
|
|
7084
|
+
/**
|
|
7085
|
+
* @public
|
|
7086
|
+
*/
|
|
6678
7087
|
export interface ListAttributesRequest {
|
|
6679
7088
|
/**
|
|
6680
7089
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to list attributes.
|
|
@@ -6717,6 +7126,9 @@ export interface ListAttributesRequest {
|
|
|
6717
7126
|
*/
|
|
6718
7127
|
maxResults?: number;
|
|
6719
7128
|
}
|
|
7129
|
+
/**
|
|
7130
|
+
* @public
|
|
7131
|
+
*/
|
|
6720
7132
|
export interface ListAttributesResponse {
|
|
6721
7133
|
/**
|
|
6722
7134
|
* <p>A list of attribute objects that meet the criteria of the request.</p>
|
|
@@ -6731,6 +7143,9 @@ export interface ListAttributesResponse {
|
|
|
6731
7143
|
*/
|
|
6732
7144
|
nextToken?: string;
|
|
6733
7145
|
}
|
|
7146
|
+
/**
|
|
7147
|
+
* @public
|
|
7148
|
+
*/
|
|
6734
7149
|
export interface ListClustersRequest {
|
|
6735
7150
|
/**
|
|
6736
7151
|
* <p>The <code>nextToken</code> value returned from a <code>ListClusters</code> request
|
|
@@ -6755,6 +7170,9 @@ export interface ListClustersRequest {
|
|
|
6755
7170
|
*/
|
|
6756
7171
|
maxResults?: number;
|
|
6757
7172
|
}
|
|
7173
|
+
/**
|
|
7174
|
+
* @public
|
|
7175
|
+
*/
|
|
6758
7176
|
export interface ListClustersResponse {
|
|
6759
7177
|
/**
|
|
6760
7178
|
* <p>The list of full Amazon Resource Name (ARN) entries for each cluster that's associated with your
|
|
@@ -6770,6 +7188,9 @@ export interface ListClustersResponse {
|
|
|
6770
7188
|
*/
|
|
6771
7189
|
nextToken?: string;
|
|
6772
7190
|
}
|
|
7191
|
+
/**
|
|
7192
|
+
* @public
|
|
7193
|
+
*/
|
|
6773
7194
|
export declare enum ContainerInstanceStatus {
|
|
6774
7195
|
ACTIVE = "ACTIVE",
|
|
6775
7196
|
DEREGISTERING = "DEREGISTERING",
|
|
@@ -6777,6 +7198,9 @@ export declare enum ContainerInstanceStatus {
|
|
|
6777
7198
|
REGISTERING = "REGISTERING",
|
|
6778
7199
|
REGISTRATION_FAILED = "REGISTRATION_FAILED"
|
|
6779
7200
|
}
|
|
7201
|
+
/**
|
|
7202
|
+
* @public
|
|
7203
|
+
*/
|
|
6780
7204
|
export interface ListContainerInstancesRequest {
|
|
6781
7205
|
/**
|
|
6782
7206
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instances to
|
|
@@ -6821,6 +7245,9 @@ export interface ListContainerInstancesRequest {
|
|
|
6821
7245
|
*/
|
|
6822
7246
|
status?: ContainerInstanceStatus | string;
|
|
6823
7247
|
}
|
|
7248
|
+
/**
|
|
7249
|
+
* @public
|
|
7250
|
+
*/
|
|
6824
7251
|
export interface ListContainerInstancesResponse {
|
|
6825
7252
|
/**
|
|
6826
7253
|
* <p>The list of container instances with full ARN entries for each container instance
|
|
@@ -6836,6 +7263,9 @@ export interface ListContainerInstancesResponse {
|
|
|
6836
7263
|
*/
|
|
6837
7264
|
nextToken?: string;
|
|
6838
7265
|
}
|
|
7266
|
+
/**
|
|
7267
|
+
* @public
|
|
7268
|
+
*/
|
|
6839
7269
|
export interface ListServicesRequest {
|
|
6840
7270
|
/**
|
|
6841
7271
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to use when filtering the
|
|
@@ -6875,6 +7305,9 @@ export interface ListServicesRequest {
|
|
|
6875
7305
|
*/
|
|
6876
7306
|
schedulingStrategy?: SchedulingStrategy | string;
|
|
6877
7307
|
}
|
|
7308
|
+
/**
|
|
7309
|
+
* @public
|
|
7310
|
+
*/
|
|
6878
7311
|
export interface ListServicesResponse {
|
|
6879
7312
|
/**
|
|
6880
7313
|
* <p>The list of full ARN entries for each service that's associated with the specified
|
|
@@ -6890,6 +7323,9 @@ export interface ListServicesResponse {
|
|
|
6890
7323
|
*/
|
|
6891
7324
|
nextToken?: string;
|
|
6892
7325
|
}
|
|
7326
|
+
/**
|
|
7327
|
+
* @public
|
|
7328
|
+
*/
|
|
6893
7329
|
export interface ListServicesByNamespaceRequest {
|
|
6894
7330
|
/**
|
|
6895
7331
|
* <p>The namespace name or full Amazon Resource Name (ARN) of the Cloud Map namespace to list the services in.</p>
|
|
@@ -6924,6 +7360,9 @@ export interface ListServicesByNamespaceRequest {
|
|
|
6924
7360
|
*/
|
|
6925
7361
|
maxResults?: number;
|
|
6926
7362
|
}
|
|
7363
|
+
/**
|
|
7364
|
+
* @public
|
|
7365
|
+
*/
|
|
6927
7366
|
export interface ListServicesByNamespaceResponse {
|
|
6928
7367
|
/**
|
|
6929
7368
|
* <p>The list of full ARN entries for each service that's associated with the specified
|
|
@@ -6939,6 +7378,9 @@ export interface ListServicesByNamespaceResponse {
|
|
|
6939
7378
|
*/
|
|
6940
7379
|
nextToken?: string;
|
|
6941
7380
|
}
|
|
7381
|
+
/**
|
|
7382
|
+
* @public
|
|
7383
|
+
*/
|
|
6942
7384
|
export interface ListTagsForResourceRequest {
|
|
6943
7385
|
/**
|
|
6944
7386
|
* <p>The Amazon Resource Name (ARN) that identifies the resource to list the tags for. Currently, the
|
|
@@ -6947,17 +7389,26 @@ export interface ListTagsForResourceRequest {
|
|
|
6947
7389
|
*/
|
|
6948
7390
|
resourceArn: string | undefined;
|
|
6949
7391
|
}
|
|
7392
|
+
/**
|
|
7393
|
+
* @public
|
|
7394
|
+
*/
|
|
6950
7395
|
export interface ListTagsForResourceResponse {
|
|
6951
7396
|
/**
|
|
6952
7397
|
* <p>The tags for the resource.</p>
|
|
6953
7398
|
*/
|
|
6954
7399
|
tags?: Tag[];
|
|
6955
7400
|
}
|
|
7401
|
+
/**
|
|
7402
|
+
* @public
|
|
7403
|
+
*/
|
|
6956
7404
|
export declare enum TaskDefinitionFamilyStatus {
|
|
6957
7405
|
ACTIVE = "ACTIVE",
|
|
6958
7406
|
ALL = "ALL",
|
|
6959
7407
|
INACTIVE = "INACTIVE"
|
|
6960
7408
|
}
|
|
7409
|
+
/**
|
|
7410
|
+
* @public
|
|
7411
|
+
*/
|
|
6961
7412
|
export interface ListTaskDefinitionFamiliesRequest {
|
|
6962
7413
|
/**
|
|
6963
7414
|
* <p>The <code>familyPrefix</code> is a string that's used to filter the results of
|
|
@@ -7004,6 +7455,9 @@ export interface ListTaskDefinitionFamiliesRequest {
|
|
|
7004
7455
|
*/
|
|
7005
7456
|
maxResults?: number;
|
|
7006
7457
|
}
|
|
7458
|
+
/**
|
|
7459
|
+
* @public
|
|
7460
|
+
*/
|
|
7007
7461
|
export interface ListTaskDefinitionFamiliesResponse {
|
|
7008
7462
|
/**
|
|
7009
7463
|
* <p>The list of task definition family names that match the
|
|
@@ -7019,10 +7473,16 @@ export interface ListTaskDefinitionFamiliesResponse {
|
|
|
7019
7473
|
*/
|
|
7020
7474
|
nextToken?: string;
|
|
7021
7475
|
}
|
|
7476
|
+
/**
|
|
7477
|
+
* @public
|
|
7478
|
+
*/
|
|
7022
7479
|
export declare enum SortOrder {
|
|
7023
7480
|
ASC = "ASC",
|
|
7024
7481
|
DESC = "DESC"
|
|
7025
7482
|
}
|
|
7483
|
+
/**
|
|
7484
|
+
* @public
|
|
7485
|
+
*/
|
|
7026
7486
|
export interface ListTaskDefinitionsRequest {
|
|
7027
7487
|
/**
|
|
7028
7488
|
* <p>The full family name to filter the <code>ListTaskDefinitions</code> results with.
|
|
@@ -7072,6 +7532,9 @@ export interface ListTaskDefinitionsRequest {
|
|
|
7072
7532
|
*/
|
|
7073
7533
|
maxResults?: number;
|
|
7074
7534
|
}
|
|
7535
|
+
/**
|
|
7536
|
+
* @public
|
|
7537
|
+
*/
|
|
7075
7538
|
export interface ListTaskDefinitionsResponse {
|
|
7076
7539
|
/**
|
|
7077
7540
|
* <p>The list of task definition Amazon Resource Name (ARN) entries for the <code>ListTaskDefinitions</code>
|
|
@@ -7087,11 +7550,17 @@ export interface ListTaskDefinitionsResponse {
|
|
|
7087
7550
|
*/
|
|
7088
7551
|
nextToken?: string;
|
|
7089
7552
|
}
|
|
7553
|
+
/**
|
|
7554
|
+
* @public
|
|
7555
|
+
*/
|
|
7090
7556
|
export declare enum DesiredStatus {
|
|
7091
7557
|
PENDING = "PENDING",
|
|
7092
7558
|
RUNNING = "RUNNING",
|
|
7093
7559
|
STOPPED = "STOPPED"
|
|
7094
7560
|
}
|
|
7561
|
+
/**
|
|
7562
|
+
* @public
|
|
7563
|
+
*/
|
|
7095
7564
|
export interface ListTasksRequest {
|
|
7096
7565
|
/**
|
|
7097
7566
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to use when filtering the
|
|
@@ -7167,6 +7636,9 @@ export interface ListTasksRequest {
|
|
|
7167
7636
|
*/
|
|
7168
7637
|
launchType?: LaunchType | string;
|
|
7169
7638
|
}
|
|
7639
|
+
/**
|
|
7640
|
+
* @public
|
|
7641
|
+
*/
|
|
7170
7642
|
export interface ListTasksResponse {
|
|
7171
7643
|
/**
|
|
7172
7644
|
* <p>The list of task ARN entries for the <code>ListTasks</code> request.</p>
|
|
@@ -7181,6 +7653,9 @@ export interface ListTasksResponse {
|
|
|
7181
7653
|
*/
|
|
7182
7654
|
nextToken?: string;
|
|
7183
7655
|
}
|
|
7656
|
+
/**
|
|
7657
|
+
* @public
|
|
7658
|
+
*/
|
|
7184
7659
|
export interface PutAccountSettingRequest {
|
|
7185
7660
|
/**
|
|
7186
7661
|
* <p>The Amazon ECS resource name for which to modify the account setting. If
|
|
@@ -7212,12 +7687,18 @@ export interface PutAccountSettingRequest {
|
|
|
7212
7687
|
*/
|
|
7213
7688
|
principalArn?: string;
|
|
7214
7689
|
}
|
|
7690
|
+
/**
|
|
7691
|
+
* @public
|
|
7692
|
+
*/
|
|
7215
7693
|
export interface PutAccountSettingResponse {
|
|
7216
7694
|
/**
|
|
7217
7695
|
* <p>The current account setting for a resource.</p>
|
|
7218
7696
|
*/
|
|
7219
7697
|
setting?: Setting;
|
|
7220
7698
|
}
|
|
7699
|
+
/**
|
|
7700
|
+
* @public
|
|
7701
|
+
*/
|
|
7221
7702
|
export interface PutAccountSettingDefaultRequest {
|
|
7222
7703
|
/**
|
|
7223
7704
|
* <p>The resource name for which to modify the account setting. If
|
|
@@ -7240,6 +7721,9 @@ export interface PutAccountSettingDefaultRequest {
|
|
|
7240
7721
|
*/
|
|
7241
7722
|
value: string | undefined;
|
|
7242
7723
|
}
|
|
7724
|
+
/**
|
|
7725
|
+
* @public
|
|
7726
|
+
*/
|
|
7243
7727
|
export interface PutAccountSettingDefaultResponse {
|
|
7244
7728
|
/**
|
|
7245
7729
|
* <p>The current setting for a resource.</p>
|
|
@@ -7247,6 +7731,7 @@ export interface PutAccountSettingDefaultResponse {
|
|
|
7247
7731
|
setting?: Setting;
|
|
7248
7732
|
}
|
|
7249
7733
|
/**
|
|
7734
|
+
* @public
|
|
7250
7735
|
* <p>You can apply up to 10 custom attributes for each resource. You can view the
|
|
7251
7736
|
* attributes of a resource with <a>ListAttributes</a>. You can remove existing
|
|
7252
7737
|
* attributes on a resource with <a>DeleteAttributes</a>.</p>
|
|
@@ -7259,6 +7744,9 @@ export declare class AttributeLimitExceededException extends __BaseException {
|
|
|
7259
7744
|
*/
|
|
7260
7745
|
constructor(opts: __ExceptionOptionType<AttributeLimitExceededException, __BaseException>);
|
|
7261
7746
|
}
|
|
7747
|
+
/**
|
|
7748
|
+
* @public
|
|
7749
|
+
*/
|
|
7262
7750
|
export interface PutAttributesRequest {
|
|
7263
7751
|
/**
|
|
7264
7752
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that contains the resource to apply
|
|
@@ -7271,12 +7759,18 @@ export interface PutAttributesRequest {
|
|
|
7271
7759
|
*/
|
|
7272
7760
|
attributes: Attribute[] | undefined;
|
|
7273
7761
|
}
|
|
7762
|
+
/**
|
|
7763
|
+
* @public
|
|
7764
|
+
*/
|
|
7274
7765
|
export interface PutAttributesResponse {
|
|
7275
7766
|
/**
|
|
7276
7767
|
* <p>The attributes applied to your resource.</p>
|
|
7277
7768
|
*/
|
|
7278
7769
|
attributes?: Attribute[];
|
|
7279
7770
|
}
|
|
7771
|
+
/**
|
|
7772
|
+
* @public
|
|
7773
|
+
*/
|
|
7280
7774
|
export interface PutClusterCapacityProvidersRequest {
|
|
7281
7775
|
/**
|
|
7282
7776
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to modify the capacity provider
|
|
@@ -7313,6 +7807,9 @@ export interface PutClusterCapacityProvidersRequest {
|
|
|
7313
7807
|
*/
|
|
7314
7808
|
defaultCapacityProviderStrategy: CapacityProviderStrategyItem[] | undefined;
|
|
7315
7809
|
}
|
|
7810
|
+
/**
|
|
7811
|
+
* @public
|
|
7812
|
+
*/
|
|
7316
7813
|
export interface PutClusterCapacityProvidersResponse {
|
|
7317
7814
|
/**
|
|
7318
7815
|
* <p>Details about the cluster.</p>
|
|
@@ -7320,6 +7817,7 @@ export interface PutClusterCapacityProvidersResponse {
|
|
|
7320
7817
|
cluster?: Cluster;
|
|
7321
7818
|
}
|
|
7322
7819
|
/**
|
|
7820
|
+
* @public
|
|
7323
7821
|
* <p>The specified resource is in-use and can't be removed.</p>
|
|
7324
7822
|
*/
|
|
7325
7823
|
export declare class ResourceInUseException extends __BaseException {
|
|
@@ -7330,10 +7828,14 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
7330
7828
|
*/
|
|
7331
7829
|
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
7332
7830
|
}
|
|
7831
|
+
/**
|
|
7832
|
+
* @public
|
|
7833
|
+
*/
|
|
7333
7834
|
export declare enum PlatformDeviceType {
|
|
7334
7835
|
GPU = "GPU"
|
|
7335
7836
|
}
|
|
7336
7837
|
/**
|
|
7838
|
+
* @public
|
|
7337
7839
|
* <p>The devices that are available on the container instance. The only supported device
|
|
7338
7840
|
* type is a GPU.</p>
|
|
7339
7841
|
*/
|
|
@@ -7350,6 +7852,9 @@ export interface PlatformDevice {
|
|
|
7350
7852
|
*/
|
|
7351
7853
|
type: PlatformDeviceType | string | undefined;
|
|
7352
7854
|
}
|
|
7855
|
+
/**
|
|
7856
|
+
* @public
|
|
7857
|
+
*/
|
|
7353
7858
|
export interface RegisterContainerInstanceRequest {
|
|
7354
7859
|
/**
|
|
7355
7860
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to register your container instance
|
|
@@ -7429,12 +7934,18 @@ export interface RegisterContainerInstanceRequest {
|
|
|
7429
7934
|
*/
|
|
7430
7935
|
tags?: Tag[];
|
|
7431
7936
|
}
|
|
7937
|
+
/**
|
|
7938
|
+
* @public
|
|
7939
|
+
*/
|
|
7432
7940
|
export interface RegisterContainerInstanceResponse {
|
|
7433
7941
|
/**
|
|
7434
7942
|
* <p>The container instance that was registered.</p>
|
|
7435
7943
|
*/
|
|
7436
7944
|
containerInstance?: ContainerInstance;
|
|
7437
7945
|
}
|
|
7946
|
+
/**
|
|
7947
|
+
* @public
|
|
7948
|
+
*/
|
|
7438
7949
|
export interface RegisterTaskDefinitionRequest {
|
|
7439
7950
|
/**
|
|
7440
7951
|
* <p>You must specify a <code>family</code> for a task definition. You can use it track
|
|
@@ -7731,6 +8242,9 @@ export interface RegisterTaskDefinitionRequest {
|
|
|
7731
8242
|
*/
|
|
7732
8243
|
runtimePlatform?: RuntimePlatform;
|
|
7733
8244
|
}
|
|
8245
|
+
/**
|
|
8246
|
+
* @public
|
|
8247
|
+
*/
|
|
7734
8248
|
export interface RegisterTaskDefinitionResponse {
|
|
7735
8249
|
/**
|
|
7736
8250
|
* <p>The full description of the registered task definition.</p>
|
|
@@ -7742,6 +8256,7 @@ export interface RegisterTaskDefinitionResponse {
|
|
|
7742
8256
|
tags?: Tag[];
|
|
7743
8257
|
}
|
|
7744
8258
|
/**
|
|
8259
|
+
* @public
|
|
7745
8260
|
* <p>Your Amazon Web Services account was blocked. For more information, contact <a href="http://aws.amazon.com/contact-us/">
|
|
7746
8261
|
* Amazon Web Services Support</a>.</p>
|
|
7747
8262
|
*/
|
|
@@ -7753,6 +8268,9 @@ export declare class BlockedException extends __BaseException {
|
|
|
7753
8268
|
*/
|
|
7754
8269
|
constructor(opts: __ExceptionOptionType<BlockedException, __BaseException>);
|
|
7755
8270
|
}
|
|
8271
|
+
/**
|
|
8272
|
+
* @public
|
|
8273
|
+
*/
|
|
7756
8274
|
export interface RunTaskRequest {
|
|
7757
8275
|
/**
|
|
7758
8276
|
* <p>The capacity provider strategy to use for the task.</p>
|
|
@@ -7937,6 +8455,9 @@ export interface RunTaskRequest {
|
|
|
7937
8455
|
*/
|
|
7938
8456
|
taskDefinition: string | undefined;
|
|
7939
8457
|
}
|
|
8458
|
+
/**
|
|
8459
|
+
* @public
|
|
8460
|
+
*/
|
|
7940
8461
|
export interface RunTaskResponse {
|
|
7941
8462
|
/**
|
|
7942
8463
|
* <p>A full description of the tasks that were run. The tasks that were successfully placed
|
|
@@ -7948,6 +8469,9 @@ export interface RunTaskResponse {
|
|
|
7948
8469
|
*/
|
|
7949
8470
|
failures?: Failure[];
|
|
7950
8471
|
}
|
|
8472
|
+
/**
|
|
8473
|
+
* @public
|
|
8474
|
+
*/
|
|
7951
8475
|
export interface StartTaskRequest {
|
|
7952
8476
|
/**
|
|
7953
8477
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster where to start your task.
|
|
@@ -8057,6 +8581,9 @@ export interface StartTaskRequest {
|
|
|
8057
8581
|
*/
|
|
8058
8582
|
taskDefinition: string | undefined;
|
|
8059
8583
|
}
|
|
8584
|
+
/**
|
|
8585
|
+
* @public
|
|
8586
|
+
*/
|
|
8060
8587
|
export interface StartTaskResponse {
|
|
8061
8588
|
/**
|
|
8062
8589
|
* <p>A full description of the tasks that were started. Each task that was successfully
|
|
@@ -8068,6 +8595,9 @@ export interface StartTaskResponse {
|
|
|
8068
8595
|
*/
|
|
8069
8596
|
failures?: Failure[];
|
|
8070
8597
|
}
|
|
8598
|
+
/**
|
|
8599
|
+
* @public
|
|
8600
|
+
*/
|
|
8071
8601
|
export interface StopTaskRequest {
|
|
8072
8602
|
/**
|
|
8073
8603
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task to stop.
|
|
@@ -8086,6 +8616,9 @@ export interface StopTaskRequest {
|
|
|
8086
8616
|
*/
|
|
8087
8617
|
reason?: string;
|
|
8088
8618
|
}
|
|
8619
|
+
/**
|
|
8620
|
+
* @public
|
|
8621
|
+
*/
|
|
8089
8622
|
export interface StopTaskResponse {
|
|
8090
8623
|
/**
|
|
8091
8624
|
* <p>The task that was stopped.</p>
|
|
@@ -8093,6 +8626,7 @@ export interface StopTaskResponse {
|
|
|
8093
8626
|
task?: Task;
|
|
8094
8627
|
}
|
|
8095
8628
|
/**
|
|
8629
|
+
* @public
|
|
8096
8630
|
* <p>An object representing a change in state for a task attachment.</p>
|
|
8097
8631
|
*/
|
|
8098
8632
|
export interface AttachmentStateChange {
|
|
@@ -8105,6 +8639,9 @@ export interface AttachmentStateChange {
|
|
|
8105
8639
|
*/
|
|
8106
8640
|
status: string | undefined;
|
|
8107
8641
|
}
|
|
8642
|
+
/**
|
|
8643
|
+
* @public
|
|
8644
|
+
*/
|
|
8108
8645
|
export interface SubmitAttachmentStateChangesRequest {
|
|
8109
8646
|
/**
|
|
8110
8647
|
* <p>The short name or full ARN of the cluster that hosts the container instance the
|
|
@@ -8116,12 +8653,18 @@ export interface SubmitAttachmentStateChangesRequest {
|
|
|
8116
8653
|
*/
|
|
8117
8654
|
attachments: AttachmentStateChange[] | undefined;
|
|
8118
8655
|
}
|
|
8656
|
+
/**
|
|
8657
|
+
* @public
|
|
8658
|
+
*/
|
|
8119
8659
|
export interface SubmitAttachmentStateChangesResponse {
|
|
8120
8660
|
/**
|
|
8121
8661
|
* <p>Acknowledgement of the state change.</p>
|
|
8122
8662
|
*/
|
|
8123
8663
|
acknowledgment?: string;
|
|
8124
8664
|
}
|
|
8665
|
+
/**
|
|
8666
|
+
* @public
|
|
8667
|
+
*/
|
|
8125
8668
|
export interface SubmitContainerStateChangeRequest {
|
|
8126
8669
|
/**
|
|
8127
8670
|
* <p>The short name or full ARN of the cluster that hosts the container.</p>
|
|
@@ -8156,6 +8699,9 @@ export interface SubmitContainerStateChangeRequest {
|
|
|
8156
8699
|
*/
|
|
8157
8700
|
networkBindings?: NetworkBinding[];
|
|
8158
8701
|
}
|
|
8702
|
+
/**
|
|
8703
|
+
* @public
|
|
8704
|
+
*/
|
|
8159
8705
|
export interface SubmitContainerStateChangeResponse {
|
|
8160
8706
|
/**
|
|
8161
8707
|
* <p>Acknowledgement of the state change.</p>
|
|
@@ -8163,6 +8709,7 @@ export interface SubmitContainerStateChangeResponse {
|
|
|
8163
8709
|
acknowledgment?: string;
|
|
8164
8710
|
}
|
|
8165
8711
|
/**
|
|
8712
|
+
* @public
|
|
8166
8713
|
* <p>An object that represents a change in state for a container.</p>
|
|
8167
8714
|
*/
|
|
8168
8715
|
export interface ContainerStateChange {
|
|
@@ -8197,6 +8744,7 @@ export interface ContainerStateChange {
|
|
|
8197
8744
|
status?: string;
|
|
8198
8745
|
}
|
|
8199
8746
|
/**
|
|
8747
|
+
* @public
|
|
8200
8748
|
* <p>An object representing a change in state for a managed agent.</p>
|
|
8201
8749
|
*/
|
|
8202
8750
|
export interface ManagedAgentStateChange {
|
|
@@ -8217,6 +8765,9 @@ export interface ManagedAgentStateChange {
|
|
|
8217
8765
|
*/
|
|
8218
8766
|
reason?: string;
|
|
8219
8767
|
}
|
|
8768
|
+
/**
|
|
8769
|
+
* @public
|
|
8770
|
+
*/
|
|
8220
8771
|
export interface SubmitTaskStateChangeRequest {
|
|
8221
8772
|
/**
|
|
8222
8773
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task.</p>
|
|
@@ -8259,12 +8810,18 @@ export interface SubmitTaskStateChangeRequest {
|
|
|
8259
8810
|
*/
|
|
8260
8811
|
executionStoppedAt?: Date;
|
|
8261
8812
|
}
|
|
8813
|
+
/**
|
|
8814
|
+
* @public
|
|
8815
|
+
*/
|
|
8262
8816
|
export interface SubmitTaskStateChangeResponse {
|
|
8263
8817
|
/**
|
|
8264
8818
|
* <p>Acknowledgement of the state change.</p>
|
|
8265
8819
|
*/
|
|
8266
8820
|
acknowledgment?: string;
|
|
8267
8821
|
}
|
|
8822
|
+
/**
|
|
8823
|
+
* @public
|
|
8824
|
+
*/
|
|
8268
8825
|
export interface TagResourceRequest {
|
|
8269
8826
|
/**
|
|
8270
8827
|
* <p>The Amazon Resource Name (ARN) of the resource to add tags to. Currently, the supported resources are
|
|
@@ -8308,8 +8865,14 @@ export interface TagResourceRequest {
|
|
|
8308
8865
|
*/
|
|
8309
8866
|
tags: Tag[] | undefined;
|
|
8310
8867
|
}
|
|
8868
|
+
/**
|
|
8869
|
+
* @public
|
|
8870
|
+
*/
|
|
8311
8871
|
export interface TagResourceResponse {
|
|
8312
8872
|
}
|
|
8873
|
+
/**
|
|
8874
|
+
* @public
|
|
8875
|
+
*/
|
|
8313
8876
|
export interface UntagResourceRequest {
|
|
8314
8877
|
/**
|
|
8315
8878
|
* <p>The Amazon Resource Name (ARN) of the resource to delete tags from. Currently, the supported resources
|
|
@@ -8322,9 +8885,13 @@ export interface UntagResourceRequest {
|
|
|
8322
8885
|
*/
|
|
8323
8886
|
tagKeys: string[] | undefined;
|
|
8324
8887
|
}
|
|
8888
|
+
/**
|
|
8889
|
+
* @public
|
|
8890
|
+
*/
|
|
8325
8891
|
export interface UntagResourceResponse {
|
|
8326
8892
|
}
|
|
8327
8893
|
/**
|
|
8894
|
+
* @public
|
|
8328
8895
|
* <p>The details of the Auto Scaling group capacity provider to update.</p>
|
|
8329
8896
|
*/
|
|
8330
8897
|
export interface AutoScalingGroupProviderUpdate {
|
|
@@ -8349,6 +8916,9 @@ export interface AutoScalingGroupProviderUpdate {
|
|
|
8349
8916
|
*/
|
|
8350
8917
|
managedTerminationProtection?: ManagedTerminationProtection | string;
|
|
8351
8918
|
}
|
|
8919
|
+
/**
|
|
8920
|
+
* @public
|
|
8921
|
+
*/
|
|
8352
8922
|
export interface UpdateCapacityProviderRequest {
|
|
8353
8923
|
/**
|
|
8354
8924
|
* <p>The name of the capacity provider to update.</p>
|
|
@@ -8360,12 +8930,18 @@ export interface UpdateCapacityProviderRequest {
|
|
|
8360
8930
|
*/
|
|
8361
8931
|
autoScalingGroupProvider: AutoScalingGroupProviderUpdate | undefined;
|
|
8362
8932
|
}
|
|
8933
|
+
/**
|
|
8934
|
+
* @public
|
|
8935
|
+
*/
|
|
8363
8936
|
export interface UpdateCapacityProviderResponse {
|
|
8364
8937
|
/**
|
|
8365
8938
|
* <p>Details about the capacity provider.</p>
|
|
8366
8939
|
*/
|
|
8367
8940
|
capacityProvider?: CapacityProvider;
|
|
8368
8941
|
}
|
|
8942
|
+
/**
|
|
8943
|
+
* @public
|
|
8944
|
+
*/
|
|
8369
8945
|
export interface UpdateClusterRequest {
|
|
8370
8946
|
/**
|
|
8371
8947
|
* <p>The name of the cluster to modify the settings for.</p>
|
|
@@ -8395,12 +8971,18 @@ export interface UpdateClusterRequest {
|
|
|
8395
8971
|
*/
|
|
8396
8972
|
serviceConnectDefaults?: ClusterServiceConnectDefaultsRequest;
|
|
8397
8973
|
}
|
|
8974
|
+
/**
|
|
8975
|
+
* @public
|
|
8976
|
+
*/
|
|
8398
8977
|
export interface UpdateClusterResponse {
|
|
8399
8978
|
/**
|
|
8400
8979
|
* <p>Details about the cluster.</p>
|
|
8401
8980
|
*/
|
|
8402
8981
|
cluster?: Cluster;
|
|
8403
8982
|
}
|
|
8983
|
+
/**
|
|
8984
|
+
* @public
|
|
8985
|
+
*/
|
|
8404
8986
|
export interface UpdateClusterSettingsRequest {
|
|
8405
8987
|
/**
|
|
8406
8988
|
* <p>The name of the cluster to modify the settings for.</p>
|
|
@@ -8421,6 +9003,9 @@ export interface UpdateClusterSettingsRequest {
|
|
|
8421
9003
|
*/
|
|
8422
9004
|
settings: ClusterSetting[] | undefined;
|
|
8423
9005
|
}
|
|
9006
|
+
/**
|
|
9007
|
+
* @public
|
|
9008
|
+
*/
|
|
8424
9009
|
export interface UpdateClusterSettingsResponse {
|
|
8425
9010
|
/**
|
|
8426
9011
|
* <p>Details about the cluster</p>
|
|
@@ -8428,6 +9013,7 @@ export interface UpdateClusterSettingsResponse {
|
|
|
8428
9013
|
cluster?: Cluster;
|
|
8429
9014
|
}
|
|
8430
9015
|
/**
|
|
9016
|
+
* @public
|
|
8431
9017
|
* <p>Amazon ECS can't determine the current version of the Amazon ECS container agent on the
|
|
8432
9018
|
* container instance and doesn't have enough information to proceed with an update. This
|
|
8433
9019
|
* could be because the agent running on the container instance is a previous or custom
|
|
@@ -8442,6 +9028,7 @@ export declare class MissingVersionException extends __BaseException {
|
|
|
8442
9028
|
constructor(opts: __ExceptionOptionType<MissingVersionException, __BaseException>);
|
|
8443
9029
|
}
|
|
8444
9030
|
/**
|
|
9031
|
+
* @public
|
|
8445
9032
|
* <p>There's no update available for this Amazon ECS container agent. This might be because the
|
|
8446
9033
|
* agent is already running the latest version or because it's so old that there's no
|
|
8447
9034
|
* update path to the current version.</p>
|
|
@@ -8454,6 +9041,9 @@ export declare class NoUpdateAvailableException extends __BaseException {
|
|
|
8454
9041
|
*/
|
|
8455
9042
|
constructor(opts: __ExceptionOptionType<NoUpdateAvailableException, __BaseException>);
|
|
8456
9043
|
}
|
|
9044
|
+
/**
|
|
9045
|
+
* @public
|
|
9046
|
+
*/
|
|
8457
9047
|
export interface UpdateContainerAgentRequest {
|
|
8458
9048
|
/**
|
|
8459
9049
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that your container instance is
|
|
@@ -8466,12 +9056,18 @@ export interface UpdateContainerAgentRequest {
|
|
|
8466
9056
|
*/
|
|
8467
9057
|
containerInstance: string | undefined;
|
|
8468
9058
|
}
|
|
9059
|
+
/**
|
|
9060
|
+
* @public
|
|
9061
|
+
*/
|
|
8469
9062
|
export interface UpdateContainerAgentResponse {
|
|
8470
9063
|
/**
|
|
8471
9064
|
* <p>The container instance that the container agent was updated for.</p>
|
|
8472
9065
|
*/
|
|
8473
9066
|
containerInstance?: ContainerInstance;
|
|
8474
9067
|
}
|
|
9068
|
+
/**
|
|
9069
|
+
* @public
|
|
9070
|
+
*/
|
|
8475
9071
|
export interface UpdateContainerInstancesStateRequest {
|
|
8476
9072
|
/**
|
|
8477
9073
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instance to
|
|
@@ -8492,6 +9088,9 @@ export interface UpdateContainerInstancesStateRequest {
|
|
|
8492
9088
|
*/
|
|
8493
9089
|
status: ContainerInstanceStatus | string | undefined;
|
|
8494
9090
|
}
|
|
9091
|
+
/**
|
|
9092
|
+
* @public
|
|
9093
|
+
*/
|
|
8495
9094
|
export interface UpdateContainerInstancesStateResponse {
|
|
8496
9095
|
/**
|
|
8497
9096
|
* <p>The list of container instances.</p>
|
|
@@ -8502,6 +9101,9 @@ export interface UpdateContainerInstancesStateResponse {
|
|
|
8502
9101
|
*/
|
|
8503
9102
|
failures?: Failure[];
|
|
8504
9103
|
}
|
|
9104
|
+
/**
|
|
9105
|
+
* @public
|
|
9106
|
+
*/
|
|
8505
9107
|
export interface UpdateServiceRequest {
|
|
8506
9108
|
/**
|
|
8507
9109
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that your service runs on.
|
|
@@ -8674,12 +9276,18 @@ export interface UpdateServiceRequest {
|
|
|
8674
9276
|
*/
|
|
8675
9277
|
serviceConnectConfiguration?: ServiceConnectConfiguration;
|
|
8676
9278
|
}
|
|
9279
|
+
/**
|
|
9280
|
+
* @public
|
|
9281
|
+
*/
|
|
8677
9282
|
export interface UpdateServiceResponse {
|
|
8678
9283
|
/**
|
|
8679
9284
|
* <p>The full description of your service following the update call.</p>
|
|
8680
9285
|
*/
|
|
8681
9286
|
service?: Service;
|
|
8682
9287
|
}
|
|
9288
|
+
/**
|
|
9289
|
+
* @public
|
|
9290
|
+
*/
|
|
8683
9291
|
export interface UpdateServicePrimaryTaskSetRequest {
|
|
8684
9292
|
/**
|
|
8685
9293
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task
|
|
@@ -8696,12 +9304,18 @@ export interface UpdateServicePrimaryTaskSetRequest {
|
|
|
8696
9304
|
*/
|
|
8697
9305
|
primaryTaskSet: string | undefined;
|
|
8698
9306
|
}
|
|
9307
|
+
/**
|
|
9308
|
+
* @public
|
|
9309
|
+
*/
|
|
8699
9310
|
export interface UpdateServicePrimaryTaskSetResponse {
|
|
8700
9311
|
/**
|
|
8701
9312
|
* <p>The details about the task set.</p>
|
|
8702
9313
|
*/
|
|
8703
9314
|
taskSet?: TaskSet;
|
|
8704
9315
|
}
|
|
9316
|
+
/**
|
|
9317
|
+
* @public
|
|
9318
|
+
*/
|
|
8705
9319
|
export interface UpdateTaskProtectionRequest {
|
|
8706
9320
|
/**
|
|
8707
9321
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task
|
|
@@ -8728,6 +9342,9 @@ export interface UpdateTaskProtectionRequest {
|
|
|
8728
9342
|
*/
|
|
8729
9343
|
expiresInMinutes?: number;
|
|
8730
9344
|
}
|
|
9345
|
+
/**
|
|
9346
|
+
* @public
|
|
9347
|
+
*/
|
|
8731
9348
|
export interface UpdateTaskProtectionResponse {
|
|
8732
9349
|
/**
|
|
8733
9350
|
* <p>A list of tasks with the following information.</p>
|
|
@@ -8755,6 +9372,9 @@ export interface UpdateTaskProtectionResponse {
|
|
|
8755
9372
|
*/
|
|
8756
9373
|
failures?: Failure[];
|
|
8757
9374
|
}
|
|
9375
|
+
/**
|
|
9376
|
+
* @public
|
|
9377
|
+
*/
|
|
8758
9378
|
export interface UpdateTaskSetRequest {
|
|
8759
9379
|
/**
|
|
8760
9380
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task
|
|
@@ -8775,6 +9395,9 @@ export interface UpdateTaskSetRequest {
|
|
|
8775
9395
|
*/
|
|
8776
9396
|
scale: Scale | undefined;
|
|
8777
9397
|
}
|
|
9398
|
+
/**
|
|
9399
|
+
* @public
|
|
9400
|
+
*/
|
|
8778
9401
|
export interface UpdateTaskSetResponse {
|
|
8779
9402
|
/**
|
|
8780
9403
|
* <p>Details about the task set.</p>
|