class Amazonite::CloudFormation::TemplateParameter

Overview

The TemplateParameter data type.

Defined in:

cloudformation/template_parameter.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(parameter_key : String | Nil = nil, default_value : String | Nil = nil, no_echo : Bool | Nil = nil, description : 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 default_value : String | Nil #

The default value associated with the parameter.


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

The default value associated with the parameter.


[View source]
def description : String | Nil #

User defined description associated with the parameter.


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

User defined description associated with the parameter.


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

See Object#hash(hasher)


def no_echo : Bool | Nil #

Flag indicating whether the parameter should be displayed as plain text in logs and UIs.


[View source]
def no_echo=(no_echo : Bool | Nil) #

Flag indicating whether the parameter should be displayed as plain text in logs and UIs.


[View source]
def parameter_key : String | Nil #

The name associated with the parameter.


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

The name associated with the parameter.


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

[View source]
def validate! : Nil #

[View source]