[][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 PartialEq<StackResourceDriftInformationSummary> for StackResourceDriftInformationSummary[src]

impl Default for StackResourceDriftInformationSummary[src]

impl Clone for StackResourceDriftInformationSummary[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for StackResourceDriftInformationSummary[src]

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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

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