logo
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>,
    pub time_zone: Option<String>,
}
Expand description

Describes a scheduled scaling action.

Fields

auto_scaling_group_name: Option<String>

The name of the Auto Scaling group.

desired_capacity: Option<i64>

The desired capacity is the initial capacity of the Auto Scaling group after the scheduled action runs and the capacity it attempts to maintain.

end_time: Option<String>

The date and time in UTC for the recurring schedule to end. For example, "2019-06-01T00:00:00Z".

max_size: Option<i64>

The maximum size of the Auto Scaling group.

min_size: Option<i64>

The minimum size of the Auto Scaling group.

recurrence: Option<String>

The recurring schedule for the action, in Unix cron syntax format.

When StartTime and EndTime are specified with Recurrence, they form the boundaries of when the recurring action starts and stops.

scheduled_action_arn: Option<String>

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

scheduled_action_name: Option<String>

The name of the scheduled action.

start_time: Option<String>

The date and time in UTC for this action to start. For example, "2019-06-01T00:00:00Z".

time: Option<String>

This parameter is no longer used.

time_zone: Option<String>

The time zone for the cron expression.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more