Describe Auto Scaling Instances
| autoscaling_describe_auto_scaling_instances | R Documentation |
Gets information about the Auto Scaling instances in the account and Region¶
Description¶
Gets information about the Auto Scaling instances in the account and Region.
Usage¶
Arguments¶
InstanceIdsThe 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.
MaxRecordsThe maximum number of items to return with this call. The default value is
50and the maximum value is50.NextTokenThe token for the next set of items to return. (You received this token from a previous call.)
Value¶
A list with the following syntax:
list(
AutoScalingInstances = list(
list(
InstanceId = "string",
InstanceType = "string",
AutoScalingGroupName = "string",
AvailabilityZone = "string",
LifecycleState = "string",
HealthStatus = "string",
LaunchConfigurationName = "string",
LaunchTemplate = list(
LaunchTemplateId = "string",
LaunchTemplateName = "string",
Version = "string"
),
ProtectedFromScaleIn = TRUE|FALSE,
WeightedCapacity = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_auto_scaling_instances(
InstanceIds = list(
"string"
),
MaxRecords = 123,
NextToken = "string"
)