[][src]Struct rusoto_cloudformation::StackResourceDriftInformationSummary

pub struct StackResourceDriftInformationSummary {
    pub last_check_timestamp: Option<String>,
    pub stack_resource_drift_status: String,
}

Summarizes 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: String

Status 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. If you performed an ContinueUpdateRollback operation on a stack, any resources included in ResourcesToSkip will also have a status of NOTCHECKED. For more information on skipping resources during rollback operations, see Continue Rolling Back an Update in the AWS CloudFormation User Guide.

  • INSYNC: The resources's actual configuration matches its expected configuration.

Trait Implementations

impl Clone for StackResourceDriftInformationSummary[src]

impl Debug for StackResourceDriftInformationSummary[src]

impl Default for StackResourceDriftInformationSummary[src]

impl PartialEq<StackResourceDriftInformationSummary> for StackResourceDriftInformationSummary[src]

impl StructuralPartialEq for StackResourceDriftInformationSummary[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.