[][src]Struct rusoto_cloudformation::DescribeStackDriftDetectionStatusOutput

pub struct DescribeStackDriftDetectionStatusOutput {
    pub detection_status: String,
    pub detection_status_reason: Option<String>,
    pub drifted_stack_resource_count: Option<i64>,
    pub stack_drift_detection_id: String,
    pub stack_drift_status: Option<String>,
    pub stack_id: String,
    pub timestamp: String,
}

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 Clone for DescribeStackDriftDetectionStatusOutput[src]

impl Debug for DescribeStackDriftDetectionStatusOutput[src]

impl Default for DescribeStackDriftDetectionStatusOutput[src]

impl PartialEq<DescribeStackDriftDetectionStatusOutput> for DescribeStackDriftDetectionStatusOutput[src]

impl StructuralPartialEq for DescribeStackDriftDetectionStatusOutput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.