libZSservicesZSamazonka-cloudformationZSamazonka-cloudformation
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CloudFormation.Types.PropertyDifference

Description

 
Synopsis

Documentation

data PropertyDifference Source #

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.

See: newPropertyDifference smart constructor.

Constructors

PropertyDifference' 

Fields

  • propertyPath :: Text

    The fully-qualified path to the resource property.

  • expectedValue :: Text

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

  • actualValue :: Text

    The actual property value of the resource property.

  • differenceType :: DifferenceType

    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).

Instances

Instances details
Eq PropertyDifference Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.PropertyDifference

Read PropertyDifference Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.PropertyDifference

Show PropertyDifference Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.PropertyDifference

Generic PropertyDifference Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.PropertyDifference

Associated Types

type Rep PropertyDifference :: Type -> Type #

NFData PropertyDifference Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.PropertyDifference

Methods

rnf :: PropertyDifference -> () #

Hashable PropertyDifference Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.PropertyDifference

FromXML PropertyDifference Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.PropertyDifference

type Rep PropertyDifference Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.PropertyDifference

type Rep PropertyDifference = D1 ('MetaData "PropertyDifference" "Amazonka.CloudFormation.Types.PropertyDifference" "libZSservicesZSamazonka-cloudformationZSamazonka-cloudformation" 'False) (C1 ('MetaCons "PropertyDifference'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "propertyPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "expectedValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "actualValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "differenceType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DifferenceType))))

newPropertyDifference Source #

Create a value of PropertyDifference with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:propertyPath:PropertyDifference', propertyDifference_propertyPath - The fully-qualified path to the resource property.

$sel:expectedValue:PropertyDifference', propertyDifference_expectedValue - The expected property value of the resource property, as defined in the stack template and any values specified as template parameters.

$sel:actualValue:PropertyDifference', propertyDifference_actualValue - The actual property value of the resource property.

$sel:differenceType:PropertyDifference', propertyDifference_differenceType - 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).

propertyDifference_propertyPath :: Lens' PropertyDifference Text Source #

The fully-qualified path to the resource property.

propertyDifference_expectedValue :: Lens' PropertyDifference Text Source #

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

propertyDifference_actualValue :: Lens' PropertyDifference Text Source #

The actual property value of the resource property.

propertyDifference_differenceType :: Lens' PropertyDifference DifferenceType Source #

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).