class Amazonite::CloudFormation::TemplateProgress

Overview

A summary of the progress of the template generation.

Defined in:

cloudformation/template_progress.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(resources_succeeded : Int32 | Nil = nil, resources_failed : Int32 | Nil = nil, resources_processing : Int32 | Nil = nil, resources_pending : Int32 | 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 resources_failed : Int32 | Nil #

The number of resources that failed the template generation.


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

The number of resources that failed the template generation.


[View source]
def resources_pending : Int32 | Nil #

The number of resources that are still pending the template generation.


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

The number of resources that are still pending the template generation.


[View source]
def resources_processing : Int32 | Nil #

The number of resources that are in-process for the template generation.


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

The number of resources that are in-process for the template generation.


[View source]
def resources_succeeded : Int32 | Nil #

The number of resources that succeeded the template generation.


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

The number of resources that succeeded the template generation.


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

[View source]
def validate! : Nil #

[View source]