| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.CloudFormation.Types.StackDriftInformation
Description
Synopsis
Documentation
data StackDriftInformation 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: newStackDriftInformation smart constructor.
Constructors
| StackDriftInformation' | |
Fields
| |
Instances
newStackDriftInformation Source #
Create a value of StackDriftInformation 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:StackDriftInformation', stackDriftInformation_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:StackDriftInformation', stackDriftInformation_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 hasn't 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.
stackDriftInformation_lastCheckTimestamp :: Lens' StackDriftInformation (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.
stackDriftInformation_stackDriftStatus :: Lens' StackDriftInformation 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 hasn't 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.