pub struct AutoScalingGroup {
pub hook: Option<String>,
pub name: Option<String>,
}
Expand description
Information about an Auto Scaling group.
Fields§
§hook: Option<String>
An Auto Scaling lifecycle event hook name.
name: Option<String>
The Auto Scaling group name.
Trait Implementations§
Source§impl Clone for AutoScalingGroup
impl Clone for AutoScalingGroup
Source§fn clone(&self) -> AutoScalingGroup
fn clone(&self) -> AutoScalingGroup
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AutoScalingGroup
impl Debug for AutoScalingGroup
Source§impl Default for AutoScalingGroup
impl Default for AutoScalingGroup
Source§fn default() -> AutoScalingGroup
fn default() -> AutoScalingGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoScalingGroup
impl<'de> Deserialize<'de> for AutoScalingGroup
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AutoScalingGroup
impl PartialEq for AutoScalingGroup
impl StructuralPartialEq for AutoScalingGroup
Auto Trait Implementations§
impl Freeze for AutoScalingGroup
impl RefUnwindSafe for AutoScalingGroup
impl Send for AutoScalingGroup
impl Sync for AutoScalingGroup
impl Unpin for AutoScalingGroup
impl UnwindSafe for AutoScalingGroup
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more