Class: Aws::CloudFormation::Types::LiveResourceDrift

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#actual_valueString

The current live configuration value of the resource property.

Returns:

  • (String)


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_timestampTime

The timestamp when drift was detected for this resource property.

Returns:

  • (Time)


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_valueString

The configuration value from the previous CloudFormation deployment.

Returns:

  • (String)


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