Class: Aws::CloudFormation::Types::StackResourceDriftInformation

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb

Overview

Contains information about whether the resource's actual configuration differs, or has drifted, from its expected configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#last_check_timestampTime

When CloudFormation last checked if the resource had drifted from its expected configuration.

Returns:

  • (Time)


8600
8601
8602
8603
8604
8605
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 8600

class StackResourceDriftInformation < Struct.new(
  :stack_resource_drift_status,
  :last_check_timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#stack_resource_drift_statusString

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 has not checked if the resource differs from its expected configuration.

    Any resources that do not currently support drift detection have a status of NOT_CHECKED. For more information, see Resources that Support Drift Detection.

  • IN_SYNC: The resource's actual configuration matches its expected configuration.

Returns:

  • (String)


8600
8601
8602
8603
8604
8605
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 8600

class StackResourceDriftInformation < Struct.new(
  :stack_resource_drift_status,
  :last_check_timestamp)
  SENSITIVE = []
  include Aws::Structure
end