[−][src]Struct rusoto_autoscaling::PutScheduledUpdateGroupActionType
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 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 for the Auto Scaling group.
min_size: Option<i64>
The minimum size for 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.
scheduled_action_name: String
The name of this scaling action.
start_time: Option<String>
The 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 deprecated.
Trait Implementations
impl PartialEq<PutScheduledUpdateGroupActionType> for PutScheduledUpdateGroupActionType
[src]
fn eq(&self, other: &PutScheduledUpdateGroupActionType) -> bool
[src]
fn ne(&self, other: &PutScheduledUpdateGroupActionType) -> bool
[src]
impl Default for PutScheduledUpdateGroupActionType
[src]
impl Clone for PutScheduledUpdateGroupActionType
[src]
fn clone(&self) -> PutScheduledUpdateGroupActionType
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for PutScheduledUpdateGroupActionType
[src]
Auto Trait Implementations
impl Send for PutScheduledUpdateGroupActionType
impl Sync for PutScheduledUpdateGroupActionType
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self