[−][src]Struct rusoto_cloudformation::DescribeStackDriftDetectionStatusOutput
Fields
detection_status: String
The status of the stack drift detection operation.
-
DETECTIONCOMPLETE
: The stack drift detection operation has successfully completed for all resources in the stack that support drift detection. (Resources that do not currently support stack detection remain unchecked.)If you specified logical resource IDs for AWS CloudFormation to use as a filter for the stack drift detection operation, only the resources with those logical IDs are checked for drift.
-
DETECTIONFAILED
: The stack drift detection operation has failed for at least one resource in the stack. Results will be available for resources on which AWS CloudFormation successfully completed drift detection. -
DETECTIONINPROGRESS
: The stack drift detection operation is currently in progress.
detection_status_reason: Option<String>
The reason the stack drift detection operation has its current status.
drifted_stack_resource_count: Option<i64>
Total number of stack resources that have drifted. This is NULL until the drift detection operation reaches a status of DETECTION_COMPLETE
. This value will be 0 for stacks whose drift status is IN_SYNC
.
stack_drift_detection_id: String
The ID of the drift detection results of this operation.
AWS CloudFormation generates new results, with a new drift detection ID, each time this operation is run. However, the number of reports AWS CloudFormation retains for any given stack, and for how long, may vary.
stack_drift_status: Option<String>
Status of the stack's actual configuration compared to its expected 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. -
NOTCHECKED
: AWS CloudFormation has not checked if the stack differs from its expected template configuration. -
INSYNC
: The stack's actual configuration matches its expected template configuration. -
UNKNOWN
: This value is reserved for future use.
stack_id: String
The ID of the stack.
timestamp: String
Time at which the stack drift detection operation was initiated.
Trait Implementations
impl PartialEq<DescribeStackDriftDetectionStatusOutput> for DescribeStackDriftDetectionStatusOutput
[src]
fn eq(&self, other: &DescribeStackDriftDetectionStatusOutput) -> bool
[src]
fn ne(&self, other: &DescribeStackDriftDetectionStatusOutput) -> bool
[src]
impl Default for DescribeStackDriftDetectionStatusOutput
[src]
impl Clone for DescribeStackDriftDetectionStatusOutput
[src]
fn clone(&self) -> DescribeStackDriftDetectionStatusOutput
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for DescribeStackDriftDetectionStatusOutput
[src]
Auto Trait Implementations
impl Send for DescribeStackDriftDetectionStatusOutput
impl Sync for DescribeStackDriftDetectionStatusOutput
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