Class: Aws::AutoScaling::Types::BatchPutScheduledUpdateGroupActionType

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-autoscaling/types.rb

Overview

Note:

When making an API call, you may pass BatchPutScheduledUpdateGroupActionType data as a hash:

{
  auto_scaling_group_name: "ResourceName", # required
  scheduled_update_group_actions: [ # required
    {
      scheduled_action_name: "XmlStringMaxLen255", # required
      start_time: Time.now,
      end_time: Time.now,
      recurrence: "XmlStringMaxLen255",
      min_size: 1,
      max_size: 1,
      desired_capacity: 1,
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_group_nameString

The name of the Auto Scaling group.

Returns:

  • (String)


578
579
580
581
582
# File 'lib/aws-sdk-autoscaling/types.rb', line 578

class BatchPutScheduledUpdateGroupActionType < Struct.new(
  :auto_scaling_group_name,
  :scheduled_update_group_actions)
  include Aws::Structure
end

#scheduled_update_group_actionsArray<Types::ScheduledUpdateGroupActionRequest>

One or more scheduled actions. The maximum number allowed is 50.



578
579
580
581
582
# File 'lib/aws-sdk-autoscaling/types.rb', line 578

class BatchPutScheduledUpdateGroupActionType < Struct.new(
  :auto_scaling_group_name,
  :scheduled_update_group_actions)
  include Aws::Structure
end