Learn R Programming

paws.management (version 0.1.12)

autoscaling_cancel_instance_refresh: Cancels an instance refresh operation in progress

Description

Cancels an instance refresh operation in progress. Cancellation does not roll back any replacements that have already been completed, but it prevents new replacements from being started.

For more information, see Replacing Auto Scaling Instances Based on an Instance Refresh.

Usage

autoscaling_cancel_instance_refresh(AutoScalingGroupName)

Value

A list with the following syntax:

list(
  InstanceRefreshId = "string"
)

Arguments

AutoScalingGroupName

[required] The name of the Auto Scaling group.

Request syntax

svc$cancel_instance_refresh(
  AutoScalingGroupName = "string"
)

Examples

Run this code
if (FALSE) {
# This example cancels an instance refresh operation in progress.
svc$cancel_instance_refresh(
  AutoScalingGroupName = "my-auto-scaling-group"
)
}

Run the code above in your browser using DataLab