@aws-sdk/client-ecs 3.899.0 → 3.900.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/dist-cjs/index.js +395 -65
  2. package/dist-es/models/models_0.js +111 -93
  3. package/dist-es/models/models_1.js +69 -0
  4. package/dist-es/protocols/Aws_json1_1.js +227 -14
  5. package/dist-types/commands/CreateCapacityProviderCommand.d.ts +188 -9
  6. package/dist-types/commands/CreateServiceCommand.d.ts +4 -4
  7. package/dist-types/commands/CreateTaskSetCommand.d.ts +2 -2
  8. package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +99 -2
  9. package/dist-types/commands/DeleteClusterCommand.d.ts +3 -0
  10. package/dist-types/commands/DeleteServiceCommand.d.ts +3 -3
  11. package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +2 -2
  12. package/dist-types/commands/DeleteTaskSetCommand.d.ts +1 -1
  13. package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +2 -2
  14. package/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +99 -2
  15. package/dist-types/commands/DescribeServiceRevisionsCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeServicesCommand.d.ts +3 -3
  17. package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +2 -2
  18. package/dist-types/commands/DescribeTaskSetsCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeTasksCommand.d.ts +1 -1
  20. package/dist-types/commands/ListServicesCommand.d.ts +1 -1
  21. package/dist-types/commands/ListTasksCommand.d.ts +1 -1
  22. package/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +1 -1
  23. package/dist-types/commands/PutAttributesCommand.d.ts +1 -1
  24. package/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +2 -1
  25. package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +1 -1
  26. package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +4 -4
  27. package/dist-types/commands/RunTaskCommand.d.ts +3 -3
  28. package/dist-types/commands/StartTaskCommand.d.ts +2 -2
  29. package/dist-types/commands/StopServiceDeploymentCommand.d.ts +1 -1
  30. package/dist-types/commands/StopTaskCommand.d.ts +2 -3
  31. package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +188 -2
  32. package/dist-types/commands/UpdateServiceCommand.d.ts +3 -3
  33. package/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +1 -1
  34. package/dist-types/commands/UpdateTaskSetCommand.d.ts +1 -1
  35. package/dist-types/models/models_0.d.ts +8064 -8888
  36. package/dist-types/models/models_1.d.ts +1487 -11
  37. package/dist-types/ts3.4/commands/PutAccountSettingDefaultCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/PutAttributesCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/PutClusterCapacityProvidersCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/RegisterContainerInstanceCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/RegisterTaskDefinitionCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/RunTaskCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/StartTaskCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/StopServiceDeploymentCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/StopTaskCommand.d.ts +1 -2
  46. package/dist-types/ts3.4/models/models_0.d.ts +217 -205
  47. package/dist-types/ts3.4/models/models_1.d.ts +233 -1
  48. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
- import { RunTaskRequest, RunTaskResponse } from "../models/models_0";
4
+ import { RunTaskRequest, RunTaskResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -103,7 +103,7 @@ declare const RunTaskCommand_base: {
103
103
  * enableECSManagedTags: true || false,
104
104
  * enableExecuteCommand: true || false,
105
105
  * group: "STRING_VALUE",
106
- * launchType: "EC2" || "FARGATE" || "EXTERNAL",
106
+ * launchType: "EC2" || "FARGATE" || "EXTERNAL" || "MANAGED_INSTANCES",
107
107
  * networkConfiguration: { // NetworkConfiguration
108
108
  * awsvpcConfiguration: { // AwsVpcConfiguration
109
109
  * subnets: [ // StringList // required
@@ -307,7 +307,7 @@ declare const RunTaskCommand_base: {
307
307
  * // },
308
308
  * // ],
309
309
  * // lastStatus: "STRING_VALUE",
310
- * // launchType: "EC2" || "FARGATE" || "EXTERNAL",
310
+ * // launchType: "EC2" || "FARGATE" || "EXTERNAL" || "MANAGED_INSTANCES",
311
311
  * // memory: "STRING_VALUE",
312
312
  * // overrides: { // TaskOverride
313
313
  * // containerOverrides: [ // ContainerOverrides
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
- import { StartTaskRequest, StartTaskResponse } from "../models/models_0";
4
+ import { StartTaskRequest, StartTaskResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -242,7 +242,7 @@ declare const StartTaskCommand_base: {
242
242
  * // },
243
243
  * // ],
244
244
  * // lastStatus: "STRING_VALUE",
245
- * // launchType: "EC2" || "FARGATE" || "EXTERNAL",
245
+ * // launchType: "EC2" || "FARGATE" || "EXTERNAL" || "MANAGED_INSTANCES",
246
246
  * // memory: "STRING_VALUE",
247
247
  * // overrides: { // TaskOverride
248
248
  * // containerOverrides: [ // ContainerOverrides
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
- import { StopServiceDeploymentRequest, StopServiceDeploymentResponse } from "../models/models_0";
4
+ import { StopServiceDeploymentRequest, StopServiceDeploymentResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
4
- import { StopTaskRequest } from "../models/models_0";
5
- import { StopTaskResponse } from "../models/models_1";
4
+ import { StopTaskRequest, StopTaskResponse } from "../models/models_1";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -147,7 +146,7 @@ declare const StopTaskCommand_base: {
147
146
  * // },
148
147
  * // ],
149
148
  * // lastStatus: "STRING_VALUE",
150
- * // launchType: "EC2" || "FARGATE" || "EXTERNAL",
149
+ * // launchType: "EC2" || "FARGATE" || "EXTERNAL" || "MANAGED_INSTANCES",
151
150
  * // memory: "STRING_VALUE",
152
151
  * // overrides: { // TaskOverride
153
152
  * // containerOverrides: [ // ContainerOverrides
@@ -28,6 +28,7 @@ declare const UpdateCapacityProviderCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Modifies the parameters for a capacity provider.</p>
31
+ * <p>These changes only apply to new Amazon ECS Managed Instances, or EC2 instances, not existing ones.</p>
31
32
  * @example
32
33
  * Use a bare-bones client and the command you need to make an API call.
33
34
  * ```javascript
@@ -38,6 +39,7 @@ declare const UpdateCapacityProviderCommand_base: {
38
39
  * const client = new ECSClient(config);
39
40
  * const input = { // UpdateCapacityProviderRequest
40
41
  * name: "STRING_VALUE", // required
42
+ * cluster: "STRING_VALUE",
41
43
  * autoScalingGroupProvider: { // AutoScalingGroupProviderUpdate
42
44
  * managedScaling: { // ManagedScaling
43
45
  * status: "ENABLED" || "DISABLED",
@@ -49,6 +51,94 @@ declare const UpdateCapacityProviderCommand_base: {
49
51
  * managedTerminationProtection: "ENABLED" || "DISABLED",
50
52
  * managedDraining: "ENABLED" || "DISABLED",
51
53
  * },
54
+ * managedInstancesProvider: { // UpdateManagedInstancesProviderConfiguration
55
+ * infrastructureRoleArn: "STRING_VALUE", // required
56
+ * instanceLaunchTemplate: { // InstanceLaunchTemplateUpdate
57
+ * ec2InstanceProfileArn: "STRING_VALUE",
58
+ * networkConfiguration: { // ManagedInstancesNetworkConfiguration
59
+ * subnets: [ // StringList
60
+ * "STRING_VALUE",
61
+ * ],
62
+ * securityGroups: [
63
+ * "STRING_VALUE",
64
+ * ],
65
+ * },
66
+ * storageConfiguration: { // ManagedInstancesStorageConfiguration
67
+ * storageSizeGiB: Number("int"),
68
+ * },
69
+ * monitoring: "BASIC" || "DETAILED",
70
+ * instanceRequirements: { // InstanceRequirementsRequest
71
+ * vCpuCount: { // VCpuCountRangeRequest
72
+ * min: Number("int"), // required
73
+ * max: Number("int"),
74
+ * },
75
+ * memoryMiB: { // MemoryMiBRequest
76
+ * min: Number("int"), // required
77
+ * max: Number("int"),
78
+ * },
79
+ * cpuManufacturers: [ // CpuManufacturerSet
80
+ * "intel" || "amd" || "amazon-web-services",
81
+ * ],
82
+ * memoryGiBPerVCpu: { // MemoryGiBPerVCpuRequest
83
+ * min: Number("double"),
84
+ * max: Number("double"),
85
+ * },
86
+ * excludedInstanceTypes: [ // ExcludedInstanceTypeSet
87
+ * "STRING_VALUE",
88
+ * ],
89
+ * instanceGenerations: [ // InstanceGenerationSet
90
+ * "current" || "previous",
91
+ * ],
92
+ * spotMaxPricePercentageOverLowestPrice: Number("int"),
93
+ * onDemandMaxPricePercentageOverLowestPrice: Number("int"),
94
+ * bareMetal: "included" || "required" || "excluded",
95
+ * burstablePerformance: "included" || "required" || "excluded",
96
+ * requireHibernateSupport: true || false,
97
+ * networkInterfaceCount: { // NetworkInterfaceCountRequest
98
+ * min: Number("int"),
99
+ * max: Number("int"),
100
+ * },
101
+ * localStorage: "included" || "required" || "excluded",
102
+ * localStorageTypes: [ // LocalStorageTypeSet
103
+ * "hdd" || "ssd",
104
+ * ],
105
+ * totalLocalStorageGB: { // TotalLocalStorageGBRequest
106
+ * min: Number("double"),
107
+ * max: Number("double"),
108
+ * },
109
+ * baselineEbsBandwidthMbps: { // BaselineEbsBandwidthMbpsRequest
110
+ * min: Number("int"),
111
+ * max: Number("int"),
112
+ * },
113
+ * acceleratorTypes: [ // AcceleratorTypeSet
114
+ * "gpu" || "fpga" || "inference",
115
+ * ],
116
+ * acceleratorCount: { // AcceleratorCountRequest
117
+ * min: Number("int"),
118
+ * max: Number("int"),
119
+ * },
120
+ * acceleratorManufacturers: [ // AcceleratorManufacturerSet
121
+ * "amazon-web-services" || "amd" || "nvidia" || "xilinx" || "habana",
122
+ * ],
123
+ * acceleratorNames: [ // AcceleratorNameSet
124
+ * "a100" || "inferentia" || "k520" || "k80" || "m60" || "radeon-pro-v520" || "t4" || "vu9p" || "v100" || "a10g" || "h100" || "t4g",
125
+ * ],
126
+ * acceleratorTotalMemoryMiB: { // AcceleratorTotalMemoryMiBRequest
127
+ * min: Number("int"),
128
+ * max: Number("int"),
129
+ * },
130
+ * networkBandwidthGbps: { // NetworkBandwidthGbpsRequest
131
+ * min: Number("double"),
132
+ * max: Number("double"),
133
+ * },
134
+ * allowedInstanceTypes: [ // AllowedInstanceTypeSet
135
+ * "STRING_VALUE",
136
+ * ],
137
+ * maxSpotPriceAsPercentageOfOptimalOnDemandPrice: Number("int"),
138
+ * },
139
+ * },
140
+ * propagateTags: "CAPACITY_PROVIDER" || "NONE",
141
+ * },
52
142
  * };
53
143
  * const command = new UpdateCapacityProviderCommand(input);
54
144
  * const response = await client.send(command);
@@ -56,7 +146,8 @@ declare const UpdateCapacityProviderCommand_base: {
56
146
  * // capacityProvider: { // CapacityProvider
57
147
  * // capacityProviderArn: "STRING_VALUE",
58
148
  * // name: "STRING_VALUE",
59
- * // status: "ACTIVE" || "INACTIVE",
149
+ * // cluster: "STRING_VALUE",
150
+ * // status: "PROVISIONING" || "ACTIVE" || "DEPROVISIONING" || "INACTIVE",
60
151
  * // autoScalingGroupProvider: { // AutoScalingGroupProvider
61
152
  * // autoScalingGroupArn: "STRING_VALUE", // required
62
153
  * // managedScaling: { // ManagedScaling
@@ -69,7 +160,95 @@ declare const UpdateCapacityProviderCommand_base: {
69
160
  * // managedTerminationProtection: "ENABLED" || "DISABLED",
70
161
  * // managedDraining: "ENABLED" || "DISABLED",
71
162
  * // },
72
- * // updateStatus: "DELETE_IN_PROGRESS" || "DELETE_COMPLETE" || "DELETE_FAILED" || "UPDATE_IN_PROGRESS" || "UPDATE_COMPLETE" || "UPDATE_FAILED",
163
+ * // managedInstancesProvider: { // ManagedInstancesProvider
164
+ * // infrastructureRoleArn: "STRING_VALUE",
165
+ * // instanceLaunchTemplate: { // InstanceLaunchTemplate
166
+ * // ec2InstanceProfileArn: "STRING_VALUE", // required
167
+ * // networkConfiguration: { // ManagedInstancesNetworkConfiguration
168
+ * // subnets: [ // StringList
169
+ * // "STRING_VALUE",
170
+ * // ],
171
+ * // securityGroups: [
172
+ * // "STRING_VALUE",
173
+ * // ],
174
+ * // },
175
+ * // storageConfiguration: { // ManagedInstancesStorageConfiguration
176
+ * // storageSizeGiB: Number("int"),
177
+ * // },
178
+ * // monitoring: "BASIC" || "DETAILED",
179
+ * // instanceRequirements: { // InstanceRequirementsRequest
180
+ * // vCpuCount: { // VCpuCountRangeRequest
181
+ * // min: Number("int"), // required
182
+ * // max: Number("int"),
183
+ * // },
184
+ * // memoryMiB: { // MemoryMiBRequest
185
+ * // min: Number("int"), // required
186
+ * // max: Number("int"),
187
+ * // },
188
+ * // cpuManufacturers: [ // CpuManufacturerSet
189
+ * // "intel" || "amd" || "amazon-web-services",
190
+ * // ],
191
+ * // memoryGiBPerVCpu: { // MemoryGiBPerVCpuRequest
192
+ * // min: Number("double"),
193
+ * // max: Number("double"),
194
+ * // },
195
+ * // excludedInstanceTypes: [ // ExcludedInstanceTypeSet
196
+ * // "STRING_VALUE",
197
+ * // ],
198
+ * // instanceGenerations: [ // InstanceGenerationSet
199
+ * // "current" || "previous",
200
+ * // ],
201
+ * // spotMaxPricePercentageOverLowestPrice: Number("int"),
202
+ * // onDemandMaxPricePercentageOverLowestPrice: Number("int"),
203
+ * // bareMetal: "included" || "required" || "excluded",
204
+ * // burstablePerformance: "included" || "required" || "excluded",
205
+ * // requireHibernateSupport: true || false,
206
+ * // networkInterfaceCount: { // NetworkInterfaceCountRequest
207
+ * // min: Number("int"),
208
+ * // max: Number("int"),
209
+ * // },
210
+ * // localStorage: "included" || "required" || "excluded",
211
+ * // localStorageTypes: [ // LocalStorageTypeSet
212
+ * // "hdd" || "ssd",
213
+ * // ],
214
+ * // totalLocalStorageGB: { // TotalLocalStorageGBRequest
215
+ * // min: Number("double"),
216
+ * // max: Number("double"),
217
+ * // },
218
+ * // baselineEbsBandwidthMbps: { // BaselineEbsBandwidthMbpsRequest
219
+ * // min: Number("int"),
220
+ * // max: Number("int"),
221
+ * // },
222
+ * // acceleratorTypes: [ // AcceleratorTypeSet
223
+ * // "gpu" || "fpga" || "inference",
224
+ * // ],
225
+ * // acceleratorCount: { // AcceleratorCountRequest
226
+ * // min: Number("int"),
227
+ * // max: Number("int"),
228
+ * // },
229
+ * // acceleratorManufacturers: [ // AcceleratorManufacturerSet
230
+ * // "amazon-web-services" || "amd" || "nvidia" || "xilinx" || "habana",
231
+ * // ],
232
+ * // acceleratorNames: [ // AcceleratorNameSet
233
+ * // "a100" || "inferentia" || "k520" || "k80" || "m60" || "radeon-pro-v520" || "t4" || "vu9p" || "v100" || "a10g" || "h100" || "t4g",
234
+ * // ],
235
+ * // acceleratorTotalMemoryMiB: { // AcceleratorTotalMemoryMiBRequest
236
+ * // min: Number("int"),
237
+ * // max: Number("int"),
238
+ * // },
239
+ * // networkBandwidthGbps: { // NetworkBandwidthGbpsRequest
240
+ * // min: Number("double"),
241
+ * // max: Number("double"),
242
+ * // },
243
+ * // allowedInstanceTypes: [ // AllowedInstanceTypeSet
244
+ * // "STRING_VALUE",
245
+ * // ],
246
+ * // maxSpotPriceAsPercentageOfOptimalOnDemandPrice: Number("int"),
247
+ * // },
248
+ * // },
249
+ * // propagateTags: "CAPACITY_PROVIDER" || "NONE",
250
+ * // },
251
+ * // updateStatus: "CREATE_IN_PROGRESS" || "CREATE_COMPLETE" || "CREATE_FAILED" || "DELETE_IN_PROGRESS" || "DELETE_COMPLETE" || "DELETE_FAILED" || "UPDATE_IN_PROGRESS" || "UPDATE_COMPLETE" || "UPDATE_FAILED",
73
252
  * // updateStatusReason: "STRING_VALUE",
74
253
  * // tags: [ // Tags
75
254
  * // { // Tag
@@ -77,6 +256,7 @@ declare const UpdateCapacityProviderCommand_base: {
77
256
  * // value: "STRING_VALUE",
78
257
  * // },
79
258
  * // ],
259
+ * // type: "EC2_AUTOSCALING" || "MANAGED_INSTANCES" || "FARGATE" || "FARGATE_SPOT",
80
260
  * // },
81
261
  * // };
82
262
  *
@@ -93,6 +273,9 @@ declare const UpdateCapacityProviderCommand_base: {
93
273
  * an action or resource on behalf of a user that doesn't have permissions to use the
94
274
  * action or resource. Or, it might be specifying an identifier that isn't valid.</p>
95
275
  *
276
+ * @throws {@link ClusterNotFoundException} (client fault)
277
+ * <p>The specified cluster wasn't found. You can view your available clusters with <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ListClusters.html">ListClusters</a>. Amazon ECS clusters are Region specific.</p>
278
+ *
96
279
  * @throws {@link InvalidParameterException} (client fault)
97
280
  * <p>The specified parameter isn't valid. Review the available parameters for the API
98
281
  * request.</p>
@@ -102,6 +285,9 @@ declare const UpdateCapacityProviderCommand_base: {
102
285
  * @throws {@link ServerException} (server fault)
103
286
  * <p>These errors are usually caused by a server issue.</p>
104
287
  *
288
+ * @throws {@link UnsupportedFeatureException} (client fault)
289
+ * <p>The specified task isn't supported in this Region.</p>
290
+ *
105
291
  * @throws {@link ECSServiceException}
106
292
  * <p>Base exception class for all service exceptions from ECS service.</p>
107
293
  *
@@ -364,7 +364,7 @@ declare const UpdateServiceCommand_base: {
364
364
  * // desiredCount: Number("int"),
365
365
  * // runningCount: Number("int"),
366
366
  * // pendingCount: Number("int"),
367
- * // launchType: "EC2" || "FARGATE" || "EXTERNAL",
367
+ * // launchType: "EC2" || "FARGATE" || "EXTERNAL" || "MANAGED_INSTANCES",
368
368
  * // capacityProviderStrategy: [ // CapacityProviderStrategy
369
369
  * // { // CapacityProviderStrategyItem
370
370
  * // capacityProvider: "STRING_VALUE", // required
@@ -417,7 +417,7 @@ declare const UpdateServiceCommand_base: {
417
417
  * // runningCount: Number("int"),
418
418
  * // createdAt: new Date("TIMESTAMP"),
419
419
  * // updatedAt: new Date("TIMESTAMP"),
420
- * // launchType: "EC2" || "FARGATE" || "EXTERNAL",
420
+ * // launchType: "EC2" || "FARGATE" || "EXTERNAL" || "MANAGED_INSTANCES",
421
421
  * // capacityProviderStrategy: [
422
422
  * // {
423
423
  * // capacityProvider: "STRING_VALUE", // required
@@ -495,7 +495,7 @@ declare const UpdateServiceCommand_base: {
495
495
  * // base: Number("int"),
496
496
  * // },
497
497
  * // ],
498
- * // launchType: "EC2" || "FARGATE" || "EXTERNAL",
498
+ * // launchType: "EC2" || "FARGATE" || "EXTERNAL" || "MANAGED_INSTANCES",
499
499
  * // platformVersion: "STRING_VALUE",
500
500
  * // platformFamily: "STRING_VALUE",
501
501
  * // networkConfiguration: {
@@ -62,7 +62,7 @@ declare const UpdateServicePrimaryTaskSetCommand_base: {
62
62
  * // runningCount: Number("int"),
63
63
  * // createdAt: new Date("TIMESTAMP"),
64
64
  * // updatedAt: new Date("TIMESTAMP"),
65
- * // launchType: "EC2" || "FARGATE" || "EXTERNAL",
65
+ * // launchType: "EC2" || "FARGATE" || "EXTERNAL" || "MANAGED_INSTANCES",
66
66
  * // capacityProviderStrategy: [ // CapacityProviderStrategy
67
67
  * // { // CapacityProviderStrategyItem
68
68
  * // capacityProvider: "STRING_VALUE", // required
@@ -64,7 +64,7 @@ declare const UpdateTaskSetCommand_base: {
64
64
  * // runningCount: Number("int"),
65
65
  * // createdAt: new Date("TIMESTAMP"),
66
66
  * // updatedAt: new Date("TIMESTAMP"),
67
- * // launchType: "EC2" || "FARGATE" || "EXTERNAL",
67
+ * // launchType: "EC2" || "FARGATE" || "EXTERNAL" || "MANAGED_INSTANCES",
68
68
  * // capacityProviderStrategy: [ // CapacityProviderStrategy
69
69
  * // { // CapacityProviderStrategyItem
70
70
  * // capacityProvider: "STRING_VALUE", // required