[][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.

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.

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]

impl Default for DescribeStackDriftDetectionStatusOutput[src]

impl Clone for 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]

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self