@aws-sdk/client-ecs 3.301.0 → 3.303.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.
@@ -14,15 +14,20 @@ export declare class AccessDeniedException extends __BaseException {
14
14
  }
15
15
  /**
16
16
  * @public
17
+ * @enum
17
18
  */
18
- export declare enum AgentUpdateStatus {
19
- FAILED = "FAILED",
20
- PENDING = "PENDING",
21
- STAGED = "STAGED",
22
- STAGING = "STAGING",
23
- UPDATED = "UPDATED",
24
- UPDATING = "UPDATING"
25
- }
19
+ export declare const AgentUpdateStatus: {
20
+ readonly FAILED: "FAILED";
21
+ readonly PENDING: "PENDING";
22
+ readonly STAGED: "STAGED";
23
+ readonly STAGING: "STAGING";
24
+ readonly UPDATED: "UPDATED";
25
+ readonly UPDATING: "UPDATING";
26
+ };
27
+ /**
28
+ * @public
29
+ */
30
+ export type AgentUpdateStatus = (typeof AgentUpdateStatus)[keyof typeof AgentUpdateStatus];
26
31
  /**
27
32
  * @public
28
33
  * <p>These errors are usually caused by a client action. This client action might be using
@@ -39,11 +44,16 @@ export declare class ClientException extends __BaseException {
39
44
  }
40
45
  /**
41
46
  * @public
47
+ * @enum
42
48
  */
43
- export declare enum ManagedScalingStatus {
44
- DISABLED = "DISABLED",
45
- ENABLED = "ENABLED"
46
- }
49
+ export declare const ManagedScalingStatus: {
50
+ readonly DISABLED: "DISABLED";
51
+ readonly ENABLED: "ENABLED";
52
+ };
53
+ /**
54
+ * @public
55
+ */
56
+ export type ManagedScalingStatus = (typeof ManagedScalingStatus)[keyof typeof ManagedScalingStatus];
47
57
  /**
48
58
  * @public
49
59
  * <p>The managed scaling settings for the Auto Scaling group capacity provider.</p>
@@ -93,11 +103,16 @@ export interface ManagedScaling {
93
103
  }
94
104
  /**
95
105
  * @public
106
+ * @enum
96
107
  */
97
- export declare enum ManagedTerminationProtection {
98
- DISABLED = "DISABLED",
99
- ENABLED = "ENABLED"
100
- }
108
+ export declare const ManagedTerminationProtection: {
109
+ readonly DISABLED: "DISABLED";
110
+ readonly ENABLED: "ENABLED";
111
+ };
112
+ /**
113
+ * @public
114
+ */
115
+ export type ManagedTerminationProtection = (typeof ManagedTerminationProtection)[keyof typeof ManagedTerminationProtection];
101
116
  /**
102
117
  * @public
103
118
  * <p>The details of the Auto Scaling group for the capacity provider.</p>
@@ -231,22 +246,32 @@ export interface CreateCapacityProviderRequest {
231
246
  }
232
247
  /**
233
248
  * @public
249
+ * @enum
234
250
  */
235
- export declare enum CapacityProviderStatus {
236
- ACTIVE = "ACTIVE",
237
- INACTIVE = "INACTIVE"
238
- }
251
+ export declare const CapacityProviderStatus: {
252
+ readonly ACTIVE: "ACTIVE";
253
+ readonly INACTIVE: "INACTIVE";
254
+ };
239
255
  /**
240
256
  * @public
241
257
  */
242
- export declare enum CapacityProviderUpdateStatus {
243
- DELETE_COMPLETE = "DELETE_COMPLETE",
244
- DELETE_FAILED = "DELETE_FAILED",
245
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
246
- UPDATE_COMPLETE = "UPDATE_COMPLETE",
247
- UPDATE_FAILED = "UPDATE_FAILED",
248
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS"
249
- }
258
+ export type CapacityProviderStatus = (typeof CapacityProviderStatus)[keyof typeof CapacityProviderStatus];
259
+ /**
260
+ * @public
261
+ * @enum
262
+ */
263
+ export declare const CapacityProviderUpdateStatus: {
264
+ readonly DELETE_COMPLETE: "DELETE_COMPLETE";
265
+ readonly DELETE_FAILED: "DELETE_FAILED";
266
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
267
+ readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
268
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
269
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
270
+ };
271
+ /**
272
+ * @public
273
+ */
274
+ export type CapacityProviderUpdateStatus = (typeof CapacityProviderUpdateStatus)[keyof typeof CapacityProviderUpdateStatus];
250
275
  /**
251
276
  * @public
252
277
  * <p>The details for a capacity provider.</p>
@@ -432,12 +457,17 @@ export interface ExecuteCommandLogConfiguration {
432
457
  }
433
458
  /**
434
459
  * @public
460
+ * @enum
435
461
  */
436
- export declare enum ExecuteCommandLogging {
437
- DEFAULT = "DEFAULT",
438
- NONE = "NONE",
439
- OVERRIDE = "OVERRIDE"
440
- }
462
+ export declare const ExecuteCommandLogging: {
463
+ readonly DEFAULT: "DEFAULT";
464
+ readonly NONE: "NONE";
465
+ readonly OVERRIDE: "OVERRIDE";
466
+ };
467
+ /**
468
+ * @public
469
+ */
470
+ export type ExecuteCommandLogging = (typeof ExecuteCommandLogging)[keyof typeof ExecuteCommandLogging];
441
471
  /**
442
472
  * @public
443
473
  * <p>The details of the execute command configuration.</p>
@@ -580,10 +610,15 @@ export interface ClusterServiceConnectDefaultsRequest {
580
610
  }
581
611
  /**
582
612
  * @public
613
+ * @enum
583
614
  */
584
- export declare enum ClusterSettingName {
585
- CONTAINER_INSIGHTS = "containerInsights"
586
- }
615
+ export declare const ClusterSettingName: {
616
+ readonly CONTAINER_INSIGHTS: "containerInsights";
617
+ };
618
+ /**
619
+ * @public
620
+ */
621
+ export type ClusterSettingName = (typeof ClusterSettingName)[keyof typeof ClusterSettingName];
587
622
  /**
588
623
  * @public
589
624
  * <p>The settings to use when creating a cluster. This parameter is used to turn on CloudWatch
@@ -1151,12 +1186,17 @@ export interface DeploymentConfiguration {
1151
1186
  }
1152
1187
  /**
1153
1188
  * @public
1189
+ * @enum
1154
1190
  */
1155
- export declare enum DeploymentControllerType {
1156
- CODE_DEPLOY = "CODE_DEPLOY",
1157
- ECS = "ECS",
1158
- EXTERNAL = "EXTERNAL"
1159
- }
1191
+ export declare const DeploymentControllerType: {
1192
+ readonly CODE_DEPLOY: "CODE_DEPLOY";
1193
+ readonly ECS: "ECS";
1194
+ readonly EXTERNAL: "EXTERNAL";
1195
+ };
1196
+ /**
1197
+ * @public
1198
+ */
1199
+ export type DeploymentControllerType = (typeof DeploymentControllerType)[keyof typeof DeploymentControllerType];
1160
1200
  /**
1161
1201
  * @public
1162
1202
  * <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>
@@ -1192,12 +1232,17 @@ export interface DeploymentController {
1192
1232
  }
1193
1233
  /**
1194
1234
  * @public
1235
+ * @enum
1195
1236
  */
1196
- export declare enum LaunchType {
1197
- EC2 = "EC2",
1198
- EXTERNAL = "EXTERNAL",
1199
- FARGATE = "FARGATE"
1200
- }
1237
+ export declare const LaunchType: {
1238
+ readonly EC2: "EC2";
1239
+ readonly EXTERNAL: "EXTERNAL";
1240
+ readonly FARGATE: "FARGATE";
1241
+ };
1242
+ /**
1243
+ * @public
1244
+ */
1245
+ export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
1201
1246
  /**
1202
1247
  * @public
1203
1248
  * <p>The load balancer configuration to use with a service or task set.</p>
@@ -1256,11 +1301,16 @@ export interface LoadBalancer {
1256
1301
  }
1257
1302
  /**
1258
1303
  * @public
1304
+ * @enum
1259
1305
  */
1260
- export declare enum AssignPublicIp {
1261
- DISABLED = "DISABLED",
1262
- ENABLED = "ENABLED"
1263
- }
1306
+ export declare const AssignPublicIp: {
1307
+ readonly DISABLED: "DISABLED";
1308
+ readonly ENABLED: "ENABLED";
1309
+ };
1310
+ /**
1311
+ * @public
1312
+ */
1313
+ export type AssignPublicIp = (typeof AssignPublicIp)[keyof typeof AssignPublicIp];
1264
1314
  /**
1265
1315
  * @public
1266
1316
  * <p>An object representing the networking details for a task or service.</p>
@@ -1305,11 +1355,16 @@ export interface NetworkConfiguration {
1305
1355
  }
1306
1356
  /**
1307
1357
  * @public
1358
+ * @enum
1308
1359
  */
1309
- export declare enum PlacementConstraintType {
1310
- DISTINCT_INSTANCE = "distinctInstance",
1311
- MEMBER_OF = "memberOf"
1312
- }
1360
+ export declare const PlacementConstraintType: {
1361
+ readonly DISTINCT_INSTANCE: "distinctInstance";
1362
+ readonly MEMBER_OF: "memberOf";
1363
+ };
1364
+ /**
1365
+ * @public
1366
+ */
1367
+ export type PlacementConstraintType = (typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
1313
1368
  /**
1314
1369
  * @public
1315
1370
  * <p>An object representing a constraint on task placement. For more information, see
@@ -1337,12 +1392,17 @@ export interface PlacementConstraint {
1337
1392
  }
1338
1393
  /**
1339
1394
  * @public
1395
+ * @enum
1340
1396
  */
1341
- export declare enum PlacementStrategyType {
1342
- BINPACK = "binpack",
1343
- RANDOM = "random",
1344
- SPREAD = "spread"
1345
- }
1397
+ export declare const PlacementStrategyType: {
1398
+ readonly BINPACK: "binpack";
1399
+ readonly RANDOM: "random";
1400
+ readonly SPREAD: "spread";
1401
+ };
1402
+ /**
1403
+ * @public
1404
+ */
1405
+ export type PlacementStrategyType = (typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
1346
1406
  /**
1347
1407
  * @public
1348
1408
  * <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
@@ -1372,32 +1432,47 @@ export interface PlacementStrategy {
1372
1432
  }
1373
1433
  /**
1374
1434
  * @public
1435
+ * @enum
1375
1436
  */
1376
- export declare enum PropagateTags {
1377
- NONE = "NONE",
1378
- SERVICE = "SERVICE",
1379
- TASK_DEFINITION = "TASK_DEFINITION"
1380
- }
1437
+ export declare const PropagateTags: {
1438
+ readonly NONE: "NONE";
1439
+ readonly SERVICE: "SERVICE";
1440
+ readonly TASK_DEFINITION: "TASK_DEFINITION";
1441
+ };
1381
1442
  /**
1382
1443
  * @public
1383
1444
  */
1384
- export declare enum SchedulingStrategy {
1385
- DAEMON = "DAEMON",
1386
- REPLICA = "REPLICA"
1387
- }
1445
+ export type PropagateTags = (typeof PropagateTags)[keyof typeof PropagateTags];
1388
1446
  /**
1389
1447
  * @public
1448
+ * @enum
1390
1449
  */
1391
- export declare enum LogDriver {
1392
- AWSFIRELENS = "awsfirelens",
1393
- AWSLOGS = "awslogs",
1394
- FLUENTD = "fluentd",
1395
- GELF = "gelf",
1396
- JOURNALD = "journald",
1397
- JSON_FILE = "json-file",
1398
- SPLUNK = "splunk",
1399
- SYSLOG = "syslog"
1400
- }
1450
+ export declare const SchedulingStrategy: {
1451
+ readonly DAEMON: "DAEMON";
1452
+ readonly REPLICA: "REPLICA";
1453
+ };
1454
+ /**
1455
+ * @public
1456
+ */
1457
+ export type SchedulingStrategy = (typeof SchedulingStrategy)[keyof typeof SchedulingStrategy];
1458
+ /**
1459
+ * @public
1460
+ * @enum
1461
+ */
1462
+ export declare const LogDriver: {
1463
+ readonly AWSFIRELENS: "awsfirelens";
1464
+ readonly AWSLOGS: "awslogs";
1465
+ readonly FLUENTD: "fluentd";
1466
+ readonly GELF: "gelf";
1467
+ readonly JOURNALD: "journald";
1468
+ readonly JSON_FILE: "json-file";
1469
+ readonly SPLUNK: "splunk";
1470
+ readonly SYSLOG: "syslog";
1471
+ };
1472
+ /**
1473
+ * @public
1474
+ */
1475
+ export type LogDriver = (typeof LogDriver)[keyof typeof LogDriver];
1401
1476
  /**
1402
1477
  * @public
1403
1478
  * <p>An object representing the secret to expose to your container. Secrets can be exposed
@@ -1996,12 +2071,17 @@ export interface CreateServiceRequest {
1996
2071
  }
1997
2072
  /**
1998
2073
  * @public
2074
+ * @enum
1999
2075
  */
2000
- export declare enum DeploymentRolloutState {
2001
- COMPLETED = "COMPLETED",
2002
- FAILED = "FAILED",
2003
- IN_PROGRESS = "IN_PROGRESS"
2004
- }
2076
+ export declare const DeploymentRolloutState: {
2077
+ readonly COMPLETED: "COMPLETED";
2078
+ readonly FAILED: "FAILED";
2079
+ readonly IN_PROGRESS: "IN_PROGRESS";
2080
+ };
2081
+ /**
2082
+ * @public
2083
+ */
2084
+ export type DeploymentRolloutState = (typeof DeploymentRolloutState)[keyof typeof DeploymentRolloutState];
2005
2085
  /**
2006
2086
  * @public
2007
2087
  * <p>The Service Connect resource. Each configuration maps a discovery name to a
@@ -2182,10 +2262,15 @@ export interface ServiceEvent {
2182
2262
  }
2183
2263
  /**
2184
2264
  * @public
2265
+ * @enum
2185
2266
  */
2186
- export declare enum ScaleUnit {
2187
- PERCENT = "PERCENT"
2188
- }
2267
+ export declare const ScaleUnit: {
2268
+ readonly PERCENT: "PERCENT";
2269
+ };
2270
+ /**
2271
+ * @public
2272
+ */
2273
+ export type ScaleUnit = (typeof ScaleUnit)[keyof typeof ScaleUnit];
2189
2274
  /**
2190
2275
  * @public
2191
2276
  * <p>A floating-point percentage of the desired number of tasks to place and keep running
@@ -2204,11 +2289,16 @@ export interface Scale {
2204
2289
  }
2205
2290
  /**
2206
2291
  * @public
2292
+ * @enum
2207
2293
  */
2208
- export declare enum StabilityStatus {
2209
- STABILIZING = "STABILIZING",
2210
- STEADY_STATE = "STEADY_STATE"
2211
- }
2294
+ export declare const StabilityStatus: {
2295
+ readonly STABILIZING: "STABILIZING";
2296
+ readonly STEADY_STATE: "STEADY_STATE";
2297
+ };
2298
+ /**
2299
+ * @public
2300
+ */
2301
+ export type StabilityStatus = (typeof StabilityStatus)[keyof typeof StabilityStatus];
2212
2302
  /**
2213
2303
  * @public
2214
2304
  * <p>Information about a set of Amazon ECS tasks in either an CodeDeploy or an <code>EXTERNAL</code>
@@ -2854,14 +2944,19 @@ export declare class ServiceNotFoundException extends __BaseException {
2854
2944
  }
2855
2945
  /**
2856
2946
  * @public
2947
+ * @enum
2857
2948
  */
2858
- export declare enum SettingName {
2859
- AWSVPC_TRUNKING = "awsvpcTrunking",
2860
- CONTAINER_INSIGHTS = "containerInsights",
2861
- CONTAINER_INSTANCE_LONG_ARN_FORMAT = "containerInstanceLongArnFormat",
2862
- SERVICE_LONG_ARN_FORMAT = "serviceLongArnFormat",
2863
- TASK_LONG_ARN_FORMAT = "taskLongArnFormat"
2864
- }
2949
+ export declare const SettingName: {
2950
+ readonly AWSVPC_TRUNKING: "awsvpcTrunking";
2951
+ readonly CONTAINER_INSIGHTS: "containerInsights";
2952
+ readonly CONTAINER_INSTANCE_LONG_ARN_FORMAT: "containerInstanceLongArnFormat";
2953
+ readonly SERVICE_LONG_ARN_FORMAT: "serviceLongArnFormat";
2954
+ readonly TASK_LONG_ARN_FORMAT: "taskLongArnFormat";
2955
+ };
2956
+ /**
2957
+ * @public
2958
+ */
2959
+ export type SettingName = (typeof SettingName)[keyof typeof SettingName];
2865
2960
  /**
2866
2961
  * @public
2867
2962
  */
@@ -2914,10 +3009,15 @@ export interface DeleteAccountSettingResponse {
2914
3009
  }
2915
3010
  /**
2916
3011
  * @public
3012
+ * @enum
2917
3013
  */
2918
- export declare enum TargetType {
2919
- CONTAINER_INSTANCE = "container-instance"
2920
- }
3014
+ export declare const TargetType: {
3015
+ readonly CONTAINER_INSTANCE: "container-instance";
3016
+ };
3017
+ /**
3018
+ * @public
3019
+ */
3020
+ export type TargetType = (typeof TargetType)[keyof typeof TargetType];
2921
3021
  /**
2922
3022
  * @public
2923
3023
  * <p>An attribute is a name-value pair that's associated with an Amazon ECS object. Use
@@ -3127,21 +3227,31 @@ export interface Failure {
3127
3227
  }
3128
3228
  /**
3129
3229
  * @public
3230
+ * @enum
3130
3231
  */
3131
- export declare enum Compatibility {
3132
- EC2 = "EC2",
3133
- EXTERNAL = "EXTERNAL",
3134
- FARGATE = "FARGATE"
3135
- }
3232
+ export declare const Compatibility: {
3233
+ readonly EC2: "EC2";
3234
+ readonly EXTERNAL: "EXTERNAL";
3235
+ readonly FARGATE: "FARGATE";
3236
+ };
3136
3237
  /**
3137
3238
  * @public
3138
3239
  */
3139
- export declare enum ContainerCondition {
3140
- COMPLETE = "COMPLETE",
3141
- HEALTHY = "HEALTHY",
3142
- START = "START",
3143
- SUCCESS = "SUCCESS"
3144
- }
3240
+ export type Compatibility = (typeof Compatibility)[keyof typeof Compatibility];
3241
+ /**
3242
+ * @public
3243
+ * @enum
3244
+ */
3245
+ export declare const ContainerCondition: {
3246
+ readonly COMPLETE: "COMPLETE";
3247
+ readonly HEALTHY: "HEALTHY";
3248
+ readonly START: "START";
3249
+ readonly SUCCESS: "SUCCESS";
3250
+ };
3251
+ /**
3252
+ * @public
3253
+ */
3254
+ export type ContainerCondition = (typeof ContainerCondition)[keyof typeof ContainerCondition];
3145
3255
  /**
3146
3256
  * @public
3147
3257
  * <p>The dependencies defined for container startup and shutdown. A container can contain
@@ -3212,10 +3322,15 @@ export interface ContainerDependency {
3212
3322
  }
3213
3323
  /**
3214
3324
  * @public
3325
+ * @enum
3215
3326
  */
3216
- export declare enum EnvironmentFileType {
3217
- S3 = "s3"
3218
- }
3327
+ export declare const EnvironmentFileType: {
3328
+ readonly S3: "s3";
3329
+ };
3330
+ /**
3331
+ * @public
3332
+ */
3333
+ export type EnvironmentFileType = (typeof EnvironmentFileType)[keyof typeof EnvironmentFileType];
3219
3334
  /**
3220
3335
  * @public
3221
3336
  * <p>A list of files containing the environment variables to pass to a container. You can
@@ -3270,11 +3385,16 @@ export interface HostEntry {
3270
3385
  }
3271
3386
  /**
3272
3387
  * @public
3388
+ * @enum
3273
3389
  */
3274
- export declare enum FirelensConfigurationType {
3275
- FLUENTBIT = "fluentbit",
3276
- FLUENTD = "fluentd"
3277
- }
3390
+ export declare const FirelensConfigurationType: {
3391
+ readonly FLUENTBIT: "fluentbit";
3392
+ readonly FLUENTD: "fluentd";
3393
+ };
3394
+ /**
3395
+ * @public
3396
+ */
3397
+ export type FirelensConfigurationType = (typeof FirelensConfigurationType)[keyof typeof FirelensConfigurationType];
3278
3398
  /**
3279
3399
  * @public
3280
3400
  * <p>The FireLens configuration for the container. This is used to specify and configure a
@@ -3486,12 +3606,17 @@ export interface KernelCapabilities {
3486
3606
  }
3487
3607
  /**
3488
3608
  * @public
3609
+ * @enum
3489
3610
  */
3490
- export declare enum DeviceCgroupPermission {
3491
- MKNOD = "mknod",
3492
- READ = "read",
3493
- WRITE = "write"
3494
- }
3611
+ export declare const DeviceCgroupPermission: {
3612
+ readonly MKNOD: "mknod";
3613
+ readonly READ: "read";
3614
+ readonly WRITE: "write";
3615
+ };
3616
+ /**
3617
+ * @public
3618
+ */
3619
+ export type DeviceCgroupPermission = (typeof DeviceCgroupPermission)[keyof typeof DeviceCgroupPermission];
3495
3620
  /**
3496
3621
  * @public
3497
3622
  * <p>An object representing a container instance host device.</p>
@@ -3642,19 +3767,29 @@ export interface MountPoint {
3642
3767
  }
3643
3768
  /**
3644
3769
  * @public
3770
+ * @enum
3645
3771
  */
3646
- export declare enum ApplicationProtocol {
3647
- GRPC = "grpc",
3648
- HTTP = "http",
3649
- HTTP2 = "http2"
3650
- }
3772
+ export declare const ApplicationProtocol: {
3773
+ readonly GRPC: "grpc";
3774
+ readonly HTTP: "http";
3775
+ readonly HTTP2: "http2";
3776
+ };
3651
3777
  /**
3652
3778
  * @public
3653
3779
  */
3654
- export declare enum TransportProtocol {
3655
- TCP = "tcp",
3656
- UDP = "udp"
3657
- }
3780
+ export type ApplicationProtocol = (typeof ApplicationProtocol)[keyof typeof ApplicationProtocol];
3781
+ /**
3782
+ * @public
3783
+ * @enum
3784
+ */
3785
+ export declare const TransportProtocol: {
3786
+ readonly TCP: "tcp";
3787
+ readonly UDP: "udp";
3788
+ };
3789
+ /**
3790
+ * @public
3791
+ */
3792
+ export type TransportProtocol = (typeof TransportProtocol)[keyof typeof TransportProtocol];
3658
3793
  /**
3659
3794
  * @public
3660
3795
  * <p>Port mappings allow containers to access ports on the host container instance to send
@@ -3838,11 +3973,16 @@ export interface RepositoryCredentials {
3838
3973
  }
3839
3974
  /**
3840
3975
  * @public
3976
+ * @enum
3841
3977
  */
3842
- export declare enum ResourceType {
3843
- GPU = "GPU",
3844
- INFERENCE_ACCELERATOR = "InferenceAccelerator"
3845
- }
3978
+ export declare const ResourceType: {
3979
+ readonly GPU: "GPU";
3980
+ readonly INFERENCE_ACCELERATOR: "InferenceAccelerator";
3981
+ };
3982
+ /**
3983
+ * @public
3984
+ */
3985
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
3846
3986
  /**
3847
3987
  * @public
3848
3988
  * <p>The type and amount of a resource to assign to a container. The supported resource
@@ -3907,24 +4047,29 @@ export interface SystemControl {
3907
4047
  }
3908
4048
  /**
3909
4049
  * @public
4050
+ * @enum
3910
4051
  */
3911
- export declare enum UlimitName {
3912
- CORE = "core",
3913
- CPU = "cpu",
3914
- DATA = "data",
3915
- FSIZE = "fsize",
3916
- LOCKS = "locks",
3917
- MEMLOCK = "memlock",
3918
- MSGQUEUE = "msgqueue",
3919
- NICE = "nice",
3920
- NOFILE = "nofile",
3921
- NPROC = "nproc",
3922
- RSS = "rss",
3923
- RTPRIO = "rtprio",
3924
- RTTIME = "rttime",
3925
- SIGPENDING = "sigpending",
3926
- STACK = "stack"
3927
- }
4052
+ export declare const UlimitName: {
4053
+ readonly CORE: "core";
4054
+ readonly CPU: "cpu";
4055
+ readonly DATA: "data";
4056
+ readonly FSIZE: "fsize";
4057
+ readonly LOCKS: "locks";
4058
+ readonly MEMLOCK: "memlock";
4059
+ readonly MSGQUEUE: "msgqueue";
4060
+ readonly NICE: "nice";
4061
+ readonly NOFILE: "nofile";
4062
+ readonly NPROC: "nproc";
4063
+ readonly RSS: "rss";
4064
+ readonly RTPRIO: "rtprio";
4065
+ readonly RTTIME: "rttime";
4066
+ readonly SIGPENDING: "sigpending";
4067
+ readonly STACK: "stack";
4068
+ };
4069
+ /**
4070
+ * @public
4071
+ */
4072
+ export type UlimitName = (typeof UlimitName)[keyof typeof UlimitName];
3928
4073
  /**
3929
4074
  * @public
3930
4075
  * <p>The <code>ulimit</code> settings to pass to the container.</p>
@@ -4648,34 +4793,54 @@ export interface InferenceAccelerator {
4648
4793
  }
4649
4794
  /**
4650
4795
  * @public
4796
+ * @enum
4651
4797
  */
4652
- export declare enum IpcMode {
4653
- HOST = "host",
4654
- NONE = "none",
4655
- TASK = "task"
4656
- }
4798
+ export declare const IpcMode: {
4799
+ readonly HOST: "host";
4800
+ readonly NONE: "none";
4801
+ readonly TASK: "task";
4802
+ };
4657
4803
  /**
4658
4804
  * @public
4659
4805
  */
4660
- export declare enum NetworkMode {
4661
- AWSVPC = "awsvpc",
4662
- BRIDGE = "bridge",
4663
- HOST = "host",
4664
- NONE = "none"
4665
- }
4806
+ export type IpcMode = (typeof IpcMode)[keyof typeof IpcMode];
4666
4807
  /**
4667
4808
  * @public
4809
+ * @enum
4668
4810
  */
4669
- export declare enum PidMode {
4670
- HOST = "host",
4671
- TASK = "task"
4672
- }
4811
+ export declare const NetworkMode: {
4812
+ readonly AWSVPC: "awsvpc";
4813
+ readonly BRIDGE: "bridge";
4814
+ readonly HOST: "host";
4815
+ readonly NONE: "none";
4816
+ };
4673
4817
  /**
4674
4818
  * @public
4675
4819
  */
4676
- export declare enum TaskDefinitionPlacementConstraintType {
4677
- MEMBER_OF = "memberOf"
4678
- }
4820
+ export type NetworkMode = (typeof NetworkMode)[keyof typeof NetworkMode];
4821
+ /**
4822
+ * @public
4823
+ * @enum
4824
+ */
4825
+ export declare const PidMode: {
4826
+ readonly HOST: "host";
4827
+ readonly TASK: "task";
4828
+ };
4829
+ /**
4830
+ * @public
4831
+ */
4832
+ export type PidMode = (typeof PidMode)[keyof typeof PidMode];
4833
+ /**
4834
+ * @public
4835
+ * @enum
4836
+ */
4837
+ export declare const TaskDefinitionPlacementConstraintType: {
4838
+ readonly MEMBER_OF: "memberOf";
4839
+ };
4840
+ /**
4841
+ * @public
4842
+ */
4843
+ export type TaskDefinitionPlacementConstraintType = (typeof TaskDefinitionPlacementConstraintType)[keyof typeof TaskDefinitionPlacementConstraintType];
4679
4844
  /**
4680
4845
  * @public
4681
4846
  * <p>An object representing a constraint on task placement in the task definition. For more
@@ -4699,10 +4864,15 @@ export interface TaskDefinitionPlacementConstraint {
4699
4864
  }
4700
4865
  /**
4701
4866
  * @public
4867
+ * @enum
4702
4868
  */
4703
- export declare enum ProxyConfigurationType {
4704
- APPMESH = "APPMESH"
4705
- }
4869
+ export declare const ProxyConfigurationType: {
4870
+ readonly APPMESH: "APPMESH";
4871
+ };
4872
+ /**
4873
+ * @public
4874
+ */
4875
+ export type ProxyConfigurationType = (typeof ProxyConfigurationType)[keyof typeof ProxyConfigurationType];
4706
4876
  /**
4707
4877
  * @public
4708
4878
  * <p>The configuration details for the App Mesh proxy.</p>
@@ -4775,24 +4945,34 @@ export interface ProxyConfiguration {
4775
4945
  }
4776
4946
  /**
4777
4947
  * @public
4948
+ * @enum
4778
4949
  */
4779
- export declare enum CPUArchitecture {
4780
- ARM64 = "ARM64",
4781
- X86_64 = "X86_64"
4782
- }
4950
+ export declare const CPUArchitecture: {
4951
+ readonly ARM64: "ARM64";
4952
+ readonly X86_64: "X86_64";
4953
+ };
4783
4954
  /**
4784
4955
  * @public
4785
4956
  */
4786
- export declare enum OSFamily {
4787
- LINUX = "LINUX",
4788
- WINDOWS_SERVER_2004_CORE = "WINDOWS_SERVER_2004_CORE",
4789
- WINDOWS_SERVER_2016_FULL = "WINDOWS_SERVER_2016_FULL",
4790
- WINDOWS_SERVER_2019_CORE = "WINDOWS_SERVER_2019_CORE",
4791
- WINDOWS_SERVER_2019_FULL = "WINDOWS_SERVER_2019_FULL",
4792
- WINDOWS_SERVER_2022_CORE = "WINDOWS_SERVER_2022_CORE",
4793
- WINDOWS_SERVER_2022_FULL = "WINDOWS_SERVER_2022_FULL",
4794
- WINDOWS_SERVER_20H2_CORE = "WINDOWS_SERVER_20H2_CORE"
4795
- }
4957
+ export type CPUArchitecture = (typeof CPUArchitecture)[keyof typeof CPUArchitecture];
4958
+ /**
4959
+ * @public
4960
+ * @enum
4961
+ */
4962
+ export declare const OSFamily: {
4963
+ readonly LINUX: "LINUX";
4964
+ readonly WINDOWS_SERVER_2004_CORE: "WINDOWS_SERVER_2004_CORE";
4965
+ readonly WINDOWS_SERVER_2016_FULL: "WINDOWS_SERVER_2016_FULL";
4966
+ readonly WINDOWS_SERVER_2019_CORE: "WINDOWS_SERVER_2019_CORE";
4967
+ readonly WINDOWS_SERVER_2019_FULL: "WINDOWS_SERVER_2019_FULL";
4968
+ readonly WINDOWS_SERVER_2022_CORE: "WINDOWS_SERVER_2022_CORE";
4969
+ readonly WINDOWS_SERVER_2022_FULL: "WINDOWS_SERVER_2022_FULL";
4970
+ readonly WINDOWS_SERVER_20H2_CORE: "WINDOWS_SERVER_20H2_CORE";
4971
+ };
4972
+ /**
4973
+ * @public
4974
+ */
4975
+ export type OSFamily = (typeof OSFamily)[keyof typeof OSFamily];
4796
4976
  /**
4797
4977
  * @public
4798
4978
  * <p>Information about the platform for the Amazon ECS service or task.</p>
@@ -4813,19 +4993,29 @@ export interface RuntimePlatform {
4813
4993
  }
4814
4994
  /**
4815
4995
  * @public
4996
+ * @enum
4816
4997
  */
4817
- export declare enum TaskDefinitionStatus {
4818
- ACTIVE = "ACTIVE",
4819
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
4820
- INACTIVE = "INACTIVE"
4821
- }
4998
+ export declare const TaskDefinitionStatus: {
4999
+ readonly ACTIVE: "ACTIVE";
5000
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
5001
+ readonly INACTIVE: "INACTIVE";
5002
+ };
4822
5003
  /**
4823
5004
  * @public
4824
5005
  */
4825
- export declare enum Scope {
4826
- SHARED = "shared",
4827
- TASK = "task"
4828
- }
5006
+ export type TaskDefinitionStatus = (typeof TaskDefinitionStatus)[keyof typeof TaskDefinitionStatus];
5007
+ /**
5008
+ * @public
5009
+ * @enum
5010
+ */
5011
+ export declare const Scope: {
5012
+ readonly SHARED: "shared";
5013
+ readonly TASK: "task";
5014
+ };
5015
+ /**
5016
+ * @public
5017
+ */
5018
+ export type Scope = (typeof Scope)[keyof typeof Scope];
4829
5019
  /**
4830
5020
  * @public
4831
5021
  * <p>This parameter is specified when you're using Docker volumes. Docker volumes are only
@@ -4878,11 +5068,16 @@ export interface DockerVolumeConfiguration {
4878
5068
  }
4879
5069
  /**
4880
5070
  * @public
5071
+ * @enum
4881
5072
  */
4882
- export declare enum EFSAuthorizationConfigIAM {
4883
- DISABLED = "DISABLED",
4884
- ENABLED = "ENABLED"
4885
- }
5073
+ export declare const EFSAuthorizationConfigIAM: {
5074
+ readonly DISABLED: "DISABLED";
5075
+ readonly ENABLED: "ENABLED";
5076
+ };
5077
+ /**
5078
+ * @public
5079
+ */
5080
+ export type EFSAuthorizationConfigIAM = (typeof EFSAuthorizationConfigIAM)[keyof typeof EFSAuthorizationConfigIAM];
4886
5081
  /**
4887
5082
  * @public
4888
5083
  * <p>The authorization configuration details for the Amazon EFS file system.</p>
@@ -4908,11 +5103,16 @@ export interface EFSAuthorizationConfig {
4908
5103
  }
4909
5104
  /**
4910
5105
  * @public
5106
+ * @enum
4911
5107
  */
4912
- export declare enum EFSTransitEncryption {
4913
- DISABLED = "DISABLED",
4914
- ENABLED = "ENABLED"
4915
- }
5108
+ export declare const EFSTransitEncryption: {
5109
+ readonly DISABLED: "DISABLED";
5110
+ readonly ENABLED: "ENABLED";
5111
+ };
5112
+ /**
5113
+ * @public
5114
+ */
5115
+ export type EFSTransitEncryption = (typeof EFSTransitEncryption)[keyof typeof EFSTransitEncryption];
4916
5116
  /**
4917
5117
  * @public
4918
5118
  * <p>This parameter is specified when you're using an Amazon Elastic File System file system for task
@@ -5449,19 +5649,29 @@ export interface DeregisterContainerInstanceRequest {
5449
5649
  }
5450
5650
  /**
5451
5651
  * @public
5652
+ * @enum
5452
5653
  */
5453
- export declare enum InstanceHealthCheckState {
5454
- IMPAIRED = "IMPAIRED",
5455
- INITIALIZING = "INITIALIZING",
5456
- INSUFFICIENT_DATA = "INSUFFICIENT_DATA",
5457
- OK = "OK"
5458
- }
5654
+ export declare const InstanceHealthCheckState: {
5655
+ readonly IMPAIRED: "IMPAIRED";
5656
+ readonly INITIALIZING: "INITIALIZING";
5657
+ readonly INSUFFICIENT_DATA: "INSUFFICIENT_DATA";
5658
+ readonly OK: "OK";
5659
+ };
5459
5660
  /**
5460
5661
  * @public
5461
5662
  */
5462
- export declare enum InstanceHealthCheckType {
5463
- CONTAINER_RUNTIME = "CONTAINER_RUNTIME"
5464
- }
5663
+ export type InstanceHealthCheckState = (typeof InstanceHealthCheckState)[keyof typeof InstanceHealthCheckState];
5664
+ /**
5665
+ * @public
5666
+ * @enum
5667
+ */
5668
+ export declare const InstanceHealthCheckType: {
5669
+ readonly CONTAINER_RUNTIME: "CONTAINER_RUNTIME";
5670
+ };
5671
+ /**
5672
+ * @public
5673
+ */
5674
+ export type InstanceHealthCheckType = (typeof InstanceHealthCheckType)[keyof typeof InstanceHealthCheckType];
5465
5675
  /**
5466
5676
  * @public
5467
5677
  * <p>An object representing the result of a container instance health status check.</p>
@@ -5742,10 +5952,15 @@ export interface DeregisterTaskDefinitionResponse {
5742
5952
  }
5743
5953
  /**
5744
5954
  * @public
5955
+ * @enum
5745
5956
  */
5746
- export declare enum CapacityProviderField {
5747
- TAGS = "TAGS"
5748
- }
5957
+ export declare const CapacityProviderField: {
5958
+ readonly TAGS: "TAGS";
5959
+ };
5960
+ /**
5961
+ * @public
5962
+ */
5963
+ export type CapacityProviderField = (typeof CapacityProviderField)[keyof typeof CapacityProviderField];
5749
5964
  /**
5750
5965
  * @public
5751
5966
  */
@@ -5810,14 +6025,19 @@ export interface DescribeCapacityProvidersResponse {
5810
6025
  }
5811
6026
  /**
5812
6027
  * @public
6028
+ * @enum
5813
6029
  */
5814
- export declare enum ClusterField {
5815
- ATTACHMENTS = "ATTACHMENTS",
5816
- CONFIGURATIONS = "CONFIGURATIONS",
5817
- SETTINGS = "SETTINGS",
5818
- STATISTICS = "STATISTICS",
5819
- TAGS = "TAGS"
5820
- }
6030
+ export declare const ClusterField: {
6031
+ readonly ATTACHMENTS: "ATTACHMENTS";
6032
+ readonly CONFIGURATIONS: "CONFIGURATIONS";
6033
+ readonly SETTINGS: "SETTINGS";
6034
+ readonly STATISTICS: "STATISTICS";
6035
+ readonly TAGS: "TAGS";
6036
+ };
6037
+ /**
6038
+ * @public
6039
+ */
6040
+ export type ClusterField = (typeof ClusterField)[keyof typeof ClusterField];
5821
6041
  /**
5822
6042
  * @public
5823
6043
  */
@@ -5858,11 +6078,16 @@ export interface DescribeClustersResponse {
5858
6078
  }
5859
6079
  /**
5860
6080
  * @public
6081
+ * @enum
5861
6082
  */
5862
- export declare enum ContainerInstanceField {
5863
- CONTAINER_INSTANCE_HEALTH = "CONTAINER_INSTANCE_HEALTH",
5864
- TAGS = "TAGS"
5865
- }
6083
+ export declare const ContainerInstanceField: {
6084
+ readonly CONTAINER_INSTANCE_HEALTH: "CONTAINER_INSTANCE_HEALTH";
6085
+ readonly TAGS: "TAGS";
6086
+ };
6087
+ /**
6088
+ * @public
6089
+ */
6090
+ export type ContainerInstanceField = (typeof ContainerInstanceField)[keyof typeof ContainerInstanceField];
5866
6091
  /**
5867
6092
  * @public
5868
6093
  */
@@ -5902,10 +6127,15 @@ export interface DescribeContainerInstancesResponse {
5902
6127
  }
5903
6128
  /**
5904
6129
  * @public
6130
+ * @enum
5905
6131
  */
5906
- export declare enum ServiceField {
5907
- TAGS = "TAGS"
5908
- }
6132
+ export declare const ServiceField: {
6133
+ readonly TAGS: "TAGS";
6134
+ };
6135
+ /**
6136
+ * @public
6137
+ */
6138
+ export type ServiceField = (typeof ServiceField)[keyof typeof ServiceField];
5909
6139
  /**
5910
6140
  * @public
5911
6141
  */
@@ -5943,10 +6173,15 @@ export interface DescribeServicesResponse {
5943
6173
  }
5944
6174
  /**
5945
6175
  * @public
6176
+ * @enum
5946
6177
  */
5947
- export declare enum TaskDefinitionField {
5948
- TAGS = "TAGS"
5949
- }
6178
+ export declare const TaskDefinitionField: {
6179
+ readonly TAGS: "TAGS";
6180
+ };
6181
+ /**
6182
+ * @public
6183
+ */
6184
+ export type TaskDefinitionField = (typeof TaskDefinitionField)[keyof typeof TaskDefinitionField];
5950
6185
  /**
5951
6186
  * @public
5952
6187
  */
@@ -6012,10 +6247,15 @@ export interface DescribeTaskDefinitionResponse {
6012
6247
  }
6013
6248
  /**
6014
6249
  * @public
6250
+ * @enum
6015
6251
  */
6016
- export declare enum TaskField {
6017
- TAGS = "TAGS"
6018
- }
6252
+ export declare const TaskField: {
6253
+ readonly TAGS: "TAGS";
6254
+ };
6255
+ /**
6256
+ * @public
6257
+ */
6258
+ export type TaskField = (typeof TaskField)[keyof typeof TaskField];
6019
6259
  /**
6020
6260
  * @public
6021
6261
  */
@@ -6039,25 +6279,40 @@ export interface DescribeTasksRequest {
6039
6279
  }
6040
6280
  /**
6041
6281
  * @public
6282
+ * @enum
6042
6283
  */
6043
- export declare enum Connectivity {
6044
- CONNECTED = "CONNECTED",
6045
- DISCONNECTED = "DISCONNECTED"
6046
- }
6284
+ export declare const Connectivity: {
6285
+ readonly CONNECTED: "CONNECTED";
6286
+ readonly DISCONNECTED: "DISCONNECTED";
6287
+ };
6047
6288
  /**
6048
6289
  * @public
6049
6290
  */
6050
- export declare enum HealthStatus {
6051
- HEALTHY = "HEALTHY",
6052
- UNHEALTHY = "UNHEALTHY",
6053
- UNKNOWN = "UNKNOWN"
6054
- }
6291
+ export type Connectivity = (typeof Connectivity)[keyof typeof Connectivity];
6055
6292
  /**
6056
6293
  * @public
6294
+ * @enum
6057
6295
  */
6058
- export declare enum ManagedAgentName {
6059
- ExecuteCommandAgent = "ExecuteCommandAgent"
6060
- }
6296
+ export declare const HealthStatus: {
6297
+ readonly HEALTHY: "HEALTHY";
6298
+ readonly UNHEALTHY: "UNHEALTHY";
6299
+ readonly UNKNOWN: "UNKNOWN";
6300
+ };
6301
+ /**
6302
+ * @public
6303
+ */
6304
+ export type HealthStatus = (typeof HealthStatus)[keyof typeof HealthStatus];
6305
+ /**
6306
+ * @public
6307
+ * @enum
6308
+ */
6309
+ export declare const ManagedAgentName: {
6310
+ readonly ExecuteCommandAgent: "ExecuteCommandAgent";
6311
+ };
6312
+ /**
6313
+ * @public
6314
+ */
6315
+ export type ManagedAgentName = (typeof ManagedAgentName)[keyof typeof ManagedAgentName];
6061
6316
  /**
6062
6317
  * @public
6063
6318
  * <p>Details about the managed agent status for the container.</p>
@@ -6398,15 +6653,20 @@ export interface TaskOverride {
6398
6653
  }
6399
6654
  /**
6400
6655
  * @public
6656
+ * @enum
6401
6657
  */
6402
- export declare enum TaskStopCode {
6403
- ESSENTIAL_CONTAINER_EXITED = "EssentialContainerExited",
6404
- SERVICE_SCHEDULER_INITIATED = "ServiceSchedulerInitiated",
6405
- SPOT_INTERRUPTION = "SpotInterruption",
6406
- TASK_FAILED_TO_START = "TaskFailedToStart",
6407
- TERMINATION_NOTICE = "TerminationNotice",
6408
- USER_INITIATED = "UserInitiated"
6409
- }
6658
+ export declare const TaskStopCode: {
6659
+ readonly ESSENTIAL_CONTAINER_EXITED: "EssentialContainerExited";
6660
+ readonly SERVICE_SCHEDULER_INITIATED: "ServiceSchedulerInitiated";
6661
+ readonly SPOT_INTERRUPTION: "SpotInterruption";
6662
+ readonly TASK_FAILED_TO_START: "TaskFailedToStart";
6663
+ readonly TERMINATION_NOTICE: "TerminationNotice";
6664
+ readonly USER_INITIATED: "UserInitiated";
6665
+ };
6666
+ /**
6667
+ * @public
6668
+ */
6669
+ export type TaskStopCode = (typeof TaskStopCode)[keyof typeof TaskStopCode];
6410
6670
  /**
6411
6671
  * @public
6412
6672
  * <p>Details on a task in a cluster.</p>
@@ -6751,10 +7011,15 @@ export interface DescribeTasksResponse {
6751
7011
  }
6752
7012
  /**
6753
7013
  * @public
7014
+ * @enum
6754
7015
  */
6755
- export declare enum TaskSetField {
6756
- TAGS = "TAGS"
6757
- }
7016
+ export declare const TaskSetField: {
7017
+ readonly TAGS: "TAGS";
7018
+ };
7019
+ /**
7020
+ * @public
7021
+ */
7022
+ export type TaskSetField = (typeof TaskSetField)[keyof typeof TaskSetField];
6758
7023
  /**
6759
7024
  * @public
6760
7025
  */
@@ -7190,14 +7455,19 @@ export interface ListClustersResponse {
7190
7455
  }
7191
7456
  /**
7192
7457
  * @public
7458
+ * @enum
7193
7459
  */
7194
- export declare enum ContainerInstanceStatus {
7195
- ACTIVE = "ACTIVE",
7196
- DEREGISTERING = "DEREGISTERING",
7197
- DRAINING = "DRAINING",
7198
- REGISTERING = "REGISTERING",
7199
- REGISTRATION_FAILED = "REGISTRATION_FAILED"
7200
- }
7460
+ export declare const ContainerInstanceStatus: {
7461
+ readonly ACTIVE: "ACTIVE";
7462
+ readonly DEREGISTERING: "DEREGISTERING";
7463
+ readonly DRAINING: "DRAINING";
7464
+ readonly REGISTERING: "REGISTERING";
7465
+ readonly REGISTRATION_FAILED: "REGISTRATION_FAILED";
7466
+ };
7467
+ /**
7468
+ * @public
7469
+ */
7470
+ export type ContainerInstanceStatus = (typeof ContainerInstanceStatus)[keyof typeof ContainerInstanceStatus];
7201
7471
  /**
7202
7472
  * @public
7203
7473
  */
@@ -7400,12 +7670,17 @@ export interface ListTagsForResourceResponse {
7400
7670
  }
7401
7671
  /**
7402
7672
  * @public
7673
+ * @enum
7403
7674
  */
7404
- export declare enum TaskDefinitionFamilyStatus {
7405
- ACTIVE = "ACTIVE",
7406
- ALL = "ALL",
7407
- INACTIVE = "INACTIVE"
7408
- }
7675
+ export declare const TaskDefinitionFamilyStatus: {
7676
+ readonly ACTIVE: "ACTIVE";
7677
+ readonly ALL: "ALL";
7678
+ readonly INACTIVE: "INACTIVE";
7679
+ };
7680
+ /**
7681
+ * @public
7682
+ */
7683
+ export type TaskDefinitionFamilyStatus = (typeof TaskDefinitionFamilyStatus)[keyof typeof TaskDefinitionFamilyStatus];
7409
7684
  /**
7410
7685
  * @public
7411
7686
  */
@@ -7475,11 +7750,16 @@ export interface ListTaskDefinitionFamiliesResponse {
7475
7750
  }
7476
7751
  /**
7477
7752
  * @public
7753
+ * @enum
7478
7754
  */
7479
- export declare enum SortOrder {
7480
- ASC = "ASC",
7481
- DESC = "DESC"
7482
- }
7755
+ export declare const SortOrder: {
7756
+ readonly ASC: "ASC";
7757
+ readonly DESC: "DESC";
7758
+ };
7759
+ /**
7760
+ * @public
7761
+ */
7762
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
7483
7763
  /**
7484
7764
  * @public
7485
7765
  */
@@ -7552,12 +7832,17 @@ export interface ListTaskDefinitionsResponse {
7552
7832
  }
7553
7833
  /**
7554
7834
  * @public
7835
+ * @enum
7555
7836
  */
7556
- export declare enum DesiredStatus {
7557
- PENDING = "PENDING",
7558
- RUNNING = "RUNNING",
7559
- STOPPED = "STOPPED"
7560
- }
7837
+ export declare const DesiredStatus: {
7838
+ readonly PENDING: "PENDING";
7839
+ readonly RUNNING: "RUNNING";
7840
+ readonly STOPPED: "STOPPED";
7841
+ };
7842
+ /**
7843
+ * @public
7844
+ */
7845
+ export type DesiredStatus = (typeof DesiredStatus)[keyof typeof DesiredStatus];
7561
7846
  /**
7562
7847
  * @public
7563
7848
  */
@@ -7830,10 +8115,15 @@ export declare class ResourceInUseException extends __BaseException {
7830
8115
  }
7831
8116
  /**
7832
8117
  * @public
8118
+ * @enum
7833
8119
  */
7834
- export declare enum PlatformDeviceType {
7835
- GPU = "GPU"
7836
- }
8120
+ export declare const PlatformDeviceType: {
8121
+ readonly GPU: "GPU";
8122
+ };
8123
+ /**
8124
+ * @public
8125
+ */
8126
+ export type PlatformDeviceType = (typeof PlatformDeviceType)[keyof typeof PlatformDeviceType];
7837
8127
  /**
7838
8128
  * @public
7839
8129
  * <p>The devices that are available on the container instance. The only supported device