Class: Aws::CloudFormation::Types::StackResourceDriftInformationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::StackResourceDriftInformationSummary
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
Summarizes information about whether the resource's actual configuration differs, or has drifted, from its expected configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#last_check_timestamp ⇒ Time
When CloudFormation last checked if the resource had drifted from its expected configuration.
-
#stack_resource_drift_status ⇒ String
Status of the resource's actual configuration compared to its expected configuration.
Instance Attribute Details
#last_check_timestamp ⇒ Time
When CloudFormation last checked if the resource had drifted from its expected configuration.
8799 8800 8801 8802 8803 8804 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 8799 class StackResourceDriftInformationSummary < Struct.new( :stack_resource_drift_status, :last_check_timestamp) SENSITIVE = [] include Aws::Structure end |
#stack_resource_drift_status ⇒ String
Status of the resource's actual configuration compared to its expected configuration.
DELETED
: The resource differs from its expected configuration in that it has been deleted.MODIFIED
: The resource differs from its expected configuration.NOT_CHECKED
: CloudFormation hasn't checked if the resource differs from its expected configuration.Any resources that don't currently support drift detection have a status of
NOT_CHECKED
. For more information, see Resource type support for imports and drift detection. If you performed an ContinueUpdateRollback operation on a stack, any resources included inResourcesToSkip
will also have a status ofNOT_CHECKED
. For more information about skipping resources during rollback operations, see Continue rolling back an update in the CloudFormation User Guide.IN_SYNC
: The resource's actual configuration matches its expected configuration.
8799 8800 8801 8802 8803 8804 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 8799 class StackResourceDriftInformationSummary < Struct.new( :stack_resource_drift_status, :last_check_timestamp) SENSITIVE = [] include Aws::Structure end |