[][src]Struct rusoto_cloudformation::PropertyDifference

pub struct PropertyDifference {
    pub actual_value: String,
    pub difference_type: String,
    pub expected_value: String,
    pub property_path: String,
}

Information about a resource property whose actual value differs from its expected value, as defined in the stack template and any values specified as template parameters. These will be present only for resources whose StackResourceDriftStatus is MODIFIED. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

Fields

actual_value: String

The actual property value of the resource property.

difference_type: String

The type of property difference.

  • ADD: A value has been added to a resource property that is an array or list data type.

  • REMOVE: The property has been removed from the current resource configuration.

  • NOT_EQUAL: The current property value differs from its expected value (as defined in the stack template and any values specified as template parameters).

expected_value: String

The expected property value of the resource property, as defined in the stack template and any values specified as template parameters.

property_path: String

The fully-qualified path to the resource property.

Trait Implementations

impl Clone for PropertyDifference[src]

impl Debug for PropertyDifference[src]

impl Default for PropertyDifference[src]

impl PartialEq<PropertyDifference> for PropertyDifference[src]

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