class Amazonite::CloudFormation::ParameterDeclaration

Overview

The ParameterDeclaration data type.

Defined in:

cloudformation/parameter_declaration.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, parameter_type : String | Nil = nil, no_echo : Bool | Nil = nil, description : String | Nil = nil, parameter_constraints : ParameterConstraints | 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 of the parameter.


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

The default value of the parameter.


[View source]
def description : String | Nil #

The description that's associate with the parameter.


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

The description that's associate with the parameter.


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

See Object#hash(hasher)


def no_echo : Bool | Nil #

Flag that indicates whether the parameter value is shown as plain text in logs and in the Amazon Web Services Management Console.


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

Flag that indicates whether the parameter value is shown as plain text in logs and in the Amazon Web Services Management Console.


[View source]
def parameter_constraints : ParameterConstraints | Nil #

The criteria that CloudFormation uses to validate parameter values.


[View source]
def parameter_constraints=(parameter_constraints : ParameterConstraints | Nil) #

The criteria that CloudFormation uses to validate parameter values.


[View source]
def parameter_key : String | Nil #

The name that's associated with the parameter.


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

The name that's associated with the parameter.


[View source]
def parameter_type : String | Nil #

The type of parameter.


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

The type of parameter.


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

[View source]
def validate! : Nil #

[View source]