Struct aws_sdk_cloudformation::model::PropertyDifference
source · [−]#[non_exhaustive]pub struct PropertyDifference { /* private fields */ }Expand description
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.
Implementations
sourceimpl PropertyDifference
impl PropertyDifference
sourcepub fn property_path(&self) -> Option<&str>
pub fn property_path(&self) -> Option<&str>
The fully-qualified path to the resource property.
sourcepub fn expected_value(&self) -> Option<&str>
pub fn expected_value(&self) -> Option<&str>
The expected property value of the resource property, as defined in the stack template and any values specified as template parameters.
sourcepub fn actual_value(&self) -> Option<&str>
pub fn actual_value(&self) -> Option<&str>
The actual property value of the resource property.
sourcepub fn difference_type(&self) -> Option<&DifferenceType>
pub fn difference_type(&self) -> Option<&DifferenceType>
The type of property difference.
-
ADD: A value has been added to a resource property that's 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).
sourceimpl PropertyDifference
impl PropertyDifference
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PropertyDifference.
Trait Implementations
sourceimpl Clone for PropertyDifference
impl Clone for PropertyDifference
sourcefn clone(&self) -> PropertyDifference
fn clone(&self) -> PropertyDifference
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more