Struct aws_sdk_cloudformation::model::StackInstanceSummary
source · [−]#[non_exhaustive]pub struct StackInstanceSummary {
pub stack_set_id: Option<String>,
pub region: Option<String>,
pub account: Option<String>,
pub stack_id: Option<String>,
pub status: Option<StackInstanceStatus>,
pub status_reason: Option<String>,
pub stack_instance_status: Option<StackInstanceComprehensiveStatus>,
pub organizational_unit_id: Option<String>,
pub drift_status: Option<StackDriftStatus>,
pub last_drift_check_timestamp: Option<DateTime>,
}
Expand description
The structure that contains summary information about a stack instance.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.stack_set_id: Option<String>
The name or unique ID of the stack set that the stack instance is associated with.
region: Option<String>
The name of the Amazon Web Services Region that the stack instance is associated with.
account: Option<String>
[Self-managed permissions] The name of the Amazon Web Services account that the stack instance is associated with.
stack_id: Option<String>
The ID of the stack instance.
status: Option<StackInstanceStatus>
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.
stack_instance_status: Option<StackInstanceComprehensiveStatus>
The detailed status of the stack instance.
organizational_unit_id: Option<String>
[Service-managed permissions] The organization root ID or organizational unit (OU) IDs that you specified for DeploymentTargets.
drift_status: Option<StackDriftStatus>
Status of the stack instance's actual configuration compared to the expected template and parameter configuration of the stack set to which it belongs.
-
DRIFTED
: The stack differs from the expected template and parameter configuration of the stack set to which it belongs. A stack instance is considered to have drifted if one or more of the resources in the associated stack have drifted. -
NOT_CHECKED
: CloudFormation hasn't checked if the stack instance differs from its expected stack set configuration. -
IN_SYNC
: The stack instance's actual configuration matches its expected stack set configuration. -
UNKNOWN
: This value is reserved for future use.
last_drift_check_timestamp: Option<DateTime>
Most recent time when CloudFormation performed a drift detection operation on the stack instance. This value will be NULL
for any stack instance on which drift detection hasn't yet been performed.
Implementations
sourceimpl StackInstanceSummary
impl StackInstanceSummary
sourcepub fn stack_set_id(&self) -> Option<&str>
pub fn stack_set_id(&self) -> Option<&str>
The name or unique ID of the stack set that the stack instance is associated with.
sourcepub fn region(&self) -> Option<&str>
pub fn region(&self) -> Option<&str>
The name of the Amazon Web Services Region that the stack instance is associated with.
sourcepub fn account(&self) -> Option<&str>
pub fn account(&self) -> Option<&str>
[Self-managed permissions] The name of the Amazon Web Services account that the stack instance is associated with.
sourcepub fn status(&self) -> Option<&StackInstanceStatus>
pub fn status(&self) -> Option<&StackInstanceStatus>
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.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The explanation for the specific status code assigned to this stack instance.
sourcepub fn stack_instance_status(&self) -> Option<&StackInstanceComprehensiveStatus>
pub fn stack_instance_status(&self) -> Option<&StackInstanceComprehensiveStatus>
The detailed status of the stack instance.
sourcepub fn organizational_unit_id(&self) -> Option<&str>
pub fn organizational_unit_id(&self) -> Option<&str>
[Service-managed permissions] The organization root ID or organizational unit (OU) IDs that you specified for DeploymentTargets.
sourcepub fn drift_status(&self) -> Option<&StackDriftStatus>
pub fn drift_status(&self) -> Option<&StackDriftStatus>
Status of the stack instance's actual configuration compared to the expected template and parameter configuration of the stack set to which it belongs.
-
DRIFTED
: The stack differs from the expected template and parameter configuration of the stack set to which it belongs. A stack instance is considered to have drifted if one or more of the resources in the associated stack have drifted. -
NOT_CHECKED
: CloudFormation hasn't checked if the stack instance differs from its expected stack set configuration. -
IN_SYNC
: The stack instance's actual configuration matches its expected stack set configuration. -
UNKNOWN
: This value is reserved for future use.
sourcepub fn last_drift_check_timestamp(&self) -> Option<&DateTime>
pub fn last_drift_check_timestamp(&self) -> Option<&DateTime>
Most recent time when CloudFormation performed a drift detection operation on the stack instance. This value will be NULL
for any stack instance on which drift detection hasn't yet been performed.
sourceimpl StackInstanceSummary
impl StackInstanceSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StackInstanceSummary
Trait Implementations
sourceimpl Clone for StackInstanceSummary
impl Clone for StackInstanceSummary
sourcefn clone(&self) -> StackInstanceSummary
fn clone(&self) -> StackInstanceSummary
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StackInstanceSummary
impl Debug for StackInstanceSummary
sourceimpl PartialEq<StackInstanceSummary> for StackInstanceSummary
impl PartialEq<StackInstanceSummary> for StackInstanceSummary
sourcefn eq(&self, other: &StackInstanceSummary) -> bool
fn eq(&self, other: &StackInstanceSummary) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &StackInstanceSummary) -> bool
fn ne(&self, other: &StackInstanceSummary) -> bool
This method tests for !=
.
impl StructuralPartialEq for StackInstanceSummary
Auto Trait Implementations
impl RefUnwindSafe for StackInstanceSummary
impl Send for StackInstanceSummary
impl Sync for StackInstanceSummary
impl Unpin for StackInstanceSummary
impl UnwindSafe for StackInstanceSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more