@aws-sdk/client-ecs 3.428.0 → 3.430.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.
|
@@ -29,7 +29,7 @@ export declare const ManagedScalingStatus: {
|
|
|
29
29
|
export type ManagedScalingStatus =
|
|
30
30
|
(typeof ManagedScalingStatus)[keyof typeof ManagedScalingStatus];
|
|
31
31
|
export interface ManagedScaling {
|
|
32
|
-
status?: ManagedScalingStatus
|
|
32
|
+
status?: ManagedScalingStatus;
|
|
33
33
|
targetCapacity?: number;
|
|
34
34
|
minimumScalingStepSize?: number;
|
|
35
35
|
maximumScalingStepSize?: number;
|
|
@@ -44,7 +44,7 @@ export type ManagedTerminationProtection =
|
|
|
44
44
|
export interface AutoScalingGroupProvider {
|
|
45
45
|
autoScalingGroupArn: string | undefined;
|
|
46
46
|
managedScaling?: ManagedScaling;
|
|
47
|
-
managedTerminationProtection?: ManagedTerminationProtection
|
|
47
|
+
managedTerminationProtection?: ManagedTerminationProtection;
|
|
48
48
|
}
|
|
49
49
|
export interface Tag {
|
|
50
50
|
key?: string;
|
|
@@ -74,9 +74,9 @@ export type CapacityProviderUpdateStatus =
|
|
|
74
74
|
export interface CapacityProvider {
|
|
75
75
|
capacityProviderArn?: string;
|
|
76
76
|
name?: string;
|
|
77
|
-
status?: CapacityProviderStatus
|
|
77
|
+
status?: CapacityProviderStatus;
|
|
78
78
|
autoScalingGroupProvider?: AutoScalingGroupProvider;
|
|
79
|
-
updateStatus?: CapacityProviderUpdateStatus
|
|
79
|
+
updateStatus?: CapacityProviderUpdateStatus;
|
|
80
80
|
updateStatusReason?: string;
|
|
81
81
|
tags?: Tag[];
|
|
82
82
|
}
|
|
@@ -125,7 +125,7 @@ export type ExecuteCommandLogging =
|
|
|
125
125
|
(typeof ExecuteCommandLogging)[keyof typeof ExecuteCommandLogging];
|
|
126
126
|
export interface ExecuteCommandConfiguration {
|
|
127
127
|
kmsKeyId?: string;
|
|
128
|
-
logging?: ExecuteCommandLogging
|
|
128
|
+
logging?: ExecuteCommandLogging;
|
|
129
129
|
logConfiguration?: ExecuteCommandLogConfiguration;
|
|
130
130
|
}
|
|
131
131
|
export interface ClusterConfiguration {
|
|
@@ -145,7 +145,7 @@ export declare const ClusterSettingName: {
|
|
|
145
145
|
export type ClusterSettingName =
|
|
146
146
|
(typeof ClusterSettingName)[keyof typeof ClusterSettingName];
|
|
147
147
|
export interface ClusterSetting {
|
|
148
|
-
name?: ClusterSettingName
|
|
148
|
+
name?: ClusterSettingName;
|
|
149
149
|
value?: string;
|
|
150
150
|
}
|
|
151
151
|
export interface CreateClusterRequest {
|
|
@@ -228,7 +228,7 @@ export declare const DeploymentControllerType: {
|
|
|
228
228
|
export type DeploymentControllerType =
|
|
229
229
|
(typeof DeploymentControllerType)[keyof typeof DeploymentControllerType];
|
|
230
230
|
export interface DeploymentController {
|
|
231
|
-
type: DeploymentControllerType |
|
|
231
|
+
type: DeploymentControllerType | undefined;
|
|
232
232
|
}
|
|
233
233
|
export declare const LaunchType: {
|
|
234
234
|
readonly EC2: "EC2";
|
|
@@ -251,7 +251,7 @@ export type AssignPublicIp =
|
|
|
251
251
|
export interface AwsVpcConfiguration {
|
|
252
252
|
subnets: string[] | undefined;
|
|
253
253
|
securityGroups?: string[];
|
|
254
|
-
assignPublicIp?: AssignPublicIp
|
|
254
|
+
assignPublicIp?: AssignPublicIp;
|
|
255
255
|
}
|
|
256
256
|
export interface NetworkConfiguration {
|
|
257
257
|
awsvpcConfiguration?: AwsVpcConfiguration;
|
|
@@ -263,7 +263,7 @@ export declare const PlacementConstraintType: {
|
|
|
263
263
|
export type PlacementConstraintType =
|
|
264
264
|
(typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
|
|
265
265
|
export interface PlacementConstraint {
|
|
266
|
-
type?: PlacementConstraintType
|
|
266
|
+
type?: PlacementConstraintType;
|
|
267
267
|
expression?: string;
|
|
268
268
|
}
|
|
269
269
|
export declare const PlacementStrategyType: {
|
|
@@ -274,7 +274,7 @@ export declare const PlacementStrategyType: {
|
|
|
274
274
|
export type PlacementStrategyType =
|
|
275
275
|
(typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
|
|
276
276
|
export interface PlacementStrategy {
|
|
277
|
-
type?: PlacementStrategyType
|
|
277
|
+
type?: PlacementStrategyType;
|
|
278
278
|
field?: string;
|
|
279
279
|
}
|
|
280
280
|
export declare const PropagateTags: {
|
|
@@ -305,7 +305,7 @@ export interface Secret {
|
|
|
305
305
|
valueFrom: string | undefined;
|
|
306
306
|
}
|
|
307
307
|
export interface LogConfiguration {
|
|
308
|
-
logDriver: LogDriver |
|
|
308
|
+
logDriver: LogDriver | undefined;
|
|
309
309
|
options?: Record<string, string>;
|
|
310
310
|
secretOptions?: Secret[];
|
|
311
311
|
}
|
|
@@ -339,7 +339,7 @@ export interface CreateServiceRequest {
|
|
|
339
339
|
serviceRegistries?: ServiceRegistry[];
|
|
340
340
|
desiredCount?: number;
|
|
341
341
|
clientToken?: string;
|
|
342
|
-
launchType?: LaunchType
|
|
342
|
+
launchType?: LaunchType;
|
|
343
343
|
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
344
344
|
platformVersion?: string;
|
|
345
345
|
role?: string;
|
|
@@ -348,11 +348,11 @@ export interface CreateServiceRequest {
|
|
|
348
348
|
placementStrategy?: PlacementStrategy[];
|
|
349
349
|
networkConfiguration?: NetworkConfiguration;
|
|
350
350
|
healthCheckGracePeriodSeconds?: number;
|
|
351
|
-
schedulingStrategy?: SchedulingStrategy
|
|
351
|
+
schedulingStrategy?: SchedulingStrategy;
|
|
352
352
|
deploymentController?: DeploymentController;
|
|
353
353
|
tags?: Tag[];
|
|
354
354
|
enableECSManagedTags?: boolean;
|
|
355
|
-
propagateTags?: PropagateTags
|
|
355
|
+
propagateTags?: PropagateTags;
|
|
356
356
|
enableExecuteCommand?: boolean;
|
|
357
357
|
serviceConnectConfiguration?: ServiceConnectConfiguration;
|
|
358
358
|
}
|
|
@@ -378,11 +378,11 @@ export interface Deployment {
|
|
|
378
378
|
createdAt?: Date;
|
|
379
379
|
updatedAt?: Date;
|
|
380
380
|
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
381
|
-
launchType?: LaunchType
|
|
381
|
+
launchType?: LaunchType;
|
|
382
382
|
platformVersion?: string;
|
|
383
383
|
platformFamily?: string;
|
|
384
384
|
networkConfiguration?: NetworkConfiguration;
|
|
385
|
-
rolloutState?: DeploymentRolloutState
|
|
385
|
+
rolloutState?: DeploymentRolloutState;
|
|
386
386
|
rolloutStateReason?: string;
|
|
387
387
|
serviceConnectConfiguration?: ServiceConnectConfiguration;
|
|
388
388
|
serviceConnectResources?: ServiceConnectServiceResource[];
|
|
@@ -398,7 +398,7 @@ export declare const ScaleUnit: {
|
|
|
398
398
|
export type ScaleUnit = (typeof ScaleUnit)[keyof typeof ScaleUnit];
|
|
399
399
|
export interface Scale {
|
|
400
400
|
value?: number;
|
|
401
|
-
unit?: ScaleUnit
|
|
401
|
+
unit?: ScaleUnit;
|
|
402
402
|
}
|
|
403
403
|
export declare const StabilityStatus: {
|
|
404
404
|
readonly STABILIZING: "STABILIZING";
|
|
@@ -420,7 +420,7 @@ export interface TaskSet {
|
|
|
420
420
|
runningCount?: number;
|
|
421
421
|
createdAt?: Date;
|
|
422
422
|
updatedAt?: Date;
|
|
423
|
-
launchType?: LaunchType
|
|
423
|
+
launchType?: LaunchType;
|
|
424
424
|
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
425
425
|
platformVersion?: string;
|
|
426
426
|
platformFamily?: string;
|
|
@@ -428,7 +428,7 @@ export interface TaskSet {
|
|
|
428
428
|
loadBalancers?: LoadBalancer[];
|
|
429
429
|
serviceRegistries?: ServiceRegistry[];
|
|
430
430
|
scale?: Scale;
|
|
431
|
-
stabilityStatus?: StabilityStatus
|
|
431
|
+
stabilityStatus?: StabilityStatus;
|
|
432
432
|
stabilityStatusAt?: Date;
|
|
433
433
|
tags?: Tag[];
|
|
434
434
|
}
|
|
@@ -442,7 +442,7 @@ export interface Service {
|
|
|
442
442
|
desiredCount?: number;
|
|
443
443
|
runningCount?: number;
|
|
444
444
|
pendingCount?: number;
|
|
445
|
-
launchType?: LaunchType
|
|
445
|
+
launchType?: LaunchType;
|
|
446
446
|
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
447
447
|
platformVersion?: string;
|
|
448
448
|
platformFamily?: string;
|
|
@@ -457,12 +457,12 @@ export interface Service {
|
|
|
457
457
|
placementStrategy?: PlacementStrategy[];
|
|
458
458
|
networkConfiguration?: NetworkConfiguration;
|
|
459
459
|
healthCheckGracePeriodSeconds?: number;
|
|
460
|
-
schedulingStrategy?: SchedulingStrategy
|
|
460
|
+
schedulingStrategy?: SchedulingStrategy;
|
|
461
461
|
deploymentController?: DeploymentController;
|
|
462
462
|
tags?: Tag[];
|
|
463
463
|
createdBy?: string;
|
|
464
464
|
enableECSManagedTags?: boolean;
|
|
465
|
-
propagateTags?: PropagateTags
|
|
465
|
+
propagateTags?: PropagateTags;
|
|
466
466
|
enableExecuteCommand?: boolean;
|
|
467
467
|
}
|
|
468
468
|
export interface CreateServiceResponse {
|
|
@@ -500,7 +500,7 @@ export interface CreateTaskSetRequest {
|
|
|
500
500
|
networkConfiguration?: NetworkConfiguration;
|
|
501
501
|
loadBalancers?: LoadBalancer[];
|
|
502
502
|
serviceRegistries?: ServiceRegistry[];
|
|
503
|
-
launchType?: LaunchType
|
|
503
|
+
launchType?: LaunchType;
|
|
504
504
|
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
505
505
|
platformVersion?: string;
|
|
506
506
|
scale?: Scale;
|
|
@@ -536,11 +536,11 @@ export declare const SettingName: {
|
|
|
536
536
|
};
|
|
537
537
|
export type SettingName = (typeof SettingName)[keyof typeof SettingName];
|
|
538
538
|
export interface DeleteAccountSettingRequest {
|
|
539
|
-
name: SettingName |
|
|
539
|
+
name: SettingName | undefined;
|
|
540
540
|
principalArn?: string;
|
|
541
541
|
}
|
|
542
542
|
export interface Setting {
|
|
543
|
-
name?: SettingName
|
|
543
|
+
name?: SettingName;
|
|
544
544
|
value?: string;
|
|
545
545
|
principalArn?: string;
|
|
546
546
|
}
|
|
@@ -554,7 +554,7 @@ export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
|
554
554
|
export interface Attribute {
|
|
555
555
|
name: string | undefined;
|
|
556
556
|
value?: string;
|
|
557
|
-
targetType?: TargetType
|
|
557
|
+
targetType?: TargetType;
|
|
558
558
|
targetId?: string;
|
|
559
559
|
}
|
|
560
560
|
export interface DeleteAttributesRequest {
|
|
@@ -642,7 +642,7 @@ export type ContainerCondition =
|
|
|
642
642
|
(typeof ContainerCondition)[keyof typeof ContainerCondition];
|
|
643
643
|
export interface ContainerDependency {
|
|
644
644
|
containerName: string | undefined;
|
|
645
|
-
condition: ContainerCondition |
|
|
645
|
+
condition: ContainerCondition | undefined;
|
|
646
646
|
}
|
|
647
647
|
export declare const EnvironmentFileType: {
|
|
648
648
|
readonly S3: "s3";
|
|
@@ -651,7 +651,7 @@ export type EnvironmentFileType =
|
|
|
651
651
|
(typeof EnvironmentFileType)[keyof typeof EnvironmentFileType];
|
|
652
652
|
export interface EnvironmentFile {
|
|
653
653
|
value: string | undefined;
|
|
654
|
-
type: EnvironmentFileType |
|
|
654
|
+
type: EnvironmentFileType | undefined;
|
|
655
655
|
}
|
|
656
656
|
export interface HostEntry {
|
|
657
657
|
hostname: string | undefined;
|
|
@@ -664,7 +664,7 @@ export declare const FirelensConfigurationType: {
|
|
|
664
664
|
export type FirelensConfigurationType =
|
|
665
665
|
(typeof FirelensConfigurationType)[keyof typeof FirelensConfigurationType];
|
|
666
666
|
export interface FirelensConfiguration {
|
|
667
|
-
type: FirelensConfigurationType |
|
|
667
|
+
type: FirelensConfigurationType | undefined;
|
|
668
668
|
options?: Record<string, string>;
|
|
669
669
|
}
|
|
670
670
|
export interface HealthCheck {
|
|
@@ -688,7 +688,7 @@ export type DeviceCgroupPermission =
|
|
|
688
688
|
export interface Device {
|
|
689
689
|
hostPath: string | undefined;
|
|
690
690
|
containerPath?: string;
|
|
691
|
-
permissions?:
|
|
691
|
+
permissions?: DeviceCgroupPermission[];
|
|
692
692
|
}
|
|
693
693
|
export interface Tmpfs {
|
|
694
694
|
containerPath: string | undefined;
|
|
@@ -725,9 +725,9 @@ export type TransportProtocol =
|
|
|
725
725
|
export interface PortMapping {
|
|
726
726
|
containerPort?: number;
|
|
727
727
|
hostPort?: number;
|
|
728
|
-
protocol?: TransportProtocol
|
|
728
|
+
protocol?: TransportProtocol;
|
|
729
729
|
name?: string;
|
|
730
|
-
appProtocol?: ApplicationProtocol
|
|
730
|
+
appProtocol?: ApplicationProtocol;
|
|
731
731
|
containerPortRange?: string;
|
|
732
732
|
}
|
|
733
733
|
export interface RepositoryCredentials {
|
|
@@ -740,7 +740,7 @@ export declare const ResourceType: {
|
|
|
740
740
|
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
741
741
|
export interface ResourceRequirement {
|
|
742
742
|
value: string | undefined;
|
|
743
|
-
type: ResourceType |
|
|
743
|
+
type: ResourceType | undefined;
|
|
744
744
|
}
|
|
745
745
|
export interface SystemControl {
|
|
746
746
|
namespace?: string;
|
|
@@ -765,7 +765,7 @@ export declare const UlimitName: {
|
|
|
765
765
|
};
|
|
766
766
|
export type UlimitName = (typeof UlimitName)[keyof typeof UlimitName];
|
|
767
767
|
export interface Ulimit {
|
|
768
|
-
name: UlimitName |
|
|
768
|
+
name: UlimitName | undefined;
|
|
769
769
|
softLimit: number | undefined;
|
|
770
770
|
hardLimit: number | undefined;
|
|
771
771
|
}
|
|
@@ -846,7 +846,7 @@ export declare const TaskDefinitionPlacementConstraintType: {
|
|
|
846
846
|
export type TaskDefinitionPlacementConstraintType =
|
|
847
847
|
(typeof TaskDefinitionPlacementConstraintType)[keyof typeof TaskDefinitionPlacementConstraintType];
|
|
848
848
|
export interface TaskDefinitionPlacementConstraint {
|
|
849
|
-
type?: TaskDefinitionPlacementConstraintType
|
|
849
|
+
type?: TaskDefinitionPlacementConstraintType;
|
|
850
850
|
expression?: string;
|
|
851
851
|
}
|
|
852
852
|
export declare const ProxyConfigurationType: {
|
|
@@ -855,7 +855,7 @@ export declare const ProxyConfigurationType: {
|
|
|
855
855
|
export type ProxyConfigurationType =
|
|
856
856
|
(typeof ProxyConfigurationType)[keyof typeof ProxyConfigurationType];
|
|
857
857
|
export interface ProxyConfiguration {
|
|
858
|
-
type?: ProxyConfigurationType
|
|
858
|
+
type?: ProxyConfigurationType;
|
|
859
859
|
containerName: string | undefined;
|
|
860
860
|
properties?: KeyValuePair[];
|
|
861
861
|
}
|
|
@@ -877,8 +877,8 @@ export declare const OSFamily: {
|
|
|
877
877
|
};
|
|
878
878
|
export type OSFamily = (typeof OSFamily)[keyof typeof OSFamily];
|
|
879
879
|
export interface RuntimePlatform {
|
|
880
|
-
cpuArchitecture?: CPUArchitecture
|
|
881
|
-
operatingSystemFamily?: OSFamily
|
|
880
|
+
cpuArchitecture?: CPUArchitecture;
|
|
881
|
+
operatingSystemFamily?: OSFamily;
|
|
882
882
|
}
|
|
883
883
|
export declare const TaskDefinitionStatus: {
|
|
884
884
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -893,7 +893,7 @@ export declare const Scope: {
|
|
|
893
893
|
};
|
|
894
894
|
export type Scope = (typeof Scope)[keyof typeof Scope];
|
|
895
895
|
export interface DockerVolumeConfiguration {
|
|
896
|
-
scope?: Scope
|
|
896
|
+
scope?: Scope;
|
|
897
897
|
autoprovision?: boolean;
|
|
898
898
|
driver?: string;
|
|
899
899
|
driverOpts?: Record<string, string>;
|
|
@@ -907,7 +907,7 @@ export type EFSAuthorizationConfigIAM =
|
|
|
907
907
|
(typeof EFSAuthorizationConfigIAM)[keyof typeof EFSAuthorizationConfigIAM];
|
|
908
908
|
export interface EFSAuthorizationConfig {
|
|
909
909
|
accessPointId?: string;
|
|
910
|
-
iam?: EFSAuthorizationConfigIAM
|
|
910
|
+
iam?: EFSAuthorizationConfigIAM;
|
|
911
911
|
}
|
|
912
912
|
export declare const EFSTransitEncryption: {
|
|
913
913
|
readonly DISABLED: "DISABLED";
|
|
@@ -918,7 +918,7 @@ export type EFSTransitEncryption =
|
|
|
918
918
|
export interface EFSVolumeConfiguration {
|
|
919
919
|
fileSystemId: string | undefined;
|
|
920
920
|
rootDirectory?: string;
|
|
921
|
-
transitEncryption?: EFSTransitEncryption
|
|
921
|
+
transitEncryption?: EFSTransitEncryption;
|
|
922
922
|
transitEncryptionPort?: number;
|
|
923
923
|
authorizationConfig?: EFSAuthorizationConfig;
|
|
924
924
|
}
|
|
@@ -947,20 +947,20 @@ export interface TaskDefinition {
|
|
|
947
947
|
family?: string;
|
|
948
948
|
taskRoleArn?: string;
|
|
949
949
|
executionRoleArn?: string;
|
|
950
|
-
networkMode?: NetworkMode
|
|
950
|
+
networkMode?: NetworkMode;
|
|
951
951
|
revision?: number;
|
|
952
952
|
volumes?: Volume[];
|
|
953
|
-
status?: TaskDefinitionStatus
|
|
953
|
+
status?: TaskDefinitionStatus;
|
|
954
954
|
requiresAttributes?: Attribute[];
|
|
955
955
|
placementConstraints?: TaskDefinitionPlacementConstraint[];
|
|
956
|
-
compatibilities?:
|
|
956
|
+
compatibilities?: Compatibility[];
|
|
957
957
|
runtimePlatform?: RuntimePlatform;
|
|
958
|
-
requiresCompatibilities?:
|
|
958
|
+
requiresCompatibilities?: Compatibility[];
|
|
959
959
|
cpu?: string;
|
|
960
960
|
memory?: string;
|
|
961
961
|
inferenceAccelerators?: InferenceAccelerator[];
|
|
962
|
-
pidMode?: PidMode
|
|
963
|
-
ipcMode?: IpcMode
|
|
962
|
+
pidMode?: PidMode;
|
|
963
|
+
ipcMode?: IpcMode;
|
|
964
964
|
proxyConfiguration?: ProxyConfiguration;
|
|
965
965
|
registeredAt?: Date;
|
|
966
966
|
deregisteredAt?: Date;
|
|
@@ -1006,13 +1006,13 @@ export declare const InstanceHealthCheckType: {
|
|
|
1006
1006
|
export type InstanceHealthCheckType =
|
|
1007
1007
|
(typeof InstanceHealthCheckType)[keyof typeof InstanceHealthCheckType];
|
|
1008
1008
|
export interface InstanceHealthCheckResult {
|
|
1009
|
-
type?: InstanceHealthCheckType
|
|
1010
|
-
status?: InstanceHealthCheckState
|
|
1009
|
+
type?: InstanceHealthCheckType;
|
|
1010
|
+
status?: InstanceHealthCheckState;
|
|
1011
1011
|
lastUpdated?: Date;
|
|
1012
1012
|
lastStatusChange?: Date;
|
|
1013
1013
|
}
|
|
1014
1014
|
export interface ContainerInstanceHealthStatus {
|
|
1015
|
-
overallStatus?: InstanceHealthCheckState
|
|
1015
|
+
overallStatus?: InstanceHealthCheckState;
|
|
1016
1016
|
details?: InstanceHealthCheckResult[];
|
|
1017
1017
|
}
|
|
1018
1018
|
export interface Resource {
|
|
@@ -1041,7 +1041,7 @@ export interface ContainerInstance {
|
|
|
1041
1041
|
agentConnected?: boolean;
|
|
1042
1042
|
runningTasksCount?: number;
|
|
1043
1043
|
pendingTasksCount?: number;
|
|
1044
|
-
agentUpdateStatus?: AgentUpdateStatus
|
|
1044
|
+
agentUpdateStatus?: AgentUpdateStatus;
|
|
1045
1045
|
attributes?: Attribute[];
|
|
1046
1046
|
registeredAt?: Date;
|
|
1047
1047
|
attachments?: Attachment[];
|
|
@@ -1064,7 +1064,7 @@ export type CapacityProviderField =
|
|
|
1064
1064
|
(typeof CapacityProviderField)[keyof typeof CapacityProviderField];
|
|
1065
1065
|
export interface DescribeCapacityProvidersRequest {
|
|
1066
1066
|
capacityProviders?: string[];
|
|
1067
|
-
include?:
|
|
1067
|
+
include?: CapacityProviderField[];
|
|
1068
1068
|
maxResults?: number;
|
|
1069
1069
|
nextToken?: string;
|
|
1070
1070
|
}
|
|
@@ -1083,7 +1083,7 @@ export declare const ClusterField: {
|
|
|
1083
1083
|
export type ClusterField = (typeof ClusterField)[keyof typeof ClusterField];
|
|
1084
1084
|
export interface DescribeClustersRequest {
|
|
1085
1085
|
clusters?: string[];
|
|
1086
|
-
include?:
|
|
1086
|
+
include?: ClusterField[];
|
|
1087
1087
|
}
|
|
1088
1088
|
export interface DescribeClustersResponse {
|
|
1089
1089
|
clusters?: Cluster[];
|
|
@@ -1098,7 +1098,7 @@ export type ContainerInstanceField =
|
|
|
1098
1098
|
export interface DescribeContainerInstancesRequest {
|
|
1099
1099
|
cluster?: string;
|
|
1100
1100
|
containerInstances: string[] | undefined;
|
|
1101
|
-
include?:
|
|
1101
|
+
include?: ContainerInstanceField[];
|
|
1102
1102
|
}
|
|
1103
1103
|
export interface DescribeContainerInstancesResponse {
|
|
1104
1104
|
containerInstances?: ContainerInstance[];
|
|
@@ -1111,7 +1111,7 @@ export type ServiceField = (typeof ServiceField)[keyof typeof ServiceField];
|
|
|
1111
1111
|
export interface DescribeServicesRequest {
|
|
1112
1112
|
cluster?: string;
|
|
1113
1113
|
services: string[] | undefined;
|
|
1114
|
-
include?:
|
|
1114
|
+
include?: ServiceField[];
|
|
1115
1115
|
}
|
|
1116
1116
|
export interface DescribeServicesResponse {
|
|
1117
1117
|
services?: Service[];
|
|
@@ -1124,7 +1124,7 @@ export type TaskDefinitionField =
|
|
|
1124
1124
|
(typeof TaskDefinitionField)[keyof typeof TaskDefinitionField];
|
|
1125
1125
|
export interface DescribeTaskDefinitionRequest {
|
|
1126
1126
|
taskDefinition: string | undefined;
|
|
1127
|
-
include?:
|
|
1127
|
+
include?: TaskDefinitionField[];
|
|
1128
1128
|
}
|
|
1129
1129
|
export interface DescribeTaskDefinitionResponse {
|
|
1130
1130
|
taskDefinition?: TaskDefinition;
|
|
@@ -1137,7 +1137,7 @@ export type TaskField = (typeof TaskField)[keyof typeof TaskField];
|
|
|
1137
1137
|
export interface DescribeTasksRequest {
|
|
1138
1138
|
cluster?: string;
|
|
1139
1139
|
tasks: string[] | undefined;
|
|
1140
|
-
include?:
|
|
1140
|
+
include?: TaskField[];
|
|
1141
1141
|
}
|
|
1142
1142
|
export declare const Connectivity: {
|
|
1143
1143
|
readonly CONNECTED: "CONNECTED";
|
|
@@ -1157,7 +1157,7 @@ export type ManagedAgentName =
|
|
|
1157
1157
|
(typeof ManagedAgentName)[keyof typeof ManagedAgentName];
|
|
1158
1158
|
export interface ManagedAgent {
|
|
1159
1159
|
lastStartedAt?: Date;
|
|
1160
|
-
name?: ManagedAgentName
|
|
1160
|
+
name?: ManagedAgentName;
|
|
1161
1161
|
reason?: string;
|
|
1162
1162
|
lastStatus?: string;
|
|
1163
1163
|
}
|
|
@@ -1165,7 +1165,7 @@ export interface NetworkBinding {
|
|
|
1165
1165
|
bindIP?: string;
|
|
1166
1166
|
containerPort?: number;
|
|
1167
1167
|
hostPort?: number;
|
|
1168
|
-
protocol?: TransportProtocol
|
|
1168
|
+
protocol?: TransportProtocol;
|
|
1169
1169
|
containerPortRange?: string;
|
|
1170
1170
|
hostPortRange?: string;
|
|
1171
1171
|
}
|
|
@@ -1186,7 +1186,7 @@ export interface Container {
|
|
|
1186
1186
|
reason?: string;
|
|
1187
1187
|
networkBindings?: NetworkBinding[];
|
|
1188
1188
|
networkInterfaces?: NetworkInterface[];
|
|
1189
|
-
healthStatus?: HealthStatus
|
|
1189
|
+
healthStatus?: HealthStatus;
|
|
1190
1190
|
managedAgents?: ManagedAgent[];
|
|
1191
1191
|
cpu?: string;
|
|
1192
1192
|
memory?: string;
|
|
@@ -1231,7 +1231,7 @@ export interface Task {
|
|
|
1231
1231
|
availabilityZone?: string;
|
|
1232
1232
|
capacityProviderName?: string;
|
|
1233
1233
|
clusterArn?: string;
|
|
1234
|
-
connectivity?: Connectivity
|
|
1234
|
+
connectivity?: Connectivity;
|
|
1235
1235
|
connectivityAt?: Date;
|
|
1236
1236
|
containerInstanceArn?: string;
|
|
1237
1237
|
containers?: Container[];
|
|
@@ -1241,10 +1241,10 @@ export interface Task {
|
|
|
1241
1241
|
enableExecuteCommand?: boolean;
|
|
1242
1242
|
executionStoppedAt?: Date;
|
|
1243
1243
|
group?: string;
|
|
1244
|
-
healthStatus?: HealthStatus
|
|
1244
|
+
healthStatus?: HealthStatus;
|
|
1245
1245
|
inferenceAccelerators?: InferenceAccelerator[];
|
|
1246
1246
|
lastStatus?: string;
|
|
1247
|
-
launchType?: LaunchType
|
|
1247
|
+
launchType?: LaunchType;
|
|
1248
1248
|
memory?: string;
|
|
1249
1249
|
overrides?: TaskOverride;
|
|
1250
1250
|
platformVersion?: string;
|
|
@@ -1253,7 +1253,7 @@ export interface Task {
|
|
|
1253
1253
|
pullStoppedAt?: Date;
|
|
1254
1254
|
startedAt?: Date;
|
|
1255
1255
|
startedBy?: string;
|
|
1256
|
-
stopCode?: TaskStopCode
|
|
1256
|
+
stopCode?: TaskStopCode;
|
|
1257
1257
|
stoppedAt?: Date;
|
|
1258
1258
|
stoppedReason?: string;
|
|
1259
1259
|
stoppingAt?: Date;
|
|
@@ -1275,7 +1275,7 @@ export interface DescribeTaskSetsRequest {
|
|
|
1275
1275
|
cluster: string | undefined;
|
|
1276
1276
|
service: string | undefined;
|
|
1277
1277
|
taskSets?: string[];
|
|
1278
|
-
include?:
|
|
1278
|
+
include?: TaskSetField[];
|
|
1279
1279
|
}
|
|
1280
1280
|
export interface DescribeTaskSetsResponse {
|
|
1281
1281
|
taskSets?: TaskSet[];
|
|
@@ -1338,7 +1338,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
1338
1338
|
);
|
|
1339
1339
|
}
|
|
1340
1340
|
export interface ListAccountSettingsRequest {
|
|
1341
|
-
name?: SettingName
|
|
1341
|
+
name?: SettingName;
|
|
1342
1342
|
value?: string;
|
|
1343
1343
|
principalArn?: string;
|
|
1344
1344
|
effectiveSettings?: boolean;
|
|
@@ -1351,7 +1351,7 @@ export interface ListAccountSettingsResponse {
|
|
|
1351
1351
|
}
|
|
1352
1352
|
export interface ListAttributesRequest {
|
|
1353
1353
|
cluster?: string;
|
|
1354
|
-
targetType: TargetType |
|
|
1354
|
+
targetType: TargetType | undefined;
|
|
1355
1355
|
attributeName?: string;
|
|
1356
1356
|
attributeValue?: string;
|
|
1357
1357
|
nextToken?: string;
|
|
@@ -1383,7 +1383,7 @@ export interface ListContainerInstancesRequest {
|
|
|
1383
1383
|
filter?: string;
|
|
1384
1384
|
nextToken?: string;
|
|
1385
1385
|
maxResults?: number;
|
|
1386
|
-
status?: ContainerInstanceStatus
|
|
1386
|
+
status?: ContainerInstanceStatus;
|
|
1387
1387
|
}
|
|
1388
1388
|
export interface ListContainerInstancesResponse {
|
|
1389
1389
|
containerInstanceArns?: string[];
|
|
@@ -1393,8 +1393,8 @@ export interface ListServicesRequest {
|
|
|
1393
1393
|
cluster?: string;
|
|
1394
1394
|
nextToken?: string;
|
|
1395
1395
|
maxResults?: number;
|
|
1396
|
-
launchType?: LaunchType
|
|
1397
|
-
schedulingStrategy?: SchedulingStrategy
|
|
1396
|
+
launchType?: LaunchType;
|
|
1397
|
+
schedulingStrategy?: SchedulingStrategy;
|
|
1398
1398
|
}
|
|
1399
1399
|
export interface ListServicesResponse {
|
|
1400
1400
|
serviceArns?: string[];
|
|
@@ -1424,7 +1424,7 @@ export type TaskDefinitionFamilyStatus =
|
|
|
1424
1424
|
(typeof TaskDefinitionFamilyStatus)[keyof typeof TaskDefinitionFamilyStatus];
|
|
1425
1425
|
export interface ListTaskDefinitionFamiliesRequest {
|
|
1426
1426
|
familyPrefix?: string;
|
|
1427
|
-
status?: TaskDefinitionFamilyStatus
|
|
1427
|
+
status?: TaskDefinitionFamilyStatus;
|
|
1428
1428
|
nextToken?: string;
|
|
1429
1429
|
maxResults?: number;
|
|
1430
1430
|
}
|
|
@@ -1439,8 +1439,8 @@ export declare const SortOrder: {
|
|
|
1439
1439
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1440
1440
|
export interface ListTaskDefinitionsRequest {
|
|
1441
1441
|
familyPrefix?: string;
|
|
1442
|
-
status?: TaskDefinitionStatus
|
|
1443
|
-
sort?: SortOrder
|
|
1442
|
+
status?: TaskDefinitionStatus;
|
|
1443
|
+
sort?: SortOrder;
|
|
1444
1444
|
nextToken?: string;
|
|
1445
1445
|
maxResults?: number;
|
|
1446
1446
|
}
|
|
@@ -1462,15 +1462,15 @@ export interface ListTasksRequest {
|
|
|
1462
1462
|
maxResults?: number;
|
|
1463
1463
|
startedBy?: string;
|
|
1464
1464
|
serviceName?: string;
|
|
1465
|
-
desiredStatus?: DesiredStatus
|
|
1466
|
-
launchType?: LaunchType
|
|
1465
|
+
desiredStatus?: DesiredStatus;
|
|
1466
|
+
launchType?: LaunchType;
|
|
1467
1467
|
}
|
|
1468
1468
|
export interface ListTasksResponse {
|
|
1469
1469
|
taskArns?: string[];
|
|
1470
1470
|
nextToken?: string;
|
|
1471
1471
|
}
|
|
1472
1472
|
export interface PutAccountSettingRequest {
|
|
1473
|
-
name: SettingName |
|
|
1473
|
+
name: SettingName | undefined;
|
|
1474
1474
|
value: string | undefined;
|
|
1475
1475
|
principalArn?: string;
|
|
1476
1476
|
}
|
|
@@ -1478,7 +1478,7 @@ export interface PutAccountSettingResponse {
|
|
|
1478
1478
|
setting?: Setting;
|
|
1479
1479
|
}
|
|
1480
1480
|
export interface PutAccountSettingDefaultRequest {
|
|
1481
|
-
name: SettingName |
|
|
1481
|
+
name: SettingName | undefined;
|
|
1482
1482
|
value: string | undefined;
|
|
1483
1483
|
}
|
|
1484
1484
|
export interface PutAccountSettingDefaultResponse {
|
|
@@ -1523,7 +1523,7 @@ export type PlatformDeviceType =
|
|
|
1523
1523
|
(typeof PlatformDeviceType)[keyof typeof PlatformDeviceType];
|
|
1524
1524
|
export interface PlatformDevice {
|
|
1525
1525
|
id: string | undefined;
|
|
1526
|
-
type: PlatformDeviceType |
|
|
1526
|
+
type: PlatformDeviceType | undefined;
|
|
1527
1527
|
}
|
|
1528
1528
|
export interface RegisterContainerInstanceRequest {
|
|
1529
1529
|
cluster?: string;
|
|
@@ -1543,16 +1543,16 @@ export interface RegisterTaskDefinitionRequest {
|
|
|
1543
1543
|
family: string | undefined;
|
|
1544
1544
|
taskRoleArn?: string;
|
|
1545
1545
|
executionRoleArn?: string;
|
|
1546
|
-
networkMode?: NetworkMode
|
|
1546
|
+
networkMode?: NetworkMode;
|
|
1547
1547
|
containerDefinitions: ContainerDefinition[] | undefined;
|
|
1548
1548
|
volumes?: Volume[];
|
|
1549
1549
|
placementConstraints?: TaskDefinitionPlacementConstraint[];
|
|
1550
|
-
requiresCompatibilities?:
|
|
1550
|
+
requiresCompatibilities?: Compatibility[];
|
|
1551
1551
|
cpu?: string;
|
|
1552
1552
|
memory?: string;
|
|
1553
1553
|
tags?: Tag[];
|
|
1554
|
-
pidMode?: PidMode
|
|
1555
|
-
ipcMode?: IpcMode
|
|
1554
|
+
pidMode?: PidMode;
|
|
1555
|
+
ipcMode?: IpcMode;
|
|
1556
1556
|
proxyConfiguration?: ProxyConfiguration;
|
|
1557
1557
|
inferenceAccelerators?: InferenceAccelerator[];
|
|
1558
1558
|
ephemeralStorage?: EphemeralStorage;
|
|
@@ -1574,13 +1574,13 @@ export interface RunTaskRequest {
|
|
|
1574
1574
|
enableECSManagedTags?: boolean;
|
|
1575
1575
|
enableExecuteCommand?: boolean;
|
|
1576
1576
|
group?: string;
|
|
1577
|
-
launchType?: LaunchType
|
|
1577
|
+
launchType?: LaunchType;
|
|
1578
1578
|
networkConfiguration?: NetworkConfiguration;
|
|
1579
1579
|
overrides?: TaskOverride;
|
|
1580
1580
|
placementConstraints?: PlacementConstraint[];
|
|
1581
1581
|
placementStrategy?: PlacementStrategy[];
|
|
1582
1582
|
platformVersion?: string;
|
|
1583
|
-
propagateTags?: PropagateTags
|
|
1583
|
+
propagateTags?: PropagateTags;
|
|
1584
1584
|
referenceId?: string;
|
|
1585
1585
|
startedBy?: string;
|
|
1586
1586
|
tags?: Tag[];
|
|
@@ -1598,7 +1598,7 @@ export interface StartTaskRequest {
|
|
|
1598
1598
|
group?: string;
|
|
1599
1599
|
networkConfiguration?: NetworkConfiguration;
|
|
1600
1600
|
overrides?: TaskOverride;
|
|
1601
|
-
propagateTags?: PropagateTags
|
|
1601
|
+
propagateTags?: PropagateTags;
|
|
1602
1602
|
referenceId?: string;
|
|
1603
1603
|
startedBy?: string;
|
|
1604
1604
|
tags?: Tag[];
|
|
@@ -1651,7 +1651,7 @@ export interface ContainerStateChange {
|
|
|
1651
1651
|
}
|
|
1652
1652
|
export interface ManagedAgentStateChange {
|
|
1653
1653
|
containerName: string | undefined;
|
|
1654
|
-
managedAgentName: ManagedAgentName |
|
|
1654
|
+
managedAgentName: ManagedAgentName | undefined;
|
|
1655
1655
|
status: string | undefined;
|
|
1656
1656
|
reason?: string;
|
|
1657
1657
|
}
|
|
@@ -1682,7 +1682,7 @@ export interface UntagResourceRequest {
|
|
|
1682
1682
|
export interface UntagResourceResponse {}
|
|
1683
1683
|
export interface AutoScalingGroupProviderUpdate {
|
|
1684
1684
|
managedScaling?: ManagedScaling;
|
|
1685
|
-
managedTerminationProtection?: ManagedTerminationProtection
|
|
1685
|
+
managedTerminationProtection?: ManagedTerminationProtection;
|
|
1686
1686
|
}
|
|
1687
1687
|
export interface UpdateCapacityProviderRequest {
|
|
1688
1688
|
name: string | undefined;
|
|
@@ -1731,7 +1731,7 @@ export interface UpdateContainerAgentResponse {
|
|
|
1731
1731
|
export interface UpdateContainerInstancesStateRequest {
|
|
1732
1732
|
cluster?: string;
|
|
1733
1733
|
containerInstances: string[] | undefined;
|
|
1734
|
-
status: ContainerInstanceStatus |
|
|
1734
|
+
status: ContainerInstanceStatus | undefined;
|
|
1735
1735
|
}
|
|
1736
1736
|
export interface UpdateContainerInstancesStateResponse {
|
|
1737
1737
|
containerInstances?: ContainerInstance[];
|
|
@@ -1753,7 +1753,7 @@ export interface UpdateServiceRequest {
|
|
|
1753
1753
|
enableExecuteCommand?: boolean;
|
|
1754
1754
|
enableECSManagedTags?: boolean;
|
|
1755
1755
|
loadBalancers?: LoadBalancer[];
|
|
1756
|
-
propagateTags?: PropagateTags
|
|
1756
|
+
propagateTags?: PropagateTags;
|
|
1757
1757
|
serviceRegistries?: ServiceRegistry[];
|
|
1758
1758
|
serviceConnectConfiguration?: ServiceConnectConfiguration;
|
|
1759
1759
|
}
|