[−][src]Struct rusoto_cloudformation::StackInstanceSummary
The structure that contains summary information about a stack instance.
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_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
: ADeleteStackInstances
operation has failed and left the stack in an unstable state. Stacks in this state are excluded from furtherUpdateStackSet
operations. You might need to perform aDeleteStackInstances
operation, withRetainStacks
set totrue
, 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
orUpdateStackSet
operation. -
The stack was part of a
CreateStackSet
orUpdateStackSet
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 assigned to this stack instance.
Trait Implementations
impl PartialEq<StackInstanceSummary> for StackInstanceSummary
[src]
fn eq(&self, other: &StackInstanceSummary) -> bool
[src]
fn ne(&self, other: &StackInstanceSummary) -> bool
[src]
impl Default for StackInstanceSummary
[src]
fn default() -> StackInstanceSummary
[src]
impl Clone for StackInstanceSummary
[src]
fn clone(&self) -> StackInstanceSummary
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for StackInstanceSummary
[src]
Auto Trait Implementations
impl Send for StackInstanceSummary
impl Sync for StackInstanceSummary
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self