[][src]Struct rusoto_autoscaling::ScheduledUpdateGroupActionRequest

pub struct ScheduledUpdateGroupActionRequest {
    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>,
}

Describes one or more scheduled scaling action updates for a specified Auto Scaling group. Used in combination with BatchPutScheduledUpdateGroupAction.

When updating a scheduled scaling action, all optional parameters are left unchanged if not specified.

Fields

desired_capacity: Option<i64>

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

end_time: Option<String>

The 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 size of the group.

min_size: Option<i64>

The minimum size of the group.

recurrence: Option<String>

The recurring schedule for the action, in Unix cron syntax format. For more information about this format, see Crontab.

scheduled_action_name: String

The name of the scaling action.

start_time: Option<String>

The time for the action to start, in "YYYY-MM-DDThh:mm:ssZ" format in UTC/GMT only (for example, 2014-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 the action in the past, Amazon EC2 Auto Scaling returns an error message.

Trait Implementations

impl PartialEq<ScheduledUpdateGroupActionRequest> for ScheduledUpdateGroupActionRequest[src]

impl Default for ScheduledUpdateGroupActionRequest[src]

impl Clone for ScheduledUpdateGroupActionRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ScheduledUpdateGroupActionRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self