[][src]Struct rusoto_autoscaling::PutScheduledUpdateGroupActionType

pub struct PutScheduledUpdateGroupActionType {
    pub auto_scaling_group_name: 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_name: String,
    pub start_time: Option<String>,
    pub time: Option<String>,
}

Fields

auto_scaling_group_name: String

The name of the Auto Scaling group.

desired_capacity: Option<i64>

The number of EC2 instances that should be running in the Auto Scaling group.

end_time: Option<String>

The date and time for the recurring schedule to end. Amazon EC2 Auto Scaling does not perform the action after this time.

max_size: Option<i64>

The maximum number of instances in the Auto Scaling group.

min_size: Option<i64>

The minimum number of instances in the Auto Scaling group.

recurrence: Option<String>

The recurring schedule for this action, in Unix cron syntax format. This format consists of five fields separated by white spaces: [Minute] [Hour] [Day_of_Month] [Month_of_Year] [Day_of_Week]. The value must be in quotes (for example, "30 0 1 1,6,12 *"). For more information about this format, see Crontab.

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

scheduled_action_name: String

The name of this scaling action.

start_time: Option<String>

The date and time for this action to start, in YYYY-MM-DDThh:mm:ssZ format in UTC/GMT only and in quotes (for example, "2019-06-01T00:00:00Z").

If you specify Recurrence and StartTime, Amazon EC2 Auto Scaling performs the action at this time, and then performs the action based on the specified recurrence.

If you try to schedule your action in the past, Amazon EC2 Auto Scaling returns an error message.

time: Option<String>

This parameter is no longer used.

Trait Implementations

impl Clone for PutScheduledUpdateGroupActionType[src]

impl Default for PutScheduledUpdateGroupActionType[src]

impl PartialEq<PutScheduledUpdateGroupActionType> for PutScheduledUpdateGroupActionType[src]

impl Debug for PutScheduledUpdateGroupActionType[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self