You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AutoScaling::Types::DescribeScheduledActionsType

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DescribeScheduledActionsType as input to an Aws::Client method, you can use a vanilla Hash:

{
  auto_scaling_group_name: "ResourceName",
  scheduled_action_names: ["ResourceName"],
  start_time: Time.now,
  end_time: Time.now,
  next_token: "XmlString",
  max_records: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_group_nameString

The name of the Auto Scaling group.

Returns:

  • (String)

    The name of the Auto Scaling group.

#end_timeTime

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

Returns:

  • (Time)

    The latest scheduled start time to return.

#max_recordsInteger

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

Returns:

  • (Integer)

    The maximum number of items to return with this call.

#next_tokenString

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

Returns:

  • (String)

    The token for the next set of items to return.

#scheduled_action_namesArray<String>

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.

Returns:

  • (Array<String>)

    The names of one or more scheduled actions.

#start_timeTime

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

Returns:

  • (Time)

    The earliest scheduled start time to return.