paws.management (version 0.1.0)

autoscaling_describe_scheduled_actions: Describes the actions scheduled for your Auto Scaling group that haven't run

Description

Describes the actions scheduled for your Auto Scaling group that haven't run. To describe the actions that have already run, use DescribeScalingActivities.

Usage

autoscaling_describe_scheduled_actions(AutoScalingGroupName,
  ScheduledActionNames, StartTime, EndTime, NextToken, MaxRecords)

Arguments

AutoScalingGroupName

The name of the Auto Scaling group.

ScheduledActionNames

The names of one or more scheduled actions. You can specify up to 50 actions. If you omit this parameter, all scheduled actions are described. If you specify an unknown scheduled action, it is ignored with no error.

StartTime

The earliest scheduled start time to return. If scheduled action names are provided, this parameter is ignored.

EndTime

The latest scheduled start time to return. If scheduled action names are provided, this parameter is ignored.

NextToken

The token for the next set of items to return. (You received this token from a previous call.)

MaxRecords

The maximum number of items to return with this call. The default value is 50 and the maximum value is 100.

Request syntax

svc$describe_scheduled_actions(
  AutoScalingGroupName = "string",
  ScheduledActionNames = list(
    "string"
  ),
  StartTime = as.POSIXct(
    "2015-01-01"
  ),
  EndTime = as.POSIXct(
    "2015-01-01"
  ),
  NextToken = "string",
  MaxRecords = 123
)

Examples

Run this code
# NOT RUN {
# This example describes the scheduled actions for the specified Auto
# Scaling group.
# }
# NOT RUN {
svc$describe_scheduled_actions(
  AutoScalingGroupName = "my-auto-scaling-group"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab