class
Amazonite::CloudFormation::Parameter
- Amazonite::CloudFormation::Parameter
- Reference
- Object
Overview
The Parameter data type.
Defined in:
cloudformation/parameter.crConstructors
- .from_xml(node : XML::Node) : self
- .new(parameter_key : String | Nil = nil, parameter_value : String | Nil = nil, use_previous_value : Bool | Nil = nil, resolved_value : String | Nil = nil)
Instance Method Summary
-
#==(other : self)
Returns
trueif this reference is the same as other. -
#hash(hasher)
See
Object#hash(hasher) -
#parameter_key : String | Nil
The key associated with the parameter.
-
#parameter_key=(parameter_key : String | Nil)
The key associated with the parameter.
-
#parameter_value : String | Nil
The input value associated with the parameter.
-
#parameter_value=(parameter_value : String | Nil)
The input value associated with the parameter.
-
#resolved_value : String | Nil
Read-only.
-
#resolved_value=(resolved_value : String | Nil)
Read-only.
- #to_query_params(prefix : String) : Array(Tuple(String, String))
-
#use_previous_value : Bool | Nil
During a stack update, use the existing parameter value that the stack is using for a given parameter key.
-
#use_previous_value=(use_previous_value : Bool | Nil)
During a stack update, use the existing parameter value that the stack is using for a given parameter key.
- #validate! : Nil
Constructor Detail
Instance Method Detail
Returns true if this reference is the same as other. Invokes same?.
The key associated with the parameter. If you don't specify a key and value for a particular parameter, CloudFormation uses the default value that's specified in your template.
The key associated with the parameter. If you don't specify a key and value for a particular parameter, CloudFormation uses the default value that's specified in your template.
The input value associated with the parameter.
Read-only. The value that corresponds to a Systems Manager parameter key. This field is returned only for Systems Manager parameter types in the template. For more information, see Specify existing resources at runtime with CloudFormation-supplied parameter types in the CloudFormation User Guide.
Read-only. The value that corresponds to a Systems Manager parameter key. This field is returned only for Systems Manager parameter types in the template. For more information, see Specify existing resources at runtime with CloudFormation-supplied parameter types in the CloudFormation User Guide.
During a stack update, use the existing parameter value that the stack is using for a given
parameter key. If you specify true, do not specify a parameter value.
During a stack update, use the existing parameter value that the stack is using for a given
parameter key. If you specify true, do not specify a parameter value.