class Amazonite::CloudFormation::Change

Overview

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

Defined in:

cloudformation/change.cr

Constructors

Instance Method Summary

Constructor Detail

def self.from_xml(node : XML::Node) : self #

[View source]
def self.new(type : ChangeType | Nil = nil, hook_invocation_count : Int32 | Nil = nil, resource_change : ResourceChange | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def hook_invocation_count : Int32 | Nil #

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


[View source]
def hook_invocation_count=(hook_invocation_count : Int32 | Nil) #

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


[View source]
def resource_change : ResourceChange | Nil #

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


[View source]
def resource_change=(resource_change : ResourceChange | Nil) #

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


[View source]
def to_query_params(prefix : String) : Array(Tuple(String, String)) #

[View source]
def type : ChangeType | Nil #

The type of entity that CloudFormation changes.

  • Resource This change is for a resource.

[View source]
def type=(type : ChangeType | Nil) #

The type of entity that CloudFormation changes.

  • Resource This change is for a resource.

[View source]
def validate! : Nil #

[View source]