[][src]Struct rusoto_servicecatalog::StackInstance

pub struct StackInstance {
    pub account: Option<String>,
    pub region: Option<String>,
    pub stack_instance_status: 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.

region: Option<String>

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

stack_instance_status: Option<String>

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

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]

impl<'de> Deserialize<'de> 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self