paws.management (version 0.1.0)

autoscaling_exit_standby: Moves the specified instances out of the standby state

Description

Moves the specified instances out of the standby state.

Usage

autoscaling_exit_standby(InstanceIds, AutoScalingGroupName)

Arguments

InstanceIds

The IDs of the instances. You can specify up to 20 instances.

AutoScalingGroupName

[required] The name of the Auto Scaling group.

Request syntax

svc$exit_standby(
  InstanceIds = list(
    "string"
  ),
  AutoScalingGroupName = "string"
)

Details

For more information, see Temporarily Removing Instances from Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

Examples

Run this code
# NOT RUN {
# This example moves the specified instance out of standby mode.
# }
# NOT RUN {
svc$exit_standby(
  AutoScalingGroupName = "my-auto-scaling-group",
  InstanceIds = list(
    "i-93633f9b"
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab