class Amazonite::CloudFormation::StackSummary

Overview

The StackSummary Data Type

Defined in:

cloudformation/stack_summary.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(stack_name : String, creation_time : Time, stack_status : StackStatus, stack_id : String | Nil = nil, template_description : String | Nil = nil, last_updated_time : Time | Nil = nil, deletion_time : Time | Nil = nil, stack_status_reason : String | Nil = nil, parent_id : String | Nil = nil, root_id : String | Nil = nil, drift_information : StackDriftInformationSummary | Nil = nil, last_operations : Array(OperationEntry) | 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 creation_time : Time #

The time the stack was created.


[View source]
def creation_time=(creation_time : Time) #

The time the stack was created.


[View source]
def deletion_time : Time | Nil #

The time the stack was deleted.


[View source]
def deletion_time=(deletion_time : Time | Nil) #

The time the stack was deleted.


[View source]
def drift_information : StackDriftInformationSummary | Nil #

Summarizes information about whether a stack's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detect unmanaged configuration changes to stacks and resources with drift detection.


[View source]
def drift_information=(drift_information : StackDriftInformationSummary | Nil) #

Summarizes information about whether a stack's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detect unmanaged configuration changes to stacks and resources with drift detection.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def last_operations : Array(OperationEntry) | Nil #

Information about the most recent operations performed on this stack.


[View source]
def last_operations=(last_operations : Array(OperationEntry) | Nil) #

Information about the most recent operations performed on this stack.


[View source]
def last_updated_time : Time | Nil #

The time the stack was last updated. This field will only be returned if the stack has been updated at least once.


[View source]
def last_updated_time=(last_updated_time : Time | Nil) #

The time the stack was last updated. This field will only be returned if the stack has been updated at least once.


[View source]
def parent_id : String | Nil #

For nested stacks, the stack ID of the direct parent of this stack. For the first level of nested stacks, the root stack is also the parent stack.

For more information, see Nested stacks in the CloudFormation User Guide.


[View source]
def parent_id=(parent_id : String | Nil) #

For nested stacks, the stack ID of the direct parent of this stack. For the first level of nested stacks, the root stack is also the parent stack.

For more information, see Nested stacks in the CloudFormation User Guide.


[View source]
def root_id : String | Nil #

For nested stacks, the stack ID of the top-level stack to which the nested stack ultimately belongs.

For more information, see Nested stacks in the CloudFormation User Guide.


[View source]
def root_id=(root_id : String | Nil) #

For nested stacks, the stack ID of the top-level stack to which the nested stack ultimately belongs.

For more information, see Nested stacks in the CloudFormation User Guide.


[View source]
def stack_id : String | Nil #

Unique stack identifier.


[View source]
def stack_id=(stack_id : String | Nil) #

Unique stack identifier.


[View source]
def stack_name : String #

The name associated with the stack.


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

The name associated with the stack.


[View source]
def stack_status : StackStatus #

The current status of the stack.


[View source]
def stack_status=(stack_status : StackStatus) #

The current status of the stack.


[View source]
def stack_status_reason : String | Nil #

Success/Failure message associated with the stack status.


[View source]
def stack_status_reason=(stack_status_reason : String | Nil) #

Success/Failure message associated with the stack status.


[View source]
def template_description : String | Nil #

The template description of the template used to create the stack.


[View source]
def template_description=(template_description : String | Nil) #

The template description of the template used to create the stack.


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

[View source]
def validate! : Nil #

[View source]