Learn R Programming

paws.management (version 0.1.6)

autoscaling_resume_processes: Resumes the specified suspended automatic scaling processes, or all suspended process, for the specified Auto Scaling group

Description

Resumes the specified suspended automatic scaling processes, or all suspended process, for the specified Auto Scaling group.

Usage

autoscaling_resume_processes(AutoScalingGroupName, ScalingProcesses)

Arguments

AutoScalingGroupName

[required] The name of the Auto Scaling group.

ScalingProcesses

One or more of the following processes. If you omit this parameter, all processes are specified.

  • Launch

  • Terminate

  • HealthCheck

  • ReplaceUnhealthy

  • AZRebalance

  • AlarmNotification

  • ScheduledActions

  • AddToLoadBalancer

Request syntax

svc$resume_processes(
  AutoScalingGroupName = "string",
  ScalingProcesses = list(
    "string"
  )
)

Details

For more information, see Suspending and Resuming Scaling Processes in the Amazon EC2 Auto Scaling User Guide.

Examples

Run this code
# NOT RUN {
# This example resumes the specified suspended scaling process for the
# specified Auto Scaling group.
# }
# NOT RUN {
svc$resume_processes(
  AutoScalingGroupName = "my-auto-scaling-group",
  ScalingProcesses = list(
    "AlarmNotification"
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab