class Amazonite::CloudFormation::Export

Overview

The Export structure describes the exported output values for a stack.

For more information, see Get exported outputs from a deployed CloudFormation stack.

Defined in:

cloudformation/export.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(exporting_stack_id : String | Nil = nil, name : String | Nil = nil, value : String | 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 exporting_stack_id : String | Nil #

The stack that contains the exported output name and value.


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

The stack that contains the exported output name and value.


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

See Object#hash(hasher)


def name : String | Nil #

The name of exported output value. Use this name and the Fn::ImportValue function to import the associated value into other stacks. The name is defined in the Export field in the associated stack's Outputs section.


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

The name of exported output value. Use this name and the Fn::ImportValue function to import the associated value into other stacks. The name is defined in the Export field in the associated stack's Outputs section.


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

[View source]
def validate! : Nil #

[View source]
def value : String | Nil #

The value of the exported output, such as a resource physical ID. This value is defined in the Export field in the associated stack's Outputs section.


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

The value of the exported output, such as a resource physical ID. This value is defined in the Export field in the associated stack's Outputs section.


[View source]