[][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.

  • INOPERABLE: A DeleteStackInstances operation has failed and left the stack in an unstable state. Stacks in this state are excluded from further UpdateStackSet operations. You might need to perform a DeleteStackInstances operation, with RetainStacks set to true, to delete the stack instance, and then delete the stack manually.

  • OUTDATED: The stack isn't currently up to date with the stack set because:

    • The associated stack failed during a CreateStackSet or UpdateStackSet operation.

    • The stack was part of a CreateStackSet or UpdateStackSet operation that failed or was stopped before the stack was created or updated.

  • CURRENT: The stack is currently up to date with the 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 Clone for StackInstance[src]

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

Performs copy-assignment from source. Read more

impl Default for StackInstance[src]

impl Debug for StackInstance[src]

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?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

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self