pub struct StackResourceDriftInformation {
pub last_check_timestamp: Option<String>,
pub stack_resource_drift_status: String,
}Expand description
Contains information about whether the resource's actual configuration differs, or has drifted, from its expected configuration.
Fields§
§last_check_timestamp: Option<String>When AWS CloudFormation last checked if the resource had drifted from its expected configuration.
stack_resource_drift_status: StringStatus of the resource's actual configuration compared to its expected configuration
-
DELETED: The resource differs from its expected configuration in that it has been deleted. -
MODIFIED: The resource differs from its expected configuration. -
NOTCHECKED: AWS CloudFormation has not checked if the resource differs from its expected configuration.Any resources that do not currently support drift detection have a status of
NOTCHECKED. For more information, see Resources that Support Drift Detection. -
IN_SYNC: The resources's actual configuration matches its expected configuration.
Trait Implementations§
Source§impl Clone for StackResourceDriftInformation
impl Clone for StackResourceDriftInformation
Source§fn clone(&self) -> StackResourceDriftInformation
fn clone(&self) -> StackResourceDriftInformation
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for StackResourceDriftInformation
impl Default for StackResourceDriftInformation
Source§fn default() -> StackResourceDriftInformation
fn default() -> StackResourceDriftInformation
Source§impl PartialEq for StackResourceDriftInformation
impl PartialEq for StackResourceDriftInformation
Source§fn eq(&self, other: &StackResourceDriftInformation) -> bool
fn eq(&self, other: &StackResourceDriftInformation) -> bool
self and other values to be equal, and is used by ==.