Class: Aws::CloudFormation::Types::ResourceDriftIgnoredAttribute

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

Overview

The ResourceDriftIgnoredAttribute data type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#pathString

Path of the resource attribute for which drift was ignored.

Returns:

  • (String)


7834
7835
7836
7837
7838
7839
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 7834

class ResourceDriftIgnoredAttribute < Struct.new(
  :path,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end

#reasonString

Reason why drift was ignored for the attribute, can have 2 possible values:

  • WRITE_ONLY_PROPERTY - Property is not included in read response for the resource’s live state.

  • MANAGED_BY_AWS - Property is managed by an Amazon Web Services service and is expected to be dynamically modified.

Returns:

  • (String)


7834
7835
7836
7837
7838
7839
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 7834

class ResourceDriftIgnoredAttribute < Struct.new(
  :path,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end