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)


400
401
402
403
404
405
406
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 400

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.



400
401
402
403
404
405
406
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 400

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

#typeString

The type of entity that CloudFormation changes. Currently, the only entity type is Resource.

Returns:

  • (String)


400
401
402
403
404
405
406
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 400

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