Class: Aws::CloudFormation::Types::Parameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::Parameter
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The Parameter data type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parameter_key ⇒ String
The key associated with the parameter.
-
#parameter_value ⇒ String
The input value associated with the parameter.
-
#resolved_value ⇒ String
Read-only.
-
#use_previous_value ⇒ Boolean
During a stack update, use the existing parameter value that the stack is using for a given parameter key.
Instance Attribute Details
#parameter_key ⇒ String
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.
6149 6150 6151 6152 6153 6154 6155 6156 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6149 class Parameter < Struct.new( :parameter_key, :parameter_value, :use_previous_value, :resolved_value) SENSITIVE = [] include Aws::Structure end |
#parameter_value ⇒ String
The input value associated with the parameter.
6149 6150 6151 6152 6153 6154 6155 6156 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6149 class Parameter < Struct.new( :parameter_key, :parameter_value, :use_previous_value, :resolved_value) SENSITIVE = [] include Aws::Structure end |
#resolved_value ⇒ String
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 [Use CloudFormation-supplied parameter types] in the *CloudFormation User Guide*.
[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-supplied-parameter-types.html
6149 6150 6151 6152 6153 6154 6155 6156 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6149 class Parameter < Struct.new( :parameter_key, :parameter_value, :use_previous_value, :resolved_value) SENSITIVE = [] include Aws::Structure end |
#use_previous_value ⇒ Boolean
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.
6149 6150 6151 6152 6153 6154 6155 6156 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6149 class Parameter < Struct.new( :parameter_key, :parameter_value, :use_previous_value, :resolved_value) SENSITIVE = [] include Aws::Structure end |