Class: Aws::CloudFormation::Types::Change

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

Overview

The Change structure describes the changes CloudFormation will perform if you execute the change set.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hook_invocation_countInteger

Is either null, if no hooks invoke for the resource, or contains the number of hooks that will invoke for the resource.

Returns:

  • (Integer)


403
404
405
406
407
408
409
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 403

class Change < Struct.new(
  :type,
  :hook_invocation_count,
  :resource_change)
  SENSITIVE = []
  include Aws::Structure
end

#resource_changeTypes::ResourceChange

A ResourceChange structure that describes the resource and action that CloudFormation will perform.



403
404
405
406
407
408
409
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 403

class Change < Struct.new(
  :type,
  :hook_invocation_count,
  :resource_change)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of entity that CloudFormation changes.

  • Resource This change is for a resource.

^

Returns:

  • (String)


403
404
405
406
407
408
409
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 403

class Change < Struct.new(
  :type,
  :hook_invocation_count,
  :resource_change)
  SENSITIVE = []
  include Aws::Structure
end