Struct rusoto_autoscaling::ScheduledUpdateGroupAction [] [src]

pub struct ScheduledUpdateGroupAction {
    pub auto_scaling_group_name: Option<String>,
    pub desired_capacity: Option<i64>,
    pub end_time: Option<String>,
    pub max_size: Option<i64>,
    pub min_size: Option<i64>,
    pub recurrence: Option<String>,
    pub scheduled_action_arn: Option<String>,
    pub scheduled_action_name: Option<String>,
    pub start_time: Option<String>,
    pub time: Option<String>,
}

Describes a scheduled update to an Auto Scaling group.

Fields

The name of the group.

The number of instances you prefer to maintain in the group.

The date and time that the action is scheduled to end. This date and time can be up to one month in the future.

The maximum size of the group.

The minimum size of the group.

The recurring schedule for the action.

The Amazon Resource Name (ARN) of the scheduled action.

The name of the scheduled action.

The date and time that the action is scheduled to begin. This date and time can be up to one month in the future.

When StartTime and EndTime are specified with Recurrence, they form the boundaries of when the recurring action will start and stop.

This parameter is deprecated.

Trait Implementations

impl Default for ScheduledUpdateGroupAction
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for ScheduledUpdateGroupAction
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ScheduledUpdateGroupAction
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations