[][src]Struct rusoto_cloudformation::StackSummary

pub struct StackSummary {
    pub creation_time: String,
    pub deletion_time: Option<String>,
    pub drift_information: Option<StackDriftInformationSummary>,
    pub last_updated_time: Option<String>,
    pub parent_id: Option<String>,
    pub root_id: Option<String>,
    pub stack_id: Option<String>,
    pub stack_name: String,
    pub stack_status: String,
    pub stack_status_reason: Option<String>,
    pub template_description: Option<String>,
}

The StackSummary Data Type

Fields

creation_time: String

The time the stack was created.

deletion_time: Option<String>

The time the stack was deleted.

drift_information: Option<StackDriftInformationSummary>

Summarizes information on whether a stack's actual configuration differs, or has drifted, from it's expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

last_updated_time: Option<String>

The time the stack was last updated. This field will only be returned if the stack has been updated at least once.

parent_id: Option<String>

For nested stacks--stacks created as resources for another stack--the stack ID of the direct parent of this stack. For the first level of nested stacks, the root stack is also the parent stack.

For more information, see Working with Nested Stacks in the AWS CloudFormation User Guide.

root_id: Option<String>

For nested stacks--stacks created as resources for another stack--the stack ID of the the top-level stack to which the nested stack ultimately belongs.

For more information, see Working with Nested Stacks in the AWS CloudFormation User Guide.

stack_id: Option<String>

Unique stack identifier.

stack_name: String

The name associated with the stack.

stack_status: String

The current status of the stack.

stack_status_reason: Option<String>

Success/Failure message associated with the stack status.

template_description: Option<String>

The template description of the template used to create the stack.

Trait Implementations

impl PartialEq<StackSummary> for StackSummary[src]

impl Default for StackSummary[src]

impl Clone for StackSummary[src]

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

Performs copy-assignment from source. Read more

impl Debug for StackSummary[src]

Auto Trait Implementations

impl Send for StackSummary

impl Sync for StackSummary

Blanket Implementations

impl<T> From for T[src]

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, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

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

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

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

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