Class: Aws::CloudFormation::Types::StackDriftInformationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::StackDriftInformationSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#last_check_timestamp ⇒ Time
Most recent time when a drift detection operation was initiated on the stack, or any of its individual resources that support drift detection.
-
#stack_drift_status ⇒ String
Status of the stack’s actual configuration compared to its expected template configuration.
Instance Attribute Details
#last_check_timestamp ⇒ Time
Most recent time when a drift detection operation was initiated on the stack, or any of its individual resources that support drift detection.
7876 7877 7878 7879 7880 7881 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 7876 class StackDriftInformationSummary < Struct.new( :stack_drift_status, :last_check_timestamp) SENSITIVE = [] include Aws::Structure end |
#stack_drift_status ⇒ String
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.
7876 7877 7878 7879 7880 7881 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 7876 class StackDriftInformationSummary < Struct.new( :stack_drift_status, :last_check_timestamp) SENSITIVE = [] include Aws::Structure end |