[][src]Struct rusoto_cloudformation::StackInstance

pub struct StackInstance {
    pub account: Option<String>,
    pub parameter_overrides: Option<Vec<Parameter>>,
    pub region: Option<String>,
    pub stack_id: Option<String>,
    pub stack_set_id: Option<String>,
    pub status: Option<String>,
    pub status_reason: Option<String>,
}

An AWS CloudFormation stack, in a specific account and region, that's part of a stack set operation. A stack instance is a reference to an attempted or actual stack in a given account within a given region. A stack instance can exist without a stack—for example, if the stack couldn't be created for some reason. A stack instance is associated with only one stack set. Each stack instance contains the ID of its associated stack set, as well as the ID of the actual stack and the stack status.

Fields

account: Option<String>

The name of the AWS account that the stack instance is associated with.

parameter_overrides: Option<Vec<Parameter>>

A list of parameters from the stack set template whose values have been overridden in this stack instance.

region: Option<String>

The name of the AWS region that the stack instance is associated with.

stack_id: Option<String>

The ID of the stack instance.

stack_set_id: Option<String>

The name or unique ID of the stack set that the stack instance is associated with.

status: Option<String>

The status of the stack instance, in terms of its synchronization with its associated stack set.

status_reason: Option<String>

The explanation for the specific status code that is assigned to this stack instance.

Trait Implementations

impl PartialEq<StackInstance> for StackInstance[src]

impl Default for StackInstance[src]

impl Clone for StackInstance[src]

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

Performs copy-assignment from source. Read more

impl Debug for StackInstance[src]

Auto Trait Implementations

impl Send for StackInstance

impl Sync for StackInstance

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