@aws-sdk/client-auto-scaling 3.131.0 → 3.136.1
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/CHANGELOG.md +8 -0
- package/README.md +2 -5
- package/dist-types/AutoScaling.d.ts +61 -51
- package/dist-types/AutoScalingClient.d.ts +6 -5
- package/dist-types/commands/AttachLoadBalancerTargetGroupsCommand.d.ts +8 -7
- package/dist-types/commands/AttachLoadBalancersCommand.d.ts +7 -8
- package/dist-types/commands/CreateAutoScalingGroupCommand.d.ts +3 -3
- package/dist-types/commands/CreateLaunchConfigurationCommand.d.ts +2 -2
- package/dist-types/commands/CreateOrUpdateTagsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeLoadBalancerTargetGroupsCommand.d.ts +5 -5
- package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +6 -5
- package/dist-types/commands/DescribeMetricCollectionTypesCommand.d.ts +0 -2
- package/dist-types/commands/DescribeTagsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTerminationPolicyTypesCommand.d.ts +3 -3
- package/dist-types/commands/DetachLoadBalancerTargetGroupsCommand.d.ts +4 -0
- package/dist-types/commands/DetachLoadBalancersCommand.d.ts +2 -2
- package/dist-types/commands/DisableMetricsCollectionCommand.d.ts +1 -1
- package/dist-types/commands/EnableMetricsCollectionCommand.d.ts +5 -1
- package/dist-types/commands/PutScheduledUpdateGroupActionCommand.d.ts +2 -0
- package/dist-types/commands/UpdateAutoScalingGroupCommand.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +253 -219
- package/package.json +1 -1
|
@@ -7,7 +7,11 @@ export interface EnableMetricsCollectionCommandInput extends EnableMetricsCollec
|
|
|
7
7
|
export interface EnableMetricsCollectionCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Enables group metrics for the specified Auto Scaling group
|
|
10
|
+
* <p>Enables group metrics collection for the specified Auto Scaling group.</p>
|
|
11
|
+
* <p>You can use these metrics to track changes in an Auto Scaling group and to set alarms on
|
|
12
|
+
* threshold values. You can view group metrics using the Amazon EC2 Auto Scaling console or the CloudWatch
|
|
13
|
+
* console. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-cloudwatch-monitoring.html">Monitor
|
|
14
|
+
* CloudWatch metrics for your Auto Scaling groups and instances</a> in the
|
|
11
15
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
12
16
|
* @example
|
|
13
17
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -12,6 +12,8 @@ export interface PutScheduledUpdateGroupActionCommandOutput extends __MetadataBe
|
|
|
12
12
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
13
13
|
* <p>You can view the scheduled actions for an Auto Scaling group using the <a>DescribeScheduledActions</a> API call. If you are no longer using a
|
|
14
14
|
* scheduled action, you can delete it by calling the <a>DeleteScheduledAction</a> API.</p>
|
|
15
|
+
* <p>If you try to schedule your action in the past, Amazon EC2 Auto Scaling returns an error
|
|
16
|
+
* message.</p>
|
|
15
17
|
* @example
|
|
16
18
|
* Use a bare-bones client and the command you need to make an API call.
|
|
17
19
|
* ```javascript
|
|
@@ -11,8 +11,8 @@ export interface UpdateAutoScalingGroupCommandOutput extends __MetadataBearer {
|
|
|
11
11
|
* <b>We strongly recommend that all Auto Scaling groups use launch templates to ensure full functionality for Amazon EC2 Auto Scaling and Amazon EC2.</b>
|
|
12
12
|
* </p>
|
|
13
13
|
* <p>Updates the configuration for the specified Auto Scaling group.</p>
|
|
14
|
-
* <p>To update an Auto Scaling group, specify the name of the group and the
|
|
15
|
-
* to change. Any
|
|
14
|
+
* <p>To update an Auto Scaling group, specify the name of the group and the property that you want
|
|
15
|
+
* to change. Any properties that you don't specify are not changed by this update request.
|
|
16
16
|
* The new settings take effect on any scaling activities after this call returns.
|
|
17
17
|
* </p>
|
|
18
18
|
* <p>If you associate a new launch configuration or template with an Auto Scaling group, all new
|
|
@@ -47,7 +47,7 @@ export interface UpdateAutoScalingGroupCommandOutput extends __MetadataBearer {
|
|
|
47
47
|
* <code>DesiredCapacity</code> to the new <code>MaxSize</code> value.</p>
|
|
48
48
|
* </li>
|
|
49
49
|
* </ul>
|
|
50
|
-
* <p>To see which
|
|
50
|
+
* <p>To see which properties have been set, call the <a>DescribeAutoScalingGroups</a> API. To view the scaling policies for an Auto Scaling
|
|
51
51
|
* group, call the <a>DescribePolicies</a> API. If the group has scaling
|
|
52
52
|
* policies, you can update them by calling the <a>PutScalingPolicy</a>
|
|
53
53
|
* API.</p>
|