Class: Aws::CloudFormation::Types::Change
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::Change
- 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
-
#hook_invocation_count ⇒ Integer
Is either
null
, if no hooks invoke for the resource, or contains the number of hooks that will invoke for the resource. -
#resource_change ⇒ Types::ResourceChange
A
ResourceChange
structure that describes the resource and action that CloudFormation will perform. -
#type ⇒ String
The type of entity that CloudFormation changes.
Instance Attribute Details
#hook_invocation_count ⇒ Integer
Is either null
, if no hooks invoke for the resource, or contains
the number of hooks that will invoke for the resource.
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_change ⇒ Types::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 |
#type ⇒ String
The type of entity that CloudFormation changes.
Resource
This change is for a resource.
^
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 |