Class: Aws::CloudFormation::Types::LiveResourceDrift
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::LiveResourceDrift
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
Contains drift information for a resource property, including actual value, previous deployment value, and drift detection timestamp.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#actual_value ⇒ String
The current live configuration value of the resource property.
-
#drift_detection_timestamp ⇒ Time
The timestamp when drift was detected for this resource property.
-
#previous_value ⇒ String
The configuration value from the previous CloudFormation deployment.
Instance Attribute Details
#actual_value ⇒ String
The current live configuration value of the resource property.
6577 6578 6579 6580 6581 6582 6583 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6577 class LiveResourceDrift < Struct.new( :previous_value, :actual_value, :drift_detection_timestamp) SENSITIVE = [] include Aws::Structure end |
#drift_detection_timestamp ⇒ Time
The timestamp when drift was detected for this resource property.
6577 6578 6579 6580 6581 6582 6583 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6577 class LiveResourceDrift < Struct.new( :previous_value, :actual_value, :drift_detection_timestamp) SENSITIVE = [] include Aws::Structure end |
#previous_value ⇒ String
The configuration value from the previous CloudFormation deployment.
6577 6578 6579 6580 6581 6582 6583 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6577 class LiveResourceDrift < Struct.new( :previous_value, :actual_value, :drift_detection_timestamp) SENSITIVE = [] include Aws::Structure end |