cdk-comprehend-s3olap 2.0.48 → 2.0.51
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/.jsii +5 -5
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +25 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +34 -3
- package/node_modules/aws-sdk/apis/chime-2018-05-01.min.json +116 -0
- package/node_modules/aws-sdk/apis/config-2014-11-12.min.json +67 -20
- package/node_modules/aws-sdk/apis/config-2014-11-12.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/detective-2018-10-26.min.json +213 -39
- package/node_modules/aws-sdk/apis/detective-2018-10-26.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/es-2015-01-01.min.json +3 -0
- package/node_modules/aws-sdk/apis/globalaccelerator-2018-08-08.min.json +70 -53
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +776 -162
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/lookoutvision-2020-11-20.min.json +35 -6
- package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +149 -6
- package/node_modules/aws-sdk/apis/macie2-2020-01-01.waiters2.json +25 -0
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +3 -1
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +3 -0
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +7 -1
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +717 -67
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.paginators.json +24 -0
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +104 -66
- package/node_modules/aws-sdk/clients/appsync.d.ts +41 -3
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +118 -118
- package/node_modules/aws-sdk/clients/chime.d.ts +135 -4
- package/node_modules/aws-sdk/clients/configservice.d.ts +66 -0
- package/node_modules/aws-sdk/clients/detective.d.ts +176 -4
- package/node_modules/aws-sdk/clients/ec2.d.ts +23 -23
- package/node_modules/aws-sdk/clients/es.d.ts +7 -3
- package/node_modules/aws-sdk/clients/globalaccelerator.d.ts +109 -85
- package/node_modules/aws-sdk/clients/guardduty.d.ts +604 -1
- package/node_modules/aws-sdk/clients/lookoutvision.d.ts +53 -9
- package/node_modules/aws-sdk/clients/macie2.d.ts +131 -9
- package/node_modules/aws-sdk/clients/macie2.js +1 -0
- package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +1 -1
- package/node_modules/aws-sdk/clients/opensearch.d.ts +7 -3
- package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
- package/node_modules/aws-sdk/clients/rds.d.ts +2 -2
- package/node_modules/aws-sdk/clients/rekognition.d.ts +12 -4
- package/node_modules/aws-sdk/clients/securityhub.d.ts +3 -3
- package/node_modules/aws-sdk/clients/ssm.d.ts +12 -12
- package/node_modules/aws-sdk/clients/transfer.d.ts +1000 -86
- package/node_modules/aws-sdk/clients/workspaces.d.ts +65 -5
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +575 -568
- package/node_modules/aws-sdk/dist/aws-sdk.js +82 -24
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +72 -72
- package/node_modules/aws-sdk/dist-tools/service-collector.js +4 -6
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.d.ts +5 -1
- package/node_modules/esbuild/lib/main.js +13 -7
- package/node_modules/esbuild/package.json +21 -21
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +8 -8
@@ -20,19 +20,19 @@ declare class AutoScaling extends Service {
|
|
20
20
|
*/
|
21
21
|
attachInstances(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
22
22
|
/**
|
23
|
-
* Attaches one or more target groups to the specified Auto Scaling group. This operation is used with the following load balancer types:
|
23
|
+
* Attaches one or more target groups to the specified Auto Scaling group. This operation is used with the following load balancer types: Application Load Balancer - Operates at the application layer (layer 7) and supports HTTP and HTTPS. Network Load Balancer - Operates at the transport layer (layer 4) and supports TCP, TLS, and UDP. Gateway Load Balancer - Operates at the network layer (layer 3). To describe the target groups for an Auto Scaling group, call the DescribeLoadBalancerTargetGroups API. To detach the target group from the Auto Scaling group, call the DetachLoadBalancerTargetGroups API. This operation is additive and does not detach existing target groups or Classic Load Balancers from the Auto Scaling group. For more information, see Use Elastic Load Balancing to distribute traffic across the instances in your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.
|
24
24
|
*/
|
25
25
|
attachLoadBalancerTargetGroups(params: AutoScaling.Types.AttachLoadBalancerTargetGroupsType, callback?: (err: AWSError, data: AutoScaling.Types.AttachLoadBalancerTargetGroupsResultType) => void): Request<AutoScaling.Types.AttachLoadBalancerTargetGroupsResultType, AWSError>;
|
26
26
|
/**
|
27
|
-
* Attaches one or more target groups to the specified Auto Scaling group. This operation is used with the following load balancer types:
|
27
|
+
* Attaches one or more target groups to the specified Auto Scaling group. This operation is used with the following load balancer types: Application Load Balancer - Operates at the application layer (layer 7) and supports HTTP and HTTPS. Network Load Balancer - Operates at the transport layer (layer 4) and supports TCP, TLS, and UDP. Gateway Load Balancer - Operates at the network layer (layer 3). To describe the target groups for an Auto Scaling group, call the DescribeLoadBalancerTargetGroups API. To detach the target group from the Auto Scaling group, call the DetachLoadBalancerTargetGroups API. This operation is additive and does not detach existing target groups or Classic Load Balancers from the Auto Scaling group. For more information, see Use Elastic Load Balancing to distribute traffic across the instances in your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.
|
28
28
|
*/
|
29
29
|
attachLoadBalancerTargetGroups(callback?: (err: AWSError, data: AutoScaling.Types.AttachLoadBalancerTargetGroupsResultType) => void): Request<AutoScaling.Types.AttachLoadBalancerTargetGroupsResultType, AWSError>;
|
30
30
|
/**
|
31
|
-
* To attach an Application Load Balancer, Network Load Balancer, or Gateway Load Balancer, use the AttachLoadBalancerTargetGroups API operation instead. Attaches one or more Classic Load Balancers to the specified Auto Scaling group. Amazon EC2 Auto Scaling registers the running instances with these Classic Load Balancers. To describe the load balancers for an Auto Scaling group, call the DescribeLoadBalancers API. To detach
|
31
|
+
* To attach an Application Load Balancer, Network Load Balancer, or Gateway Load Balancer, use the AttachLoadBalancerTargetGroups API operation instead. Attaches one or more Classic Load Balancers to the specified Auto Scaling group. Amazon EC2 Auto Scaling registers the running instances with these Classic Load Balancers. To describe the load balancers for an Auto Scaling group, call the DescribeLoadBalancers API. To detach a load balancer from the Auto Scaling group, call the DetachLoadBalancers API. This operation is additive and does not detach existing Classic Load Balancers or target groups from the Auto Scaling group. For more information, see Use Elastic Load Balancing to distribute traffic across the instances in your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.
|
32
32
|
*/
|
33
33
|
attachLoadBalancers(params: AutoScaling.Types.AttachLoadBalancersType, callback?: (err: AWSError, data: AutoScaling.Types.AttachLoadBalancersResultType) => void): Request<AutoScaling.Types.AttachLoadBalancersResultType, AWSError>;
|
34
34
|
/**
|
35
|
-
* To attach an Application Load Balancer, Network Load Balancer, or Gateway Load Balancer, use the AttachLoadBalancerTargetGroups API operation instead. Attaches one or more Classic Load Balancers to the specified Auto Scaling group. Amazon EC2 Auto Scaling registers the running instances with these Classic Load Balancers. To describe the load balancers for an Auto Scaling group, call the DescribeLoadBalancers API. To detach
|
35
|
+
* To attach an Application Load Balancer, Network Load Balancer, or Gateway Load Balancer, use the AttachLoadBalancerTargetGroups API operation instead. Attaches one or more Classic Load Balancers to the specified Auto Scaling group. Amazon EC2 Auto Scaling registers the running instances with these Classic Load Balancers. To describe the load balancers for an Auto Scaling group, call the DescribeLoadBalancers API. To detach a load balancer from the Auto Scaling group, call the DetachLoadBalancers API. This operation is additive and does not detach existing Classic Load Balancers or target groups from the Auto Scaling group. For more information, see Use Elastic Load Balancing to distribute traffic across the instances in your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.
|
36
36
|
*/
|
37
37
|
attachLoadBalancers(callback?: (err: AWSError, data: AutoScaling.Types.AttachLoadBalancersResultType) => void): Request<AutoScaling.Types.AttachLoadBalancersResultType, AWSError>;
|
38
38
|
/**
|
@@ -68,27 +68,27 @@ declare class AutoScaling extends Service {
|
|
68
68
|
*/
|
69
69
|
completeLifecycleAction(callback?: (err: AWSError, data: AutoScaling.Types.CompleteLifecycleActionAnswer) => void): Request<AutoScaling.Types.CompleteLifecycleActionAnswer, AWSError>;
|
70
70
|
/**
|
71
|
-
* We strongly recommend using a launch template when calling this operation to ensure full functionality for Amazon EC2 Auto Scaling and Amazon EC2. Creates an Auto Scaling group with the specified name and attributes. If you exceed your maximum limit of Auto Scaling groups, the call fails. To query this limit, call the DescribeAccountLimits API. For information about updating this limit, see Amazon EC2 Auto Scaling
|
71
|
+
* We strongly recommend using a launch template when calling this operation to ensure full functionality for Amazon EC2 Auto Scaling and Amazon EC2. Creates an Auto Scaling group with the specified name and attributes. If you exceed your maximum limit of Auto Scaling groups, the call fails. To query this limit, call the DescribeAccountLimits API. For information about updating this limit, see Quotas for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. For introductory exercises for creating an Auto Scaling group, see Getting started with Amazon EC2 Auto Scaling and Tutorial: Set up a scaled and load-balanced application in the Amazon EC2 Auto Scaling User Guide. For more information, see Auto Scaling groups in the Amazon EC2 Auto Scaling User Guide. Every Auto Scaling group has three size properties (DesiredCapacity, MaxSize, and MinSize). Usually, you set these sizes based on a specific number of instances. However, if you configure a mixed instances policy that defines weights for the instance types, you must specify these sizes with the same units that you use for weighting instances.
|
72
72
|
*/
|
73
73
|
createAutoScalingGroup(params: AutoScaling.Types.CreateAutoScalingGroupType, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
74
74
|
/**
|
75
|
-
* We strongly recommend using a launch template when calling this operation to ensure full functionality for Amazon EC2 Auto Scaling and Amazon EC2. Creates an Auto Scaling group with the specified name and attributes. If you exceed your maximum limit of Auto Scaling groups, the call fails. To query this limit, call the DescribeAccountLimits API. For information about updating this limit, see Amazon EC2 Auto Scaling
|
75
|
+
* We strongly recommend using a launch template when calling this operation to ensure full functionality for Amazon EC2 Auto Scaling and Amazon EC2. Creates an Auto Scaling group with the specified name and attributes. If you exceed your maximum limit of Auto Scaling groups, the call fails. To query this limit, call the DescribeAccountLimits API. For information about updating this limit, see Quotas for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. For introductory exercises for creating an Auto Scaling group, see Getting started with Amazon EC2 Auto Scaling and Tutorial: Set up a scaled and load-balanced application in the Amazon EC2 Auto Scaling User Guide. For more information, see Auto Scaling groups in the Amazon EC2 Auto Scaling User Guide. Every Auto Scaling group has three size properties (DesiredCapacity, MaxSize, and MinSize). Usually, you set these sizes based on a specific number of instances. However, if you configure a mixed instances policy that defines weights for the instance types, you must specify these sizes with the same units that you use for weighting instances.
|
76
76
|
*/
|
77
77
|
createAutoScalingGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
78
78
|
/**
|
79
|
-
* Creates a launch configuration. If you exceed your maximum limit of launch configurations, the call fails. To query this limit, call the DescribeAccountLimits API. For information about updating this limit, see Amazon EC2 Auto Scaling
|
79
|
+
* Creates a launch configuration. If you exceed your maximum limit of launch configurations, the call fails. To query this limit, call the DescribeAccountLimits API. For information about updating this limit, see Quotas for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. For more information, see Launch configurations in the Amazon EC2 Auto Scaling User Guide.
|
80
80
|
*/
|
81
81
|
createLaunchConfiguration(params: AutoScaling.Types.CreateLaunchConfigurationType, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
82
82
|
/**
|
83
|
-
* Creates a launch configuration. If you exceed your maximum limit of launch configurations, the call fails. To query this limit, call the DescribeAccountLimits API. For information about updating this limit, see Amazon EC2 Auto Scaling
|
83
|
+
* Creates a launch configuration. If you exceed your maximum limit of launch configurations, the call fails. To query this limit, call the DescribeAccountLimits API. For information about updating this limit, see Quotas for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. For more information, see Launch configurations in the Amazon EC2 Auto Scaling User Guide.
|
84
84
|
*/
|
85
85
|
createLaunchConfiguration(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
86
86
|
/**
|
87
|
-
* Creates or updates tags for the specified Auto Scaling group. When you specify a tag with a key that already exists, the operation overwrites the previous tag definition, and you do not get an error message. For more information, see
|
87
|
+
* Creates or updates tags for the specified Auto Scaling group. When you specify a tag with a key that already exists, the operation overwrites the previous tag definition, and you do not get an error message. For more information, see Tag Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.
|
88
88
|
*/
|
89
89
|
createOrUpdateTags(params: AutoScaling.Types.CreateOrUpdateTagsType, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
90
90
|
/**
|
91
|
-
* Creates or updates tags for the specified Auto Scaling group. When you specify a tag with a key that already exists, the operation overwrites the previous tag definition, and you do not get an error message. For more information, see
|
91
|
+
* Creates or updates tags for the specified Auto Scaling group. When you specify a tag with a key that already exists, the operation overwrites the previous tag definition, and you do not get an error message. For more information, see Tag Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.
|
92
92
|
*/
|
93
93
|
createOrUpdateTags(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
94
94
|
/**
|
@@ -156,7 +156,7 @@ declare class AutoScaling extends Service {
|
|
156
156
|
*/
|
157
157
|
deleteWarmPool(callback?: (err: AWSError, data: AutoScaling.Types.DeleteWarmPoolAnswer) => void): Request<AutoScaling.Types.DeleteWarmPoolAnswer, AWSError>;
|
158
158
|
/**
|
159
|
-
* Describes the current Amazon EC2 Auto Scaling resource quotas for your account. When you establish an Amazon Web Services account, the account has initial quotas on the maximum number of Auto Scaling groups and launch configurations that you can create in a given Region. For more information, see Amazon EC2 Auto Scaling
|
159
|
+
* Describes the current Amazon EC2 Auto Scaling resource quotas for your account. When you establish an Amazon Web Services account, the account has initial quotas on the maximum number of Auto Scaling groups and launch configurations that you can create in a given Region. For more information, see Quotas for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.
|
160
160
|
*/
|
161
161
|
describeAccountLimits(callback?: (err: AWSError, data: AutoScaling.Types.DescribeAccountLimitsAnswer) => void): Request<AutoScaling.Types.DescribeAccountLimitsAnswer, AWSError>;
|
162
162
|
/**
|
@@ -212,23 +212,23 @@ declare class AutoScaling extends Service {
|
|
212
212
|
*/
|
213
213
|
describeLifecycleHooks(callback?: (err: AWSError, data: AutoScaling.Types.DescribeLifecycleHooksAnswer) => void): Request<AutoScaling.Types.DescribeLifecycleHooksAnswer, AWSError>;
|
214
214
|
/**
|
215
|
-
* Gets information about the
|
215
|
+
* Gets information about the Elastic Load Balancing target groups for the specified Auto Scaling group. To determine the attachment status of the target group, use the State element in the response. When you attach a target group to an Auto Scaling group, the initial State value is Adding. The state transitions to Added after all Auto Scaling instances are registered with the target group. If Elastic Load Balancing health checks are enabled for the Auto Scaling group, the state transitions to InService after at least one Auto Scaling instance passes the health check. When the target group is in the InService state, Amazon EC2 Auto Scaling can terminate and replace any instances that are reported as unhealthy. If no registered instances pass the health checks, the target group doesn't enter the InService state. Target groups also have an InService state if you attach them in the CreateAutoScalingGroup API call. If your target group state is InService, but it is not working properly, check the scaling activities by calling DescribeScalingActivities and take any corrective actions necessary. For help with failed health checks, see Troubleshooting Amazon EC2 Auto Scaling: Health checks in the Amazon EC2 Auto Scaling User Guide. For more information, see Use Elastic Load Balancing to distribute traffic across the instances in your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.
|
216
216
|
*/
|
217
217
|
describeLoadBalancerTargetGroups(params: AutoScaling.Types.DescribeLoadBalancerTargetGroupsRequest, callback?: (err: AWSError, data: AutoScaling.Types.DescribeLoadBalancerTargetGroupsResponse) => void): Request<AutoScaling.Types.DescribeLoadBalancerTargetGroupsResponse, AWSError>;
|
218
218
|
/**
|
219
|
-
* Gets information about the
|
219
|
+
* Gets information about the Elastic Load Balancing target groups for the specified Auto Scaling group. To determine the attachment status of the target group, use the State element in the response. When you attach a target group to an Auto Scaling group, the initial State value is Adding. The state transitions to Added after all Auto Scaling instances are registered with the target group. If Elastic Load Balancing health checks are enabled for the Auto Scaling group, the state transitions to InService after at least one Auto Scaling instance passes the health check. When the target group is in the InService state, Amazon EC2 Auto Scaling can terminate and replace any instances that are reported as unhealthy. If no registered instances pass the health checks, the target group doesn't enter the InService state. Target groups also have an InService state if you attach them in the CreateAutoScalingGroup API call. If your target group state is InService, but it is not working properly, check the scaling activities by calling DescribeScalingActivities and take any corrective actions necessary. For help with failed health checks, see Troubleshooting Amazon EC2 Auto Scaling: Health checks in the Amazon EC2 Auto Scaling User Guide. For more information, see Use Elastic Load Balancing to distribute traffic across the instances in your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.
|
220
220
|
*/
|
221
221
|
describeLoadBalancerTargetGroups(callback?: (err: AWSError, data: AutoScaling.Types.DescribeLoadBalancerTargetGroupsResponse) => void): Request<AutoScaling.Types.DescribeLoadBalancerTargetGroupsResponse, AWSError>;
|
222
222
|
/**
|
223
|
-
* Gets information about the load balancers for the specified Auto Scaling group. This operation describes only Classic Load Balancers. If you have Application Load Balancers, Network Load Balancers, or Gateway Load
|
223
|
+
* Gets information about the load balancers for the specified Auto Scaling group. This operation describes only Classic Load Balancers. If you have Application Load Balancers, Network Load Balancers, or Gateway Load Balancer, use the DescribeLoadBalancerTargetGroups API instead. To determine the attachment status of the load balancer, use the State element in the response. When you attach a load balancer to an Auto Scaling group, the initial State value is Adding. The state transitions to Added after all Auto Scaling instances are registered with the load balancer. If Elastic Load Balancing health checks are enabled for the Auto Scaling group, the state transitions to InService after at least one Auto Scaling instance passes the health check. When the load balancer is in the InService state, Amazon EC2 Auto Scaling can terminate and replace any instances that are reported as unhealthy. If no registered instances pass the health checks, the load balancer doesn't enter the InService state. Load balancers also have an InService state if you attach them in the CreateAutoScalingGroup API call. If your load balancer state is InService, but it is not working properly, check the scaling activities by calling DescribeScalingActivities and take any corrective actions necessary. For help with failed health checks, see Troubleshooting Amazon EC2 Auto Scaling: Health checks in the Amazon EC2 Auto Scaling User Guide. For more information, see Use Elastic Load Balancing to distribute traffic across the instances in your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.
|
224
224
|
*/
|
225
225
|
describeLoadBalancers(params: AutoScaling.Types.DescribeLoadBalancersRequest, callback?: (err: AWSError, data: AutoScaling.Types.DescribeLoadBalancersResponse) => void): Request<AutoScaling.Types.DescribeLoadBalancersResponse, AWSError>;
|
226
226
|
/**
|
227
|
-
* Gets information about the load balancers for the specified Auto Scaling group. This operation describes only Classic Load Balancers. If you have Application Load Balancers, Network Load Balancers, or Gateway Load
|
227
|
+
* Gets information about the load balancers for the specified Auto Scaling group. This operation describes only Classic Load Balancers. If you have Application Load Balancers, Network Load Balancers, or Gateway Load Balancer, use the DescribeLoadBalancerTargetGroups API instead. To determine the attachment status of the load balancer, use the State element in the response. When you attach a load balancer to an Auto Scaling group, the initial State value is Adding. The state transitions to Added after all Auto Scaling instances are registered with the load balancer. If Elastic Load Balancing health checks are enabled for the Auto Scaling group, the state transitions to InService after at least one Auto Scaling instance passes the health check. When the load balancer is in the InService state, Amazon EC2 Auto Scaling can terminate and replace any instances that are reported as unhealthy. If no registered instances pass the health checks, the load balancer doesn't enter the InService state. Load balancers also have an InService state if you attach them in the CreateAutoScalingGroup API call. If your load balancer state is InService, but it is not working properly, check the scaling activities by calling DescribeScalingActivities and take any corrective actions necessary. For help with failed health checks, see Troubleshooting Amazon EC2 Auto Scaling: Health checks in the Amazon EC2 Auto Scaling User Guide. For more information, see Use Elastic Load Balancing to distribute traffic across the instances in your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.
|
228
228
|
*/
|
229
229
|
describeLoadBalancers(callback?: (err: AWSError, data: AutoScaling.Types.DescribeLoadBalancersResponse) => void): Request<AutoScaling.Types.DescribeLoadBalancersResponse, AWSError>;
|
230
230
|
/**
|
231
|
-
* Describes the available CloudWatch metrics for Amazon EC2 Auto Scaling.
|
231
|
+
* Describes the available CloudWatch metrics for Amazon EC2 Auto Scaling.
|
232
232
|
*/
|
233
233
|
describeMetricCollectionTypes(callback?: (err: AWSError, data: AutoScaling.Types.DescribeMetricCollectionTypesAnswer) => void): Request<AutoScaling.Types.DescribeMetricCollectionTypesAnswer, AWSError>;
|
234
234
|
/**
|
@@ -268,15 +268,15 @@ declare class AutoScaling extends Service {
|
|
268
268
|
*/
|
269
269
|
describeScheduledActions(callback?: (err: AWSError, data: AutoScaling.Types.ScheduledActionsType) => void): Request<AutoScaling.Types.ScheduledActionsType, AWSError>;
|
270
270
|
/**
|
271
|
-
* Describes the specified tags. You can use filters to limit the results. For example, you can query for the tags for a specific Auto Scaling group. You can specify multiple values for a filter. A tag must match at least one of the specified values for it to be included in the results. You can also specify multiple filters. The result includes information for a particular tag only if it matches all the filters. If there's no match, no special message is returned. For more information, see
|
271
|
+
* Describes the specified tags. You can use filters to limit the results. For example, you can query for the tags for a specific Auto Scaling group. You can specify multiple values for a filter. A tag must match at least one of the specified values for it to be included in the results. You can also specify multiple filters. The result includes information for a particular tag only if it matches all the filters. If there's no match, no special message is returned. For more information, see Tag Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.
|
272
272
|
*/
|
273
273
|
describeTags(params: AutoScaling.Types.DescribeTagsType, callback?: (err: AWSError, data: AutoScaling.Types.TagsType) => void): Request<AutoScaling.Types.TagsType, AWSError>;
|
274
274
|
/**
|
275
|
-
* Describes the specified tags. You can use filters to limit the results. For example, you can query for the tags for a specific Auto Scaling group. You can specify multiple values for a filter. A tag must match at least one of the specified values for it to be included in the results. You can also specify multiple filters. The result includes information for a particular tag only if it matches all the filters. If there's no match, no special message is returned. For more information, see
|
275
|
+
* Describes the specified tags. You can use filters to limit the results. For example, you can query for the tags for a specific Auto Scaling group. You can specify multiple values for a filter. A tag must match at least one of the specified values for it to be included in the results. You can also specify multiple filters. The result includes information for a particular tag only if it matches all the filters. If there's no match, no special message is returned. For more information, see Tag Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.
|
276
276
|
*/
|
277
277
|
describeTags(callback?: (err: AWSError, data: AutoScaling.Types.TagsType) => void): Request<AutoScaling.Types.TagsType, AWSError>;
|
278
278
|
/**
|
279
|
-
* Describes the termination policies supported by Amazon EC2 Auto Scaling. For more information, see
|
279
|
+
* Describes the termination policies supported by Amazon EC2 Auto Scaling. For more information, see Work with Amazon EC2 Auto Scaling termination policies in the Amazon EC2 Auto Scaling User Guide.
|
280
280
|
*/
|
281
281
|
describeTerminationPolicyTypes(callback?: (err: AWSError, data: AutoScaling.Types.DescribeTerminationPolicyTypesAnswer) => void): Request<AutoScaling.Types.DescribeTerminationPolicyTypesAnswer, AWSError>;
|
282
282
|
/**
|
@@ -296,35 +296,35 @@ declare class AutoScaling extends Service {
|
|
296
296
|
*/
|
297
297
|
detachInstances(callback?: (err: AWSError, data: AutoScaling.Types.DetachInstancesAnswer) => void): Request<AutoScaling.Types.DetachInstancesAnswer, AWSError>;
|
298
298
|
/**
|
299
|
-
* Detaches one or more target groups from the specified Auto Scaling group.
|
299
|
+
* Detaches one or more target groups from the specified Auto Scaling group. When you detach a target group, it enters the Removing state while deregistering the instances in the group. When all instances are deregistered, then you can no longer describe the target group using the DescribeLoadBalancerTargetGroups API call. The instances remain running.
|
300
300
|
*/
|
301
301
|
detachLoadBalancerTargetGroups(params: AutoScaling.Types.DetachLoadBalancerTargetGroupsType, callback?: (err: AWSError, data: AutoScaling.Types.DetachLoadBalancerTargetGroupsResultType) => void): Request<AutoScaling.Types.DetachLoadBalancerTargetGroupsResultType, AWSError>;
|
302
302
|
/**
|
303
|
-
* Detaches one or more target groups from the specified Auto Scaling group.
|
303
|
+
* Detaches one or more target groups from the specified Auto Scaling group. When you detach a target group, it enters the Removing state while deregistering the instances in the group. When all instances are deregistered, then you can no longer describe the target group using the DescribeLoadBalancerTargetGroups API call. The instances remain running.
|
304
304
|
*/
|
305
305
|
detachLoadBalancerTargetGroups(callback?: (err: AWSError, data: AutoScaling.Types.DetachLoadBalancerTargetGroupsResultType) => void): Request<AutoScaling.Types.DetachLoadBalancerTargetGroupsResultType, AWSError>;
|
306
306
|
/**
|
307
|
-
* Detaches one or more Classic Load Balancers from the specified Auto Scaling group. This operation detaches only Classic Load Balancers. If you have Application Load Balancers, Network Load Balancers, or Gateway Load
|
307
|
+
* Detaches one or more Classic Load Balancers from the specified Auto Scaling group. This operation detaches only Classic Load Balancers. If you have Application Load Balancers, Network Load Balancers, or Gateway Load Balancer, use the DetachLoadBalancerTargetGroups API instead. When you detach a load balancer, it enters the Removing state while deregistering the instances in the group. When all instances are deregistered, then you can no longer describe the load balancer using the DescribeLoadBalancers API call. The instances remain running.
|
308
308
|
*/
|
309
309
|
detachLoadBalancers(params: AutoScaling.Types.DetachLoadBalancersType, callback?: (err: AWSError, data: AutoScaling.Types.DetachLoadBalancersResultType) => void): Request<AutoScaling.Types.DetachLoadBalancersResultType, AWSError>;
|
310
310
|
/**
|
311
|
-
* Detaches one or more Classic Load Balancers from the specified Auto Scaling group. This operation detaches only Classic Load Balancers. If you have Application Load Balancers, Network Load Balancers, or Gateway Load
|
311
|
+
* Detaches one or more Classic Load Balancers from the specified Auto Scaling group. This operation detaches only Classic Load Balancers. If you have Application Load Balancers, Network Load Balancers, or Gateway Load Balancer, use the DetachLoadBalancerTargetGroups API instead. When you detach a load balancer, it enters the Removing state while deregistering the instances in the group. When all instances are deregistered, then you can no longer describe the load balancer using the DescribeLoadBalancers API call. The instances remain running.
|
312
312
|
*/
|
313
313
|
detachLoadBalancers(callback?: (err: AWSError, data: AutoScaling.Types.DetachLoadBalancersResultType) => void): Request<AutoScaling.Types.DetachLoadBalancersResultType, AWSError>;
|
314
314
|
/**
|
315
|
-
* Disables group metrics for the specified Auto Scaling group.
|
315
|
+
* Disables group metrics collection for the specified Auto Scaling group.
|
316
316
|
*/
|
317
317
|
disableMetricsCollection(params: AutoScaling.Types.DisableMetricsCollectionQuery, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
318
318
|
/**
|
319
|
-
* Disables group metrics for the specified Auto Scaling group.
|
319
|
+
* Disables group metrics collection for the specified Auto Scaling group.
|
320
320
|
*/
|
321
321
|
disableMetricsCollection(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
322
322
|
/**
|
323
|
-
* Enables group metrics for the specified Auto Scaling group. For more information, see
|
323
|
+
* Enables group metrics collection for the specified Auto Scaling group. You can use these metrics to track changes in an Auto Scaling group and to set alarms on threshold values. You can view group metrics using the Amazon EC2 Auto Scaling console or the CloudWatch console. For more information, see Monitor CloudWatch metrics for your Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.
|
324
324
|
*/
|
325
325
|
enableMetricsCollection(params: AutoScaling.Types.EnableMetricsCollectionQuery, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
326
326
|
/**
|
327
|
-
* Enables group metrics for the specified Auto Scaling group. For more information, see
|
327
|
+
* Enables group metrics collection for the specified Auto Scaling group. You can use these metrics to track changes in an Auto Scaling group and to set alarms on threshold values. You can view group metrics using the Amazon EC2 Auto Scaling console or the CloudWatch console. For more information, see Monitor CloudWatch metrics for your Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.
|
328
328
|
*/
|
329
329
|
enableMetricsCollection(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
330
330
|
/**
|
@@ -384,11 +384,11 @@ declare class AutoScaling extends Service {
|
|
384
384
|
*/
|
385
385
|
putScalingPolicy(callback?: (err: AWSError, data: AutoScaling.Types.PolicyARNType) => void): Request<AutoScaling.Types.PolicyARNType, AWSError>;
|
386
386
|
/**
|
387
|
-
* Creates or updates a scheduled scaling action for an Auto Scaling group. For more information, see Scheduled scaling in the Amazon EC2 Auto Scaling User Guide. You can view the scheduled actions for an Auto Scaling group using the DescribeScheduledActions API call. If you are no longer using a scheduled action, you can delete it by calling the DeleteScheduledAction API.
|
387
|
+
* Creates or updates a scheduled scaling action for an Auto Scaling group. For more information, see Scheduled scaling in the Amazon EC2 Auto Scaling User Guide. You can view the scheduled actions for an Auto Scaling group using the DescribeScheduledActions API call. If you are no longer using a scheduled action, you can delete it by calling the DeleteScheduledAction API. If you try to schedule your action in the past, Amazon EC2 Auto Scaling returns an error message.
|
388
388
|
*/
|
389
389
|
putScheduledUpdateGroupAction(params: AutoScaling.Types.PutScheduledUpdateGroupActionType, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
390
390
|
/**
|
391
|
-
* Creates or updates a scheduled scaling action for an Auto Scaling group. For more information, see Scheduled scaling in the Amazon EC2 Auto Scaling User Guide. You can view the scheduled actions for an Auto Scaling group using the DescribeScheduledActions API call. If you are no longer using a scheduled action, you can delete it by calling the DeleteScheduledAction API.
|
391
|
+
* Creates or updates a scheduled scaling action for an Auto Scaling group. For more information, see Scheduled scaling in the Amazon EC2 Auto Scaling User Guide. You can view the scheduled actions for an Auto Scaling group using the DescribeScheduledActions API call. If you are no longer using a scheduled action, you can delete it by calling the DeleteScheduledAction API. If you try to schedule your action in the past, Amazon EC2 Auto Scaling returns an error message.
|
392
392
|
*/
|
393
393
|
putScheduledUpdateGroupAction(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
394
394
|
/**
|
@@ -464,11 +464,11 @@ declare class AutoScaling extends Service {
|
|
464
464
|
*/
|
465
465
|
terminateInstanceInAutoScalingGroup(callback?: (err: AWSError, data: AutoScaling.Types.ActivityType) => void): Request<AutoScaling.Types.ActivityType, AWSError>;
|
466
466
|
/**
|
467
|
-
* We strongly recommend that all Auto Scaling groups use launch templates to ensure full functionality for Amazon EC2 Auto Scaling and Amazon EC2. Updates the configuration for the specified Auto Scaling group. To update an Auto Scaling group, specify the name of the group and the
|
467
|
+
* We strongly recommend that all Auto Scaling groups use launch templates to ensure full functionality for Amazon EC2 Auto Scaling and Amazon EC2. Updates the configuration for the specified Auto Scaling group. To update an Auto Scaling group, specify the name of the group and the property that you want to change. Any properties that you don't specify are not changed by this update request. The new settings take effect on any scaling activities after this call returns. If you associate a new launch configuration or template with an Auto Scaling group, all new instances will get the updated configuration. Existing instances continue to run with the configuration that they were originally launched with. When you update a group to specify a mixed instances policy instead of a launch configuration or template, existing instances may be replaced to match the new purchasing options that you specified in the policy. For example, if the group currently has 100% On-Demand capacity and the policy specifies 50% Spot capacity, this means that half of your instances will be gradually terminated and relaunched as Spot Instances. When replacing instances, Amazon EC2 Auto Scaling launches new instances before terminating the old ones, so that updating your group does not compromise the performance or availability of your application. Note the following about changing DesiredCapacity, MaxSize, or MinSize: If a scale-in activity occurs as a result of a new DesiredCapacity value that is lower than the current size of the group, the Auto Scaling group uses its termination policy to determine which instances to terminate. If you specify a new value for MinSize without specifying a value for DesiredCapacity, and the new MinSize is larger than the current size of the group, this sets the group's DesiredCapacity to the new MinSize value. If you specify a new value for MaxSize without specifying a value for DesiredCapacity, and the new MaxSize is smaller than the current size of the group, this sets the group's DesiredCapacity to the new MaxSize value. To see which properties have been set, call the DescribeAutoScalingGroups API. To view the scaling policies for an Auto Scaling group, call the DescribePolicies API. If the group has scaling policies, you can update them by calling the PutScalingPolicy API.
|
468
468
|
*/
|
469
469
|
updateAutoScalingGroup(params: AutoScaling.Types.UpdateAutoScalingGroupType, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
470
470
|
/**
|
471
|
-
* We strongly recommend that all Auto Scaling groups use launch templates to ensure full functionality for Amazon EC2 Auto Scaling and Amazon EC2. Updates the configuration for the specified Auto Scaling group. To update an Auto Scaling group, specify the name of the group and the
|
471
|
+
* We strongly recommend that all Auto Scaling groups use launch templates to ensure full functionality for Amazon EC2 Auto Scaling and Amazon EC2. Updates the configuration for the specified Auto Scaling group. To update an Auto Scaling group, specify the name of the group and the property that you want to change. Any properties that you don't specify are not changed by this update request. The new settings take effect on any scaling activities after this call returns. If you associate a new launch configuration or template with an Auto Scaling group, all new instances will get the updated configuration. Existing instances continue to run with the configuration that they were originally launched with. When you update a group to specify a mixed instances policy instead of a launch configuration or template, existing instances may be replaced to match the new purchasing options that you specified in the policy. For example, if the group currently has 100% On-Demand capacity and the policy specifies 50% Spot capacity, this means that half of your instances will be gradually terminated and relaunched as Spot Instances. When replacing instances, Amazon EC2 Auto Scaling launches new instances before terminating the old ones, so that updating your group does not compromise the performance or availability of your application. Note the following about changing DesiredCapacity, MaxSize, or MinSize: If a scale-in activity occurs as a result of a new DesiredCapacity value that is lower than the current size of the group, the Auto Scaling group uses its termination policy to determine which instances to terminate. If you specify a new value for MinSize without specifying a value for DesiredCapacity, and the new MinSize is larger than the current size of the group, this sets the group's DesiredCapacity to the new MinSize value. If you specify a new value for MaxSize without specifying a value for DesiredCapacity, and the new MaxSize is smaller than the current size of the group, this sets the group's DesiredCapacity to the new MaxSize value. To see which properties have been set, call the DescribeAutoScalingGroups API. To view the scaling policies for an Auto Scaling group, call the DescribePolicies API. If the group has scaling policies, you can update them by calling the PutScalingPolicy API.
|
472
472
|
*/
|
473
473
|
updateAutoScalingGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
474
474
|
}
|
@@ -761,7 +761,7 @@ declare namespace AutoScaling {
|
|
761
761
|
export type AutoScalingGroupNames = XmlStringMaxLen255[];
|
762
762
|
export interface AutoScalingGroupNamesType {
|
763
763
|
/**
|
764
|
-
* The names of the Auto Scaling groups. By default, you can only specify up to 50 names. You can optionally increase this limit using the MaxRecords
|
764
|
+
* The names of the Auto Scaling groups. By default, you can only specify up to 50 names. You can optionally increase this limit using the MaxRecords property. If you omit this property, all Auto Scaling groups are described.
|
765
765
|
*/
|
766
766
|
AutoScalingGroupNames?: AutoScalingGroupNames;
|
767
767
|
/**
|
@@ -808,7 +808,7 @@ declare namespace AutoScaling {
|
|
808
808
|
*/
|
809
809
|
AvailabilityZone: XmlStringMaxLen255;
|
810
810
|
/**
|
811
|
-
* The lifecycle state for the instance. The Quarantined state is not used. For information about lifecycle states, see Instance lifecycle in the Amazon EC2 Auto Scaling User Guide. Valid
|
811
|
+
* The lifecycle state for the instance. The Quarantined state is not used. For information about lifecycle states, see Instance lifecycle in the Amazon EC2 Auto Scaling User Guide. Valid values: Pending | Pending:Wait | Pending:Proceed | Quarantined | InService | Terminating | Terminating:Wait | Terminating:Proceed | Terminated | Detaching | Detached | EnteringStandby | Standby | Warmed:Pending | Warmed:Pending:Wait | Warmed:Pending:Proceed | Warmed:Terminating | Warmed:Terminating:Wait | Warmed:Terminating:Proceed | Warmed:Terminated | Warmed:Stopped | Warmed:Running
|
812
812
|
*/
|
813
813
|
LifecycleState: XmlStringMaxLen32;
|
814
814
|
/**
|
@@ -896,19 +896,19 @@ declare namespace AutoScaling {
|
|
896
896
|
export type BlockDeviceEbsVolumeType = string;
|
897
897
|
export interface BlockDeviceMapping {
|
898
898
|
/**
|
899
|
-
* The name of the virtual device
|
899
|
+
* The name of the instance store volume (virtual device) to attach to an instance at launch. The name must be in the form ephemeralX where X is a number starting from zero (0), for example, ephemeral0.
|
900
900
|
*/
|
901
901
|
VirtualName?: XmlStringMaxLen255;
|
902
902
|
/**
|
903
|
-
* The device name
|
903
|
+
* The device name assigned to the volume (for example, /dev/sdh or xvdh). For more information, see Device naming on Linux instances in the Amazon EC2 User Guide for Linux Instances. To define a block device mapping, set the device name and exactly one of the following properties: Ebs, NoDevice, or VirtualName.
|
904
904
|
*/
|
905
905
|
DeviceName: XmlStringMaxLen255;
|
906
906
|
/**
|
907
|
-
*
|
907
|
+
* Information to attach an EBS volume to an instance at launch.
|
908
908
|
*/
|
909
909
|
Ebs?: Ebs;
|
910
910
|
/**
|
911
|
-
* Setting this value to true
|
911
|
+
* Setting this value to true prevents a volume that is included in the block device mapping of the AMI from being mapped to the specified device name at launch. If NoDevice is true for the root device, instances might fail the EC2 health check. In that case, Amazon EC2 Auto Scaling launches replacement instances.
|
912
912
|
*/
|
913
913
|
NoDevice?: NoDevice;
|
914
914
|
}
|
@@ -956,7 +956,7 @@ declare namespace AutoScaling {
|
|
956
956
|
*/
|
957
957
|
LifecycleActionToken?: LifecycleActionToken;
|
958
958
|
/**
|
959
|
-
* The action for the group to take.
|
959
|
+
* The action for the group to take. You can specify either CONTINUE or ABANDON.
|
960
960
|
*/
|
961
961
|
LifecycleActionResult: LifecycleActionResult;
|
962
962
|
/**
|
@@ -978,7 +978,7 @@ declare namespace AutoScaling {
|
|
978
978
|
*/
|
979
979
|
LaunchConfigurationName?: XmlStringMaxLen255;
|
980
980
|
/**
|
981
|
-
*
|
981
|
+
* Information used to specify the launch template and version to use to launch instances. Conditional: You must specify either a launch template (LaunchTemplate or MixedInstancesPolicy) or a launch configuration (LaunchConfigurationName or InstanceId). The launch template that is specified must be configured for use with an Auto Scaling group. For more information, see Creating a launch template for an Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.
|
982
982
|
*/
|
983
983
|
LaunchTemplate?: LaunchTemplateSpecification;
|
984
984
|
/**
|
@@ -1006,15 +1006,15 @@ declare namespace AutoScaling {
|
|
1006
1006
|
*/
|
1007
1007
|
DefaultCooldown?: Cooldown;
|
1008
1008
|
/**
|
1009
|
-
* A list of Availability Zones where instances in the Auto Scaling group can be created.
|
1009
|
+
* A list of Availability Zones where instances in the Auto Scaling group can be created. Used for launching into the default VPC subnet in each Availability Zone when not using the VPCZoneIdentifier property, or for attaching a network interface when an existing network interface ID is specified in a launch template.
|
1010
1010
|
*/
|
1011
1011
|
AvailabilityZones?: AvailabilityZones;
|
1012
1012
|
/**
|
1013
|
-
* A list of Classic Load Balancers associated with this Auto Scaling group. For Application Load Balancers, Network Load Balancers, and Gateway Load
|
1013
|
+
* A list of Classic Load Balancers associated with this Auto Scaling group. For Application Load Balancers, Network Load Balancers, and Gateway Load Balancer, specify the TargetGroupARNs property instead.
|
1014
1014
|
*/
|
1015
1015
|
LoadBalancerNames?: LoadBalancerNames;
|
1016
1016
|
/**
|
1017
|
-
* The Amazon Resource Names (ARN) of the target groups to associate with the Auto Scaling group. Instances are registered as targets
|
1017
|
+
* The Amazon Resource Names (ARN) of the target groups to associate with the Auto Scaling group. Instances are registered as targets with the target groups. The target groups receive incoming traffic and route requests to one or more registered targets. For more information, see Use Elastic Load Balancing to distribute traffic across the instances in your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.
|
1018
1018
|
*/
|
1019
1019
|
TargetGroupARNs?: TargetGroupARNs;
|
1020
1020
|
/**
|
@@ -1022,19 +1022,19 @@ declare namespace AutoScaling {
|
|
1022
1022
|
*/
|
1023
1023
|
HealthCheckType?: XmlStringMaxLen32;
|
1024
1024
|
/**
|
1025
|
-
*
|
1025
|
+
* The amount of time, in seconds, that Amazon EC2 Auto Scaling waits before checking the health status of an EC2 instance that has come into service and marking it unhealthy due to a failed Elastic Load Balancing or custom health check. This is useful if your instances do not immediately pass these health checks after they enter the InService state. For more information, see Health check grace period in the Amazon EC2 Auto Scaling User Guide. Default: 0 seconds
|
1026
1026
|
*/
|
1027
1027
|
HealthCheckGracePeriod?: HealthCheckGracePeriod;
|
1028
1028
|
/**
|
1029
|
-
* The name of
|
1029
|
+
* The name of the placement group into which to launch your instances. For more information, see Placement groups in the Amazon EC2 User Guide for Linux Instances. A cluster placement group is a logical grouping of instances within a single Availability Zone. You cannot specify multiple Availability Zones and a cluster placement group.
|
1030
1030
|
*/
|
1031
1031
|
PlacementGroup?: XmlStringMaxLen255;
|
1032
1032
|
/**
|
1033
|
-
* A comma-separated list of subnet IDs for a virtual private cloud (VPC) where instances in the Auto Scaling group can be created. If you specify VPCZoneIdentifier with AvailabilityZones, the subnets that you specify
|
1033
|
+
* A comma-separated list of subnet IDs for a virtual private cloud (VPC) where instances in the Auto Scaling group can be created. If you specify VPCZoneIdentifier with AvailabilityZones, the subnets that you specify must reside in those Availability Zones.
|
1034
1034
|
*/
|
1035
1035
|
VPCZoneIdentifier?: XmlStringMaxLen2047;
|
1036
1036
|
/**
|
1037
|
-
* A policy or a list of policies that are used to select the instance to terminate. These policies are executed in the order that you list them. For more information, see
|
1037
|
+
* A policy or a list of policies that are used to select the instance to terminate. These policies are executed in the order that you list them. For more information, see Work with Amazon EC2 Auto Scaling termination policies in the Amazon EC2 Auto Scaling User Guide. Valid values: Default | AllocationStrategy | ClosestToNextInstanceHour | NewestInstance | OldestInstance | OldestLaunchConfiguration | OldestLaunchTemplate | arn:aws:lambda:region:account-id:function:my-function:my-alias
|
1038
1038
|
*/
|
1039
1039
|
TerminationPolicies?: TerminationPolicies;
|
1040
1040
|
/**
|
@@ -1042,19 +1042,19 @@ declare namespace AutoScaling {
|
|
1042
1042
|
*/
|
1043
1043
|
NewInstancesProtectedFromScaleIn?: InstanceProtected;
|
1044
1044
|
/**
|
1045
|
-
* Indicates whether Capacity Rebalancing is enabled. Otherwise, Capacity Rebalancing is disabled. When you turn on Capacity Rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 notifies that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see Amazon EC2
|
1045
|
+
* Indicates whether Capacity Rebalancing is enabled. Otherwise, Capacity Rebalancing is disabled. When you turn on Capacity Rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 notifies that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see Use Capacity Rebalancing to handle Amazon EC2 Spot Interruptions in the in the Amazon EC2 Auto Scaling User Guide.
|
1046
1046
|
*/
|
1047
1047
|
CapacityRebalance?: CapacityRebalanceEnabled;
|
1048
1048
|
/**
|
1049
|
-
* One or more lifecycle hooks
|
1049
|
+
* One or more lifecycle hooks to add to the Auto Scaling group before instances are launched.
|
1050
1050
|
*/
|
1051
1051
|
LifecycleHookSpecificationList?: LifecycleHookSpecifications;
|
1052
1052
|
/**
|
1053
|
-
* One or more tags. You can tag your Auto Scaling group and propagate the tags to the Amazon EC2 instances it launches. Tags are not propagated to Amazon EBS volumes. To add tags to Amazon EBS volumes, specify the tags in a launch template but use caution. If the launch template specifies an instance tag with a key that is also specified for the Auto Scaling group, Amazon EC2 Auto Scaling overrides the value of that instance tag with the value specified by the Auto Scaling group. For more information, see
|
1053
|
+
* One or more tags. You can tag your Auto Scaling group and propagate the tags to the Amazon EC2 instances it launches. Tags are not propagated to Amazon EBS volumes. To add tags to Amazon EBS volumes, specify the tags in a launch template but use caution. If the launch template specifies an instance tag with a key that is also specified for the Auto Scaling group, Amazon EC2 Auto Scaling overrides the value of that instance tag with the value specified by the Auto Scaling group. For more information, see Tag Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.
|
1054
1054
|
*/
|
1055
1055
|
Tags?: Tags;
|
1056
1056
|
/**
|
1057
|
-
* The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to call other Amazon Web Services on your behalf. By default, Amazon EC2 Auto Scaling uses a service-linked role named AWSServiceRoleForAutoScaling, which it creates if it does not exist. For more information, see Service-linked roles in the Amazon EC2 Auto Scaling User Guide.
|
1057
|
+
* The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to call other Amazon Web Services service on your behalf. By default, Amazon EC2 Auto Scaling uses a service-linked role named AWSServiceRoleForAutoScaling, which it creates if it does not exist. For more information, see Service-linked roles in the Amazon EC2 Auto Scaling User Guide.
|
1058
1058
|
*/
|
1059
1059
|
ServiceLinkedRoleARN?: ResourceName;
|
1060
1060
|
/**
|
@@ -1080,23 +1080,23 @@ declare namespace AutoScaling {
|
|
1080
1080
|
*/
|
1081
1081
|
LaunchConfigurationName: XmlStringMaxLen255;
|
1082
1082
|
/**
|
1083
|
-
* The ID of the Amazon Machine Image (AMI) that was assigned during registration. For more information, see Finding
|
1083
|
+
* The ID of the Amazon Machine Image (AMI) that was assigned during registration. For more information, see Finding a Linux AMI in the Amazon EC2 User Guide for Linux Instances. If you specify InstanceId, an ImageId is not required.
|
1084
1084
|
*/
|
1085
1085
|
ImageId?: XmlStringMaxLen255;
|
1086
1086
|
/**
|
1087
|
-
* The name of the key pair. For more information, see Amazon EC2
|
1087
|
+
* The name of the key pair. For more information, see Amazon EC2 key pairs and Linux instances in the Amazon EC2 User Guide for Linux Instances.
|
1088
1088
|
*/
|
1089
1089
|
KeyName?: XmlStringMaxLen255;
|
1090
1090
|
/**
|
1091
|
-
* A list that contains the security
|
1091
|
+
* A list that contains the security group IDs to assign to the instances in the Auto Scaling group. For more information, see Control traffic to resources using security groups in the Amazon Virtual Private Cloud User Guide.
|
1092
1092
|
*/
|
1093
1093
|
SecurityGroups?: SecurityGroups;
|
1094
1094
|
/**
|
1095
|
-
* EC2-Classic retires on August 15, 2022. This
|
1095
|
+
* EC2-Classic retires on August 15, 2022. This property is not supported after that date. The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. For more information, see ClassicLink in the Amazon EC2 User Guide for Linux Instances.
|
1096
1096
|
*/
|
1097
1097
|
ClassicLinkVPCId?: XmlStringMaxLen255;
|
1098
1098
|
/**
|
1099
|
-
* EC2-Classic retires on August 15, 2022. This
|
1099
|
+
* EC2-Classic retires on August 15, 2022. This property is not supported after that date. The IDs of one or more security groups for the specified ClassicLink-enabled VPC. If you specify the ClassicLinkVPCId property, you must specify ClassicLinkVPCSecurityGroups.
|
1100
1100
|
*/
|
1101
1101
|
ClassicLinkVPCSecurityGroups?: ClassicLinkVPCSecurityGroups;
|
1102
1102
|
/**
|
@@ -1104,23 +1104,23 @@ declare namespace AutoScaling {
|
|
1104
1104
|
*/
|
1105
1105
|
UserData?: XmlStringUserData;
|
1106
1106
|
/**
|
1107
|
-
* The ID of the instance to use to create the launch configuration. The new launch configuration derives attributes from the instance, except for the block device mapping. To create a launch configuration with a block device mapping or override any other instance attributes, specify them as part of the same request. For more information, see Creating a launch configuration using an EC2 instance in the Amazon EC2 Auto Scaling User Guide.
|
1107
|
+
* The ID of the instance to use to create the launch configuration. The new launch configuration derives attributes from the instance, except for the block device mapping. To create a launch configuration with a block device mapping or override any other instance attributes, specify them as part of the same request. For more information, see Creating a launch configuration using an EC2 instance in the Amazon EC2 Auto Scaling User Guide.
|
1108
1108
|
*/
|
1109
1109
|
InstanceId?: XmlStringMaxLen19;
|
1110
1110
|
/**
|
1111
|
-
* Specifies the instance type of the EC2 instance. For information about available instance types, see Available
|
1111
|
+
* Specifies the instance type of the EC2 instance. For information about available instance types, see Available instance types in the Amazon EC2 User Guide for Linux Instances. If you specify InstanceId, an InstanceType is not required.
|
1112
1112
|
*/
|
1113
1113
|
InstanceType?: XmlStringMaxLen255;
|
1114
1114
|
/**
|
1115
|
-
* The ID of the kernel associated with the AMI.
|
1115
|
+
* The ID of the kernel associated with the AMI. We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see User provided kernels in the Amazon EC2 User Guide for Linux Instances.
|
1116
1116
|
*/
|
1117
1117
|
KernelId?: XmlStringMaxLen255;
|
1118
1118
|
/**
|
1119
|
-
* The ID of the RAM disk to select.
|
1119
|
+
* The ID of the RAM disk to select. We recommend that you use PV-GRUB instead of kernels and RAM disks. For more information, see User provided kernels in the Amazon EC2 User Guide for Linux Instances.
|
1120
1120
|
*/
|
1121
1121
|
RamdiskId?: XmlStringMaxLen255;
|
1122
1122
|
/**
|
1123
|
-
*
|
1123
|
+
* The block device mapping entries that define the block devices to attach to the instances at launch. By default, the block devices specified in the block device mapping for the AMI are used. For more information, see Block device mappings in the Amazon EC2 User Guide for Linux Instances.
|
1124
1124
|
*/
|
1125
1125
|
BlockDeviceMappings?: BlockDeviceMappings;
|
1126
1126
|
/**
|
@@ -1128,7 +1128,7 @@ declare namespace AutoScaling {
|
|
1128
1128
|
*/
|
1129
1129
|
InstanceMonitoring?: InstanceMonitoring;
|
1130
1130
|
/**
|
1131
|
-
* The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances are launched when the price you specify exceeds the current Spot price. For more information, see
|
1131
|
+
* The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances are launched when the price you specify exceeds the current Spot price. For more information, see Request Spot Instances for fault-tolerant and flexible applications in the Amazon EC2 Auto Scaling User Guide. Valid Range: Minimum value of 0.001 When you change your maximum price by creating a new launch configuration, running instances will continue to run as long as the maximum price for those running instances is higher than the current Spot price.
|
1132
1132
|
*/
|
1133
1133
|
SpotPrice?: SpotPrice;
|
1134
1134
|
/**
|
@@ -1140,11 +1140,11 @@ declare namespace AutoScaling {
|
|
1140
1140
|
*/
|
1141
1141
|
EbsOptimized?: EbsOptimized;
|
1142
1142
|
/**
|
1143
|
-
*
|
1143
|
+
* Specifies whether to assign a public IPv4 address to the group's instances. If the instance is launched into a default subnet, the default is to assign a public IPv4 address, unless you disabled the option to assign a public IPv4 address on the subnet. If the instance is launched into a nondefault subnet, the default is not to assign a public IPv4 address, unless you enabled the option to assign a public IPv4 address on the subnet. If you specify true, each instance in the Auto Scaling group receives a unique public IPv4 address. For more information, see Launching Auto Scaling instances in a VPC in the Amazon EC2 Auto Scaling User Guide. If you specify this property, you must specify at least one subnet for VPCZoneIdentifier when you create your group.
|
1144
1144
|
*/
|
1145
1145
|
AssociatePublicIpAddress?: AssociatePublicIpAddress;
|
1146
1146
|
/**
|
1147
|
-
* The tenancy of the instance. An instance with dedicated tenancy runs on isolated, single-tenant hardware and can only be launched into a VPC. To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy attribute set to default), you must set the value of this
|
1147
|
+
* The tenancy of the instance, either default or dedicated. An instance with dedicated tenancy runs on isolated, single-tenant hardware and can only be launched into a VPC. To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy attribute set to default), you must set the value of this property to dedicated. For more information, see Configuring instance tenancy with Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. If you specify PlacementTenancy, you must specify at least one subnet for VPCZoneIdentifier when you create your group. Valid values: default | dedicated
|
1148
1148
|
*/
|
1149
1149
|
PlacementTenancy?: XmlStringMaxLen64;
|
1150
1150
|
/**
|
@@ -1187,7 +1187,7 @@ declare namespace AutoScaling {
|
|
1187
1187
|
*/
|
1188
1188
|
AutoScalingGroupName: XmlStringMaxLen255;
|
1189
1189
|
/**
|
1190
|
-
* Specifies that the group is to be deleted along with all instances associated with the group, without waiting for all instances to be terminated. This
|
1190
|
+
* Specifies that the group is to be deleted along with all instances associated with the group, without waiting for all instances to be terminated. This action also deletes any outstanding lifecycle actions associated with the group.
|
1191
1191
|
*/
|
1192
1192
|
ForceDelete?: ForceDelete;
|
1193
1193
|
}
|
@@ -1277,7 +1277,7 @@ declare namespace AutoScaling {
|
|
1277
1277
|
}
|
1278
1278
|
export interface DescribeAutoScalingInstancesType {
|
1279
1279
|
/**
|
1280
|
-
* The IDs of the instances. If you omit this
|
1280
|
+
* The IDs of the instances. If you omit this property, all Auto Scaling instances are described. If you specify an ID that does not exist, it is ignored with no error. Array Members: Maximum number of 50 items.
|
1281
1281
|
*/
|
1282
1282
|
InstanceIds?: InstanceIds;
|
1283
1283
|
/**
|
@@ -1297,7 +1297,7 @@ declare namespace AutoScaling {
|
|
1297
1297
|
}
|
1298
1298
|
export interface DescribeInstanceRefreshesAnswer {
|
1299
1299
|
/**
|
1300
|
-
* The instance refreshes for the specified group.
|
1300
|
+
* The instance refreshes for the specified group, sorted by creation timestamp in descending order.
|
1301
1301
|
*/
|
1302
1302
|
InstanceRefreshes?: InstanceRefreshes;
|
1303
1303
|
/**
|
@@ -1341,7 +1341,7 @@ declare namespace AutoScaling {
|
|
1341
1341
|
*/
|
1342
1342
|
AutoScalingGroupName: XmlStringMaxLen255;
|
1343
1343
|
/**
|
1344
|
-
* The names of one or more lifecycle hooks. If you omit this
|
1344
|
+
* The names of one or more lifecycle hooks. If you omit this property, all lifecycle hooks are described.
|
1345
1345
|
*/
|
1346
1346
|
LifecycleHookNames?: LifecycleHookNames;
|
1347
1347
|
}
|
@@ -1395,7 +1395,7 @@ declare namespace AutoScaling {
|
|
1395
1395
|
}
|
1396
1396
|
export interface DescribeMetricCollectionTypesAnswer {
|
1397
1397
|
/**
|
1398
|
-
*
|
1398
|
+
* The metrics.
|
1399
1399
|
*/
|
1400
1400
|
Metrics?: MetricCollectionTypes;
|
1401
1401
|
/**
|
@@ -1433,7 +1433,7 @@ declare namespace AutoScaling {
|
|
1433
1433
|
*/
|
1434
1434
|
AutoScalingGroupName?: XmlStringMaxLen255;
|
1435
1435
|
/**
|
1436
|
-
* The names of one or more policies. If you omit this
|
1436
|
+
* The names of one or more policies. If you omit this property, all policies are described. If a group name is provided, the results are limited to that group. If you specify an unknown policy name, it is ignored with no error. Array Members: Maximum number of 50 items.
|
1437
1437
|
*/
|
1438
1438
|
PolicyNames?: PolicyNames;
|
1439
1439
|
/**
|
@@ -1451,7 +1451,7 @@ declare namespace AutoScaling {
|
|
1451
1451
|
}
|
1452
1452
|
export interface DescribeScalingActivitiesType {
|
1453
1453
|
/**
|
1454
|
-
* The activity IDs of the desired scaling activities. If you omit this
|
1454
|
+
* The activity IDs of the desired scaling activities. If you omit this property, all activities for the past six weeks are described. If unknown activities are requested, they are ignored with no error. If you specify an Auto Scaling group, the results are limited to that group. Array Members: Maximum number of 50 IDs.
|
1455
1455
|
*/
|
1456
1456
|
ActivityIds?: ActivityIds;
|
1457
1457
|
/**
|
@@ -1477,15 +1477,15 @@ declare namespace AutoScaling {
|
|
1477
1477
|
*/
|
1478
1478
|
AutoScalingGroupName?: XmlStringMaxLen255;
|
1479
1479
|
/**
|
1480
|
-
* The names of one or more scheduled actions. If you omit this
|
1480
|
+
* The names of one or more scheduled actions. If you omit this property, all scheduled actions are described. If you specify an unknown scheduled action, it is ignored with no error. Array Members: Maximum number of 50 actions.
|
1481
1481
|
*/
|
1482
1482
|
ScheduledActionNames?: ScheduledActionNames;
|
1483
1483
|
/**
|
1484
|
-
* The earliest scheduled start time to return. If scheduled action names are provided, this
|
1484
|
+
* The earliest scheduled start time to return. If scheduled action names are provided, this property is ignored.
|
1485
1485
|
*/
|
1486
1486
|
StartTime?: TimestampType;
|
1487
1487
|
/**
|
1488
|
-
* The latest scheduled start time to return. If scheduled action names are provided, this
|
1488
|
+
* The latest scheduled start time to return. If scheduled action names are provided, this property is ignored.
|
1489
1489
|
*/
|
1490
1490
|
EndTime?: TimestampType;
|
1491
1491
|
/**
|
@@ -1599,7 +1599,7 @@ declare namespace AutoScaling {
|
|
1599
1599
|
*/
|
1600
1600
|
AutoScalingGroupName: XmlStringMaxLen255;
|
1601
1601
|
/**
|
1602
|
-
*
|
1602
|
+
* Identifies the metrics to disable. You can specify one or more of the following metrics: GroupMinSize GroupMaxSize GroupDesiredCapacity GroupInServiceInstances GroupPendingInstances GroupStandbyInstances GroupTerminatingInstances GroupTotalInstances GroupInServiceCapacity GroupPendingCapacity GroupStandbyCapacity GroupTerminatingCapacity GroupTotalCapacity WarmPoolDesiredCapacity WarmPoolWarmedCapacity WarmPoolPendingCapacity WarmPoolTerminatingCapacity WarmPoolTotalCapacity GroupAndWarmPoolDesiredCapacity GroupAndWarmPoolTotalCapacity If you omit this property, all metrics are disabled. For more information, see Auto Scaling group metrics in the Amazon EC2 Auto Scaling User Guide.
|
1603
1603
|
*/
|
1604
1604
|
Metrics?: Metrics;
|
1605
1605
|
}
|
@@ -1614,7 +1614,7 @@ declare namespace AutoScaling {
|
|
1614
1614
|
*/
|
1615
1615
|
VolumeSize?: BlockDeviceEbsVolumeSize;
|
1616
1616
|
/**
|
1617
|
-
* The volume type. For more information, see Amazon EBS volume types in the Amazon EC2 User Guide for Linux Instances. Valid
|
1617
|
+
* The volume type. For more information, see Amazon EBS volume types in the Amazon EC2 User Guide for Linux Instances. Valid values: standard | io1 | gp2 | st1 | sc1 | gp3
|
1618
1618
|
*/
|
1619
1619
|
VolumeType?: BlockDeviceEbsVolumeType;
|
1620
1620
|
/**
|
@@ -1626,7 +1626,7 @@ declare namespace AutoScaling {
|
|
1626
1626
|
*/
|
1627
1627
|
Iops?: BlockDeviceEbsIops;
|
1628
1628
|
/**
|
1629
|
-
* Specifies whether the volume should be encrypted. Encrypted EBS volumes can only be attached to instances that support Amazon EBS encryption. For more information, see Supported instance types. If your AMI uses encrypted volumes, you can also only launch it on supported instance types. If you are creating a volume from a snapshot, you cannot create an unencrypted volume from an encrypted snapshot. Also, you cannot specify a KMS key ID when using a launch configuration. If you enable encryption by default, the EBS volumes that you create are always encrypted, either using the Amazon Web Services managed KMS key or a customer-managed KMS key, regardless of whether the snapshot was encrypted. For more information, see
|
1629
|
+
* Specifies whether the volume should be encrypted. Encrypted EBS volumes can only be attached to instances that support Amazon EBS encryption. For more information, see Supported instance types. If your AMI uses encrypted volumes, you can also only launch it on supported instance types. If you are creating a volume from a snapshot, you cannot create an unencrypted volume from an encrypted snapshot. Also, you cannot specify a KMS key ID when using a launch configuration. If you enable encryption by default, the EBS volumes that you create are always encrypted, either using the Amazon Web Services managed KMS key or a customer-managed KMS key, regardless of whether the snapshot was encrypted. For more information, see Use Amazon Web Services KMS keys to encrypt Amazon EBS volumes in the Amazon EC2 Auto Scaling User Guide.
|
1630
1630
|
*/
|
1631
1631
|
Encrypted?: BlockDeviceEbsEncrypted;
|
1632
1632
|
/**
|
@@ -1641,17 +1641,17 @@ declare namespace AutoScaling {
|
|
1641
1641
|
*/
|
1642
1642
|
AutoScalingGroupName: XmlStringMaxLen255;
|
1643
1643
|
/**
|
1644
|
-
*
|
1644
|
+
* Identifies the metrics to enable. You can specify one or more of the following metrics: GroupMinSize GroupMaxSize GroupDesiredCapacity GroupInServiceInstances GroupPendingInstances GroupStandbyInstances GroupTerminatingInstances GroupTotalInstances GroupInServiceCapacity GroupPendingCapacity GroupStandbyCapacity GroupTerminatingCapacity GroupTotalCapacity WarmPoolDesiredCapacity WarmPoolWarmedCapacity WarmPoolPendingCapacity WarmPoolTerminatingCapacity WarmPoolTotalCapacity GroupAndWarmPoolDesiredCapacity GroupAndWarmPoolTotalCapacity If you specify Granularity and don't specify any metrics, all metrics are enabled. For more information, see Auto Scaling group metrics in the Amazon EC2 Auto Scaling User Guide.
|
1645
1645
|
*/
|
1646
1646
|
Metrics?: Metrics;
|
1647
1647
|
/**
|
1648
|
-
* The
|
1648
|
+
* The frequency at which Amazon EC2 Auto Scaling sends aggregated data to CloudWatch. The only valid value is 1Minute.
|
1649
1649
|
*/
|
1650
1650
|
Granularity: XmlStringMaxLen255;
|
1651
1651
|
}
|
1652
1652
|
export interface EnabledMetric {
|
1653
1653
|
/**
|
1654
|
-
* One of the following metrics: GroupMinSize GroupMaxSize GroupDesiredCapacity GroupInServiceInstances GroupPendingInstances GroupStandbyInstances GroupTerminatingInstances GroupTotalInstances GroupInServiceCapacity GroupPendingCapacity GroupStandbyCapacity GroupTerminatingCapacity GroupTotalCapacity WarmPoolDesiredCapacity WarmPoolWarmedCapacity WarmPoolPendingCapacity WarmPoolTerminatingCapacity WarmPoolTotalCapacity GroupAndWarmPoolDesiredCapacity GroupAndWarmPoolTotalCapacity
|
1654
|
+
* One of the following metrics: GroupMinSize GroupMaxSize GroupDesiredCapacity GroupInServiceInstances GroupPendingInstances GroupStandbyInstances GroupTerminatingInstances GroupTotalInstances GroupInServiceCapacity GroupPendingCapacity GroupStandbyCapacity GroupTerminatingCapacity GroupTotalCapacity WarmPoolDesiredCapacity WarmPoolWarmedCapacity WarmPoolPendingCapacity WarmPoolTerminatingCapacity WarmPoolTotalCapacity GroupAndWarmPoolDesiredCapacity GroupAndWarmPoolTotalCapacity For more information, see Auto Scaling group metrics in the Amazon EC2 Auto Scaling User Guide.
|
1655
1655
|
*/
|
1656
1656
|
Metric?: XmlStringMaxLen255;
|
1657
1657
|
/**
|
@@ -1952,11 +1952,11 @@ declare namespace AutoScaling {
|
|
1952
1952
|
*/
|
1953
1953
|
InstanceGenerations?: InstanceGenerations;
|
1954
1954
|
/**
|
1955
|
-
* The price protection threshold for Spot Instances. This is the maximum you’ll pay for a Spot Instance, expressed as a percentage higher than the
|
1955
|
+
* The price protection threshold for Spot Instances. This is the maximum you’ll pay for a Spot Instance, expressed as a percentage higher than the least expensive current generation M, C, or R instance type with your specified attributes. When Amazon EC2 Auto Scaling selects instance types with your attributes, we will exclude instance types whose price is higher than your threshold. The parameter accepts an integer, which Amazon EC2 Auto Scaling interprets as a percentage. To turn off price protection, specify a high value, such as 999999. If you set DesiredCapacityType to vcpu or memory-mib, the price protection threshold is applied based on the per vCPU or per memory price instead of the per instance price. Default: 100
|
1956
1956
|
*/
|
1957
1957
|
SpotMaxPricePercentageOverLowestPrice?: NullablePositiveInteger;
|
1958
1958
|
/**
|
1959
|
-
* The price protection threshold for On-Demand Instances. This is the maximum you’ll pay for an On-Demand Instance, expressed as a percentage higher than the
|
1959
|
+
* The price protection threshold for On-Demand Instances. This is the maximum you’ll pay for an On-Demand Instance, expressed as a percentage higher than the least expensive current generation M, C, or R instance type with your specified attributes. When Amazon EC2 Auto Scaling selects instance types with your attributes, we will exclude instance types whose price is higher than your threshold. The parameter accepts an integer, which Amazon EC2 Auto Scaling interprets as a percentage. To turn off price protection, specify a high value, such as 999999. If you set DesiredCapacityType to vcpu or memory-mib, the price protection threshold is applied based on the per vCPU or per memory price instead of the per instance price. Default: 20
|
1960
1960
|
*/
|
1961
1961
|
OnDemandMaxPricePercentageOverLowestPrice?: NullablePositiveInteger;
|
1962
1962
|
/**
|
@@ -1980,7 +1980,7 @@ declare namespace AutoScaling {
|
|
1980
1980
|
*/
|
1981
1981
|
LocalStorage?: LocalStorage;
|
1982
1982
|
/**
|
1983
|
-
* Indicates the type of local storage that is required. For instance types with hard disk drive (HDD) storage, specify hdd. For instance types with solid state drive (SSD) storage, specify
|
1983
|
+
* Indicates the type of local storage that is required. For instance types with hard disk drive (HDD) storage, specify hdd. For instance types with solid state drive (SSD) storage, specify ssd. Default: Any local storage type
|
1984
1984
|
*/
|
1985
1985
|
LocalStorageTypes?: LocalStorageTypes;
|
1986
1986
|
/**
|
@@ -2021,7 +2021,7 @@ declare namespace AutoScaling {
|
|
2021
2021
|
export type Instances = Instance[];
|
2022
2022
|
export interface InstancesDistribution {
|
2023
2023
|
/**
|
2024
|
-
* The order of the launch template overrides to use in fulfilling On-Demand capacity. If you specify lowest-price, Amazon EC2 Auto Scaling uses price to determine the order, launching the lowest price first. If you specify prioritized, Amazon EC2 Auto Scaling uses the priority that you assigned to each launch template override, launching the highest priority first. If all your On-Demand capacity cannot be fulfilled using your highest priority instance, then Amazon EC2 Auto Scaling launches the remaining capacity using the second priority instance type, and so on. Default: lowest-price for Auto Scaling groups that specify InstanceRequirements in the overrides and prioritized for Auto Scaling groups that don't.
|
2024
|
+
* The order of the launch template overrides to use in fulfilling On-Demand capacity. If you specify lowest-price, Amazon EC2 Auto Scaling uses price to determine the order, launching the lowest price first. If you specify prioritized, Amazon EC2 Auto Scaling uses the priority that you assigned to each launch template override, launching the highest priority first. If all your On-Demand capacity cannot be fulfilled using your highest priority instance, then Amazon EC2 Auto Scaling launches the remaining capacity using the second priority instance type, and so on. Default: lowest-price for Auto Scaling groups that specify InstanceRequirements in the overrides and prioritized for Auto Scaling groups that don't. Valid values: lowest-price | prioritized
|
2025
2025
|
*/
|
2026
2026
|
OnDemandAllocationStrategy?: XmlString;
|
2027
2027
|
/**
|
@@ -2033,7 +2033,7 @@ declare namespace AutoScaling {
|
|
2033
2033
|
*/
|
2034
2034
|
OnDemandPercentageAboveBaseCapacity?: OnDemandPercentageAboveBaseCapacity;
|
2035
2035
|
/**
|
2036
|
-
* Indicates how to allocate instances across Spot Instance pools. If the allocation strategy is lowest-price, the Auto Scaling group launches instances using the Spot pools with the lowest price, and evenly allocates your instances across the number of Spot pools that you specify. If the allocation strategy is capacity-optimized (recommended), the Auto Scaling group launches instances using Spot pools that are optimally chosen based on the available Spot capacity. Alternatively, you can use capacity-optimized-prioritized and set the order of instance types in the list of launch template overrides from highest to lowest priority (from first to last in the list). Amazon EC2 Auto Scaling honors the instance type priorities on a best-effort basis but optimizes for capacity first. Default: lowest-price
|
2036
|
+
* Indicates how to allocate instances across Spot Instance pools. If the allocation strategy is lowest-price, the Auto Scaling group launches instances using the Spot pools with the lowest price, and evenly allocates your instances across the number of Spot pools that you specify. If the allocation strategy is capacity-optimized (recommended), the Auto Scaling group launches instances using Spot pools that are optimally chosen based on the available Spot capacity. Alternatively, you can use capacity-optimized-prioritized and set the order of instance types in the list of launch template overrides from highest to lowest priority (from first to last in the list). Amazon EC2 Auto Scaling honors the instance type priorities on a best-effort basis but optimizes for capacity first. Default: lowest-price Valid values: lowest-price | capacity-optimized | capacity-optimized-prioritized
|
2037
2037
|
*/
|
2038
2038
|
SpotAllocationStrategy?: XmlString;
|
2039
2039
|
/**
|
@@ -2041,7 +2041,7 @@ declare namespace AutoScaling {
|
|
2041
2041
|
*/
|
2042
2042
|
SpotInstancePools?: SpotInstancePools;
|
2043
2043
|
/**
|
2044
|
-
* The maximum price per unit hour that you are willing to pay for a Spot Instance. If you keep the value at its default (unspecified), Amazon EC2 Auto Scaling uses the On-Demand price as the maximum Spot price. To remove a value that you previously set, include the property but specify an empty string ("") for the value.
|
2044
|
+
* The maximum price per unit hour that you are willing to pay for a Spot Instance. If you keep the value at its default (unspecified), Amazon EC2 Auto Scaling uses the On-Demand price as the maximum Spot price. To remove a value that you previously set, include the property but specify an empty string ("") for the value. If your maximum price is lower than the Spot price for the instance types that you selected, your Spot Instances are not launched. Valid Range: Minimum value of 0.001
|
2045
2045
|
*/
|
2046
2046
|
SpotMaxPrice?: MixedInstanceSpotPrice;
|
2047
2047
|
}
|
@@ -2057,7 +2057,7 @@ declare namespace AutoScaling {
|
|
2057
2057
|
*/
|
2058
2058
|
LaunchConfigurationARN?: ResourceName;
|
2059
2059
|
/**
|
2060
|
-
* The ID of the Amazon Machine Image (AMI) to use to launch your EC2 instances. For more information, see
|
2060
|
+
* The ID of the Amazon Machine Image (AMI) to use to launch your EC2 instances. For more information, see Find a Linux AMI in the Amazon EC2 User Guide for Linux Instances.
|
2061
2061
|
*/
|
2062
2062
|
ImageId: XmlStringMaxLen255;
|
2063
2063
|
/**
|
@@ -2069,11 +2069,11 @@ declare namespace AutoScaling {
|
|
2069
2069
|
*/
|
2070
2070
|
SecurityGroups?: SecurityGroups;
|
2071
2071
|
/**
|
2072
|
-
* EC2-Classic retires on August 15, 2022. This
|
2072
|
+
* EC2-Classic retires on August 15, 2022. This property is not supported after that date. The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to.
|
2073
2073
|
*/
|
2074
2074
|
ClassicLinkVPCId?: XmlStringMaxLen255;
|
2075
2075
|
/**
|
2076
|
-
* EC2-Classic retires on August 15, 2022. This
|
2076
|
+
* EC2-Classic retires on August 15, 2022. This property is not supported after that date. The IDs of one or more security groups for the VPC specified in ClassicLinkVPCId.
|
2077
2077
|
*/
|
2078
2078
|
ClassicLinkVPCSecurityGroups?: ClassicLinkVPCSecurityGroups;
|
2079
2079
|
/**
|
@@ -2081,7 +2081,7 @@ declare namespace AutoScaling {
|
|
2081
2081
|
*/
|
2082
2082
|
UserData?: XmlStringUserData;
|
2083
2083
|
/**
|
2084
|
-
* The instance type for the instances. For information about available instance types, see Available
|
2084
|
+
* The instance type for the instances. For information about available instance types, see Available instance types in the Amazon EC2 User Guide for Linux Instances.
|
2085
2085
|
*/
|
2086
2086
|
InstanceType: XmlStringMaxLen255;
|
2087
2087
|
/**
|
@@ -2093,7 +2093,7 @@ declare namespace AutoScaling {
|
|
2093
2093
|
*/
|
2094
2094
|
RamdiskId?: XmlStringMaxLen255;
|
2095
2095
|
/**
|
2096
|
-
*
|
2096
|
+
* The block device mapping entries that define the block devices to attach to the instances at launch. By default, the block devices specified in the block device mapping for the AMI are used. For more information, see Block Device Mapping in the Amazon EC2 User Guide for Linux Instances.
|
2097
2097
|
*/
|
2098
2098
|
BlockDeviceMappings?: BlockDeviceMappings;
|
2099
2099
|
/**
|
@@ -2117,7 +2117,7 @@ declare namespace AutoScaling {
|
|
2117
2117
|
*/
|
2118
2118
|
EbsOptimized?: EbsOptimized;
|
2119
2119
|
/**
|
2120
|
-
*
|
2120
|
+
* Specifies whether to assign a public IPv4 address to the group's instances. If the instance is launched into a default subnet, the default is to assign a public IPv4 address, unless you disabled the option to assign a public IPv4 address on the subnet. If the instance is launched into a nondefault subnet, the default is not to assign a public IPv4 address, unless you enabled the option to assign a public IPv4 address on the subnet. For more information, see Launching Auto Scaling instances in a VPC in the Amazon EC2 Auto Scaling User Guide.
|
2121
2121
|
*/
|
2122
2122
|
AssociatePublicIpAddress?: AssociatePublicIpAddress;
|
2123
2123
|
/**
|
@@ -2138,7 +2138,7 @@ declare namespace AutoScaling {
|
|
2138
2138
|
export type LaunchConfigurationNames = XmlStringMaxLen255[];
|
2139
2139
|
export interface LaunchConfigurationNamesType {
|
2140
2140
|
/**
|
2141
|
-
* The launch configuration names. If you omit this
|
2141
|
+
* The launch configuration names. If you omit this property, all launch configurations are described. Array Members: Maximum number of 50 items.
|
2142
2142
|
*/
|
2143
2143
|
LaunchConfigurationNames?: LaunchConfigurationNames;
|
2144
2144
|
/**
|
@@ -2216,11 +2216,11 @@ declare namespace AutoScaling {
|
|
2216
2216
|
*/
|
2217
2217
|
AutoScalingGroupName?: XmlStringMaxLen255;
|
2218
2218
|
/**
|
2219
|
-
* The
|
2219
|
+
* The lifecycle transition. Valid values: autoscaling:EC2_INSTANCE_LAUNCHING | autoscaling:EC2_INSTANCE_TERMINATING
|
2220
2220
|
*/
|
2221
2221
|
LifecycleTransition?: LifecycleTransition;
|
2222
2222
|
/**
|
2223
|
-
* The ARN of the target that Amazon EC2 Auto Scaling sends notifications to when an instance is in
|
2223
|
+
* The ARN of the target that Amazon EC2 Auto Scaling sends notifications to when an instance is in a wait state for the lifecycle hook.
|
2224
2224
|
*/
|
2225
2225
|
NotificationTargetARN?: NotificationTargetResourceName;
|
2226
2226
|
/**
|
@@ -2232,7 +2232,7 @@ declare namespace AutoScaling {
|
|
2232
2232
|
*/
|
2233
2233
|
NotificationMetadata?: XmlStringMaxLen1023;
|
2234
2234
|
/**
|
2235
|
-
* The maximum time, in seconds, that can elapse before the lifecycle hook times out. If the lifecycle hook times out, Amazon EC2 Auto Scaling performs the action that you specified in the DefaultResult
|
2235
|
+
* The maximum time, in seconds, that can elapse before the lifecycle hook times out. If the lifecycle hook times out, Amazon EC2 Auto Scaling performs the action that you specified in the DefaultResult property.
|
2236
2236
|
*/
|
2237
2237
|
HeartbeatTimeout?: HeartbeatTimeout;
|
2238
2238
|
/**
|
@@ -2240,7 +2240,7 @@ declare namespace AutoScaling {
|
|
2240
2240
|
*/
|
2241
2241
|
GlobalTimeout?: GlobalTimeout;
|
2242
2242
|
/**
|
2243
|
-
*
|
2243
|
+
* The action the Auto Scaling group takes when the lifecycle hook timeout elapses or if an unexpected failure occurs. Valid values: CONTINUE | ABANDON
|
2244
2244
|
*/
|
2245
2245
|
DefaultResult?: LifecycleActionResult;
|
2246
2246
|
}
|
@@ -2251,7 +2251,7 @@ declare namespace AutoScaling {
|
|
2251
2251
|
*/
|
2252
2252
|
LifecycleHookName: AsciiStringMaxLen255;
|
2253
2253
|
/**
|
2254
|
-
* The
|
2254
|
+
* The lifecycle transition. For Auto Scaling groups, there are two major lifecycle transitions. To create a lifecycle hook for scale-out events, specify autoscaling:EC2_INSTANCE_LAUNCHING. To create a lifecycle hook for scale-in events, specify autoscaling:EC2_INSTANCE_TERMINATING.
|
2255
2255
|
*/
|
2256
2256
|
LifecycleTransition: LifecycleTransition;
|
2257
2257
|
/**
|
@@ -2259,19 +2259,19 @@ declare namespace AutoScaling {
|
|
2259
2259
|
*/
|
2260
2260
|
NotificationMetadata?: XmlStringMaxLen1023;
|
2261
2261
|
/**
|
2262
|
-
* The maximum time, in seconds, that can elapse before the lifecycle hook times out.
|
2262
|
+
* The maximum time, in seconds, that can elapse before the lifecycle hook times out. The range is from 30 to 7200 seconds. The default value is 3600 seconds (1 hour).
|
2263
2263
|
*/
|
2264
2264
|
HeartbeatTimeout?: HeartbeatTimeout;
|
2265
2265
|
/**
|
2266
|
-
*
|
2266
|
+
* The action the Auto Scaling group takes when the lifecycle hook timeout elapses or if an unexpected failure occurs. The default value is ABANDON. Valid values: CONTINUE | ABANDON
|
2267
2267
|
*/
|
2268
2268
|
DefaultResult?: LifecycleActionResult;
|
2269
2269
|
/**
|
2270
|
-
* The ARN of the target that Amazon EC2 Auto Scaling sends notifications to when an instance is in
|
2270
|
+
* The Amazon Resource Name (ARN) of the notification target that Amazon EC2 Auto Scaling sends notifications to when an instance is in a wait state for the lifecycle hook. You can specify an Amazon SNS topic or an Amazon SQS queue.
|
2271
2271
|
*/
|
2272
2272
|
NotificationTargetARN?: NotificationTargetResourceName;
|
2273
2273
|
/**
|
2274
|
-
* The ARN of the IAM role that allows the Auto Scaling group to publish to the specified notification target. Valid only if the notification target is an Amazon SNS topic or an Amazon SQS queue.
|
2274
|
+
* The ARN of the IAM role that allows the Auto Scaling group to publish to the specified notification target. For information about creating this role, see Configure a notification target for a lifecycle hook in the Amazon EC2 Auto Scaling User Guide. Valid only if the notification target is an Amazon SNS topic or an Amazon SQS queue.
|
2275
2275
|
*/
|
2276
2276
|
RoleARN?: XmlStringMaxLen255;
|
2277
2277
|
}
|
@@ -2435,11 +2435,11 @@ declare namespace AutoScaling {
|
|
2435
2435
|
export type MixedInstanceSpotPrice = string;
|
2436
2436
|
export interface MixedInstancesPolicy {
|
2437
2437
|
/**
|
2438
|
-
*
|
2438
|
+
* One or more launch templates and the instance types (overrides) that are used to launch EC2 instances to fulfill On-Demand and Spot capacities.
|
2439
2439
|
*/
|
2440
2440
|
LaunchTemplate?: LaunchTemplate;
|
2441
2441
|
/**
|
2442
|
-
*
|
2442
|
+
* The instances distribution.
|
2443
2443
|
*/
|
2444
2444
|
InstancesDistribution?: InstancesDistribution;
|
2445
2445
|
}
|
@@ -2652,7 +2652,7 @@ declare namespace AutoScaling {
|
|
2652
2652
|
*/
|
2653
2653
|
AutoScalingGroupName: XmlStringMaxLen255;
|
2654
2654
|
/**
|
2655
|
-
* The
|
2655
|
+
* The lifecycle transition. For Auto Scaling groups, there are two major lifecycle transitions. To create a lifecycle hook for scale-out events, specify autoscaling:EC2_INSTANCE_LAUNCHING. To create a lifecycle hook for scale-in events, specify autoscaling:EC2_INSTANCE_TERMINATING. Required for new lifecycle hooks, but optional when updating existing hooks.
|
2656
2656
|
*/
|
2657
2657
|
LifecycleTransition?: LifecycleTransition;
|
2658
2658
|
/**
|
@@ -2660,7 +2660,7 @@ declare namespace AutoScaling {
|
|
2660
2660
|
*/
|
2661
2661
|
RoleARN?: XmlStringMaxLen255;
|
2662
2662
|
/**
|
2663
|
-
* The ARN of the notification target that Amazon EC2 Auto Scaling uses to notify you when an instance is in
|
2663
|
+
* The Amazon Resource Name (ARN) of the notification target that Amazon EC2 Auto Scaling uses to notify you when an instance is in a wait state for the lifecycle hook. You can specify either an Amazon SNS topic or an Amazon SQS queue. If you specify an empty string, this overrides the current ARN. This operation uses the JSON format when sending notifications to an Amazon SQS queue, and an email key-value pair format when sending notifications to an Amazon SNS topic. When you specify a notification target, Amazon EC2 Auto Scaling sends it a test message. Test messages contain the following additional key-value pair: "Event": "autoscaling:TEST_NOTIFICATION".
|
2664
2664
|
*/
|
2665
2665
|
NotificationTargetARN?: NotificationTargetResourceName;
|
2666
2666
|
/**
|
@@ -2668,11 +2668,11 @@ declare namespace AutoScaling {
|
|
2668
2668
|
*/
|
2669
2669
|
NotificationMetadata?: XmlStringMaxLen1023;
|
2670
2670
|
/**
|
2671
|
-
* The maximum time, in seconds, that can elapse before the lifecycle hook times out. The range is from 30 to 7200 seconds. The default value is 3600 seconds (1 hour).
|
2671
|
+
* The maximum time, in seconds, that can elapse before the lifecycle hook times out. The range is from 30 to 7200 seconds. The default value is 3600 seconds (1 hour).
|
2672
2672
|
*/
|
2673
2673
|
HeartbeatTimeout?: HeartbeatTimeout;
|
2674
2674
|
/**
|
2675
|
-
*
|
2675
|
+
* The action the Auto Scaling group takes when the lifecycle hook timeout elapses or if an unexpected failure occurs. The default value is ABANDON. Valid values: CONTINUE | ABANDON
|
2676
2676
|
*/
|
2677
2677
|
DefaultResult?: LifecycleActionResult;
|
2678
2678
|
}
|
@@ -2736,7 +2736,7 @@ declare namespace AutoScaling {
|
|
2736
2736
|
*/
|
2737
2737
|
EstimatedInstanceWarmup?: EstimatedInstanceWarmup;
|
2738
2738
|
/**
|
2739
|
-
* A target tracking scaling policy. Provides support for predefined or custom metrics. The following predefined metrics are available: ASGAverageCPUUtilization ASGAverageNetworkIn ASGAverageNetworkOut ALBRequestCountPerTarget If you specify ALBRequestCountPerTarget for the metric, you must specify the ResourceLabel
|
2739
|
+
* A target tracking scaling policy. Provides support for predefined or custom metrics. The following predefined metrics are available: ASGAverageCPUUtilization ASGAverageNetworkIn ASGAverageNetworkOut ALBRequestCountPerTarget If you specify ALBRequestCountPerTarget for the metric, you must specify the ResourceLabel property with the PredefinedMetricSpecification. For more information, see TargetTrackingConfiguration in the Amazon EC2 Auto Scaling API Reference. Required if the policy type is TargetTrackingScaling.
|
2740
2740
|
*/
|
2741
2741
|
TargetTrackingConfiguration?: TargetTrackingConfiguration;
|
2742
2742
|
/**
|
@@ -2758,15 +2758,15 @@ declare namespace AutoScaling {
|
|
2758
2758
|
*/
|
2759
2759
|
ScheduledActionName: XmlStringMaxLen255;
|
2760
2760
|
/**
|
2761
|
-
* This
|
2761
|
+
* This property is no longer used.
|
2762
2762
|
*/
|
2763
2763
|
Time?: TimestampType;
|
2764
2764
|
/**
|
2765
|
-
* The date and time for this action to start, in YYYY-MM-DDThh:mm:ssZ format in UTC/GMT only and in quotes (for example, "
|
2765
|
+
* The date and time for this action to start, in YYYY-MM-DDThh:mm:ssZ format in UTC/GMT only and in quotes (for example, "2021-06-01T00:00:00Z"). If you specify Recurrence and StartTime, Amazon EC2 Auto Scaling performs the action at this time, and then performs the action based on the specified recurrence.
|
2766
2766
|
*/
|
2767
2767
|
StartTime?: TimestampType;
|
2768
2768
|
/**
|
2769
|
-
* The date and time for the recurring schedule to end, in UTC.
|
2769
|
+
* The date and time for the recurring schedule to end, in UTC. For example, "2021-06-01T00:00:00Z".
|
2770
2770
|
*/
|
2771
2771
|
EndTime?: TimestampType;
|
2772
2772
|
/**
|
@@ -2782,7 +2782,7 @@ declare namespace AutoScaling {
|
|
2782
2782
|
*/
|
2783
2783
|
MaxSize?: AutoScalingGroupMaxSize;
|
2784
2784
|
/**
|
2785
|
-
* The desired capacity is the initial capacity of the Auto Scaling group after the scheduled action runs and the capacity it attempts to maintain. It can scale beyond this capacity if you add more scaling conditions.
|
2785
|
+
* The desired capacity is the initial capacity of the Auto Scaling group after the scheduled action runs and the capacity it attempts to maintain. It can scale beyond this capacity if you add more scaling conditions. You must specify at least one of the following properties: MaxSize, MinSize, or DesiredCapacity.
|
2786
2786
|
*/
|
2787
2787
|
DesiredCapacity?: AutoScalingGroupDesiredCapacity;
|
2788
2788
|
/**
|
@@ -2936,7 +2936,7 @@ declare namespace AutoScaling {
|
|
2936
2936
|
*/
|
2937
2937
|
AutoScalingGroupName: XmlStringMaxLen255;
|
2938
2938
|
/**
|
2939
|
-
* One or more of the following processes: Launch Terminate AddToLoadBalancer AlarmNotification AZRebalance HealthCheck InstanceRefresh ReplaceUnhealthy ScheduledActions If you omit this
|
2939
|
+
* One or more of the following processes: Launch Terminate AddToLoadBalancer AlarmNotification AZRebalance HealthCheck InstanceRefresh ReplaceUnhealthy ScheduledActions If you omit this property, all processes are specified.
|
2940
2940
|
*/
|
2941
2941
|
ScalingProcesses?: ProcessNames;
|
2942
2942
|
}
|
@@ -2965,7 +2965,7 @@ declare namespace AutoScaling {
|
|
2965
2965
|
*/
|
2966
2966
|
ScheduledActionARN?: ResourceName;
|
2967
2967
|
/**
|
2968
|
-
* This
|
2968
|
+
* This property is no longer used.
|
2969
2969
|
*/
|
2970
2970
|
Time?: TimestampType;
|
2971
2971
|
/**
|
@@ -3117,7 +3117,7 @@ declare namespace AutoScaling {
|
|
3117
3117
|
*/
|
3118
3118
|
MetricIntervalUpperBound?: MetricScale;
|
3119
3119
|
/**
|
3120
|
-
* The amount by which to scale, based on the specified adjustment type. A positive value adds to the current capacity while a negative number removes from the current capacity.
|
3120
|
+
* The amount by which to scale, based on the specified adjustment type. A positive value adds to the current capacity while a negative number removes from the current capacity. The amount by which to scale. The adjustment is based on the value that you specified in the AdjustmentType property (either an absolute number or a percentage). A positive value adds to the current capacity and a negative number subtracts from the current capacity.
|
3121
3121
|
*/
|
3122
3122
|
ScalingAdjustment: PolicyIncrement;
|
3123
3123
|
}
|
@@ -3282,11 +3282,11 @@ declare namespace AutoScaling {
|
|
3282
3282
|
*/
|
3283
3283
|
PlacementGroup?: XmlStringMaxLen255;
|
3284
3284
|
/**
|
3285
|
-
* A comma-separated list of subnet IDs for a virtual private cloud (VPC). If you specify VPCZoneIdentifier with AvailabilityZones, the subnets that you specify
|
3285
|
+
* A comma-separated list of subnet IDs for a virtual private cloud (VPC). If you specify VPCZoneIdentifier with AvailabilityZones, the subnets that you specify must reside in those Availability Zones.
|
3286
3286
|
*/
|
3287
3287
|
VPCZoneIdentifier?: XmlStringMaxLen2047;
|
3288
3288
|
/**
|
3289
|
-
* A policy or a list of policies that are used to select the instances to terminate. The policies are executed in the order that you list them. For more information, see
|
3289
|
+
* A policy or a list of policies that are used to select the instances to terminate. The policies are executed in the order that you list them. For more information, see Work with Amazon EC2 Auto Scaling termination policies in the Amazon EC2 Auto Scaling User Guide. Valid values: Default | AllocationStrategy | ClosestToNextInstanceHour | NewestInstance | OldestInstance | OldestLaunchConfiguration | OldestLaunchTemplate | arn:aws:lambda:region:account-id:function:my-function:my-alias
|
3290
3290
|
*/
|
3291
3291
|
TerminationPolicies?: TerminationPolicies;
|
3292
3292
|
/**
|
@@ -3302,7 +3302,7 @@ declare namespace AutoScaling {
|
|
3302
3302
|
*/
|
3303
3303
|
MaxInstanceLifetime?: MaxInstanceLifetime;
|
3304
3304
|
/**
|
3305
|
-
* Enables or disables Capacity Rebalancing. For more information, see Amazon EC2
|
3305
|
+
* Enables or disables Capacity Rebalancing. For more information, see Use Capacity Rebalancing to handle Amazon EC2 Spot Interruptions in the Amazon EC2 Auto Scaling User Guide.
|
3306
3306
|
*/
|
3307
3307
|
CapacityRebalance?: CapacityRebalanceEnabled;
|
3308
3308
|
/**
|