#[non_exhaustive]pub struct StackDriftInformationSummary { /* private fields */ }Expand description
Contains information about whether the stack's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters. A stack is considered to have drifted if one or more of its resources have drifted.
Implementations
sourceimpl StackDriftInformationSummary
impl StackDriftInformationSummary
sourcepub fn stack_drift_status(&self) -> Option<&StackDriftStatus>
pub fn stack_drift_status(&self) -> Option<&StackDriftStatus>
Status of the stack's actual configuration compared to its expected template configuration.
-
DRIFTED: The stack differs from its expected template configuration. A stack is considered to have drifted if one or more of its resources have drifted. -
NOT_CHECKED: CloudFormation hasn't checked if the stack differs from its expected template configuration. -
IN_SYNC: The stack's actual configuration matches its expected template configuration. -
UNKNOWN: This value is reserved for future use.
sourcepub fn last_check_timestamp(&self) -> Option<&DateTime>
pub fn last_check_timestamp(&self) -> Option<&DateTime>
Most recent time when a drift detection operation was initiated on the stack, or any of its individual resources that support drift detection.
sourceimpl StackDriftInformationSummary
impl StackDriftInformationSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StackDriftInformationSummary.
Trait Implementations
sourceimpl Clone for StackDriftInformationSummary
impl Clone for StackDriftInformationSummary
sourcefn clone(&self) -> StackDriftInformationSummary
fn clone(&self) -> StackDriftInformationSummary
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more