class Amazonite::CloudFormation::SignalResourceInput

Overview

The input for the SignalResource action.

Defined in:

cloudformation/signal_resource_input.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(stack_name : String, logical_resource_id : String, unique_id : String, status : ResourceSignalStatus) #

[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 logical_resource_id : String #

The logical ID of the resource that you want to signal. The logical ID is the name of the resource that given in the template.


[View source]
def logical_resource_id=(logical_resource_id : String) #

The logical ID of the resource that you want to signal. The logical ID is the name of the resource that given in the template.


[View source]
def stack_name : String #

The stack name or unique stack ID that includes the resource that you want to signal.


[View source]
def stack_name=(stack_name : String) #

The stack name or unique stack ID that includes the resource that you want to signal.


[View source]
def status : ResourceSignalStatus #

The status of the signal, which is either success or failure. A failure signal causes CloudFormation to immediately fail the stack creation or update.


[View source]
def status=(status : ResourceSignalStatus) #

The status of the signal, which is either success or failure. A failure signal causes CloudFormation to immediately fail the stack creation or update.


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

[View source]
def unique_id : String #

A unique ID of the signal. When you signal Amazon EC2 instances or Auto Scaling groups, specify the instance ID that you are signaling as the unique ID. If you send multiple signals to a single resource (such as signaling a wait condition), each signal requires a different unique ID.


[View source]
def unique_id=(unique_id : String) #

A unique ID of the signal. When you signal Amazon EC2 instances or Auto Scaling groups, specify the instance ID that you are signaling as the unique ID. If you send multiple signals to a single resource (such as signaling a wait condition), each signal requires a different unique ID.


[View source]
def validate! : Nil #

[View source]