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

Description

 
Synopsis

Documentation

data StackDriftInformationSummary Source #

Contains information about whether the stack's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters. A stack is considered to have drifted if one or more of its resources have drifted.

See: newStackDriftInformationSummary smart constructor.

Constructors

StackDriftInformationSummary' 

Fields

  • lastCheckTimestamp :: Maybe ISO8601

    Most recent time when a drift detection operation was initiated on the stack, or any of its individual resources that support drift detection.

  • stackDriftStatus :: StackDriftStatus

    Status of the stack's actual configuration compared to its expected template configuration.

    • DRIFTED: The stack differs from its expected template configuration. A stack is considered to have drifted if one or more of its resources have drifted.
    • NOT_CHECKED: CloudFormation has not checked if the stack differs from its expected template configuration.
    • IN_SYNC: The stack's actual configuration matches its expected template configuration.
    • UNKNOWN: This value is reserved for future use.

Instances

Instances details
Eq StackDriftInformationSummary Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.StackDriftInformationSummary

Read StackDriftInformationSummary Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.StackDriftInformationSummary

Show StackDriftInformationSummary Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.StackDriftInformationSummary

Generic StackDriftInformationSummary Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.StackDriftInformationSummary

Associated Types

type Rep StackDriftInformationSummary :: Type -> Type #

NFData StackDriftInformationSummary Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.StackDriftInformationSummary

Hashable StackDriftInformationSummary Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.StackDriftInformationSummary

FromXML StackDriftInformationSummary Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.StackDriftInformationSummary

type Rep StackDriftInformationSummary Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.StackDriftInformationSummary

type Rep StackDriftInformationSummary = D1 ('MetaData "StackDriftInformationSummary" "Amazonka.CloudFormation.Types.StackDriftInformationSummary" "libZSservicesZSamazonka-cloudformationZSamazonka-cloudformation" 'False) (C1 ('MetaCons "StackDriftInformationSummary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "lastCheckTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "stackDriftStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 StackDriftStatus)))

newStackDriftInformationSummary Source #

Create a value of StackDriftInformationSummary 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:lastCheckTimestamp:StackDriftInformationSummary', stackDriftInformationSummary_lastCheckTimestamp - Most recent time when a drift detection operation was initiated on the stack, or any of its individual resources that support drift detection.

$sel:stackDriftStatus:StackDriftInformationSummary', stackDriftInformationSummary_stackDriftStatus - Status of the stack's actual configuration compared to its expected template configuration.

  • DRIFTED: The stack differs from its expected template configuration. A stack is considered to have drifted if one or more of its resources have drifted.
  • NOT_CHECKED: CloudFormation has not checked if the stack differs from its expected template configuration.
  • IN_SYNC: The stack's actual configuration matches its expected template configuration.
  • UNKNOWN: This value is reserved for future use.

stackDriftInformationSummary_lastCheckTimestamp :: Lens' StackDriftInformationSummary (Maybe UTCTime) Source #

Most recent time when a drift detection operation was initiated on the stack, or any of its individual resources that support drift detection.

stackDriftInformationSummary_stackDriftStatus :: Lens' StackDriftInformationSummary StackDriftStatus Source #

Status of the stack's actual configuration compared to its expected template configuration.

  • DRIFTED: The stack differs from its expected template configuration. A stack is considered to have drifted if one or more of its resources have drifted.
  • NOT_CHECKED: CloudFormation has not checked if the stack differs from its expected template configuration.
  • IN_SYNC: The stack's actual configuration matches its expected template configuration.
  • UNKNOWN: This value is reserved for future use.