Class: Aws::CloudFormation::Types::TemplateParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::TemplateParameter
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
The TemplateParameter data type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_value ⇒ String
The default value associated with the parameter.
-
#description ⇒ String
User defined description associated with the parameter.
-
#no_echo ⇒ Boolean
Flag indicating whether the parameter should be displayed as plain text in logs and UIs.
-
#parameter_key ⇒ String
The name associated with the parameter.
Instance Attribute Details
#default_value ⇒ String
The default value associated with the parameter.
9878 9879 9880 9881 9882 9883 9884 9885 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 9878 class TemplateParameter < Struct.new( :parameter_key, :default_value, :no_echo, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
User defined description associated with the parameter.
9878 9879 9880 9881 9882 9883 9884 9885 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 9878 class TemplateParameter < Struct.new( :parameter_key, :default_value, :no_echo, :description) SENSITIVE = [] include Aws::Structure end |
#no_echo ⇒ Boolean
Flag indicating whether the parameter should be displayed as plain text in logs and UIs.
9878 9879 9880 9881 9882 9883 9884 9885 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 9878 class TemplateParameter < Struct.new( :parameter_key, :default_value, :no_echo, :description) SENSITIVE = [] include Aws::Structure end |
#parameter_key ⇒ String
The name associated with the parameter.
9878 9879 9880 9881 9882 9883 9884 9885 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 9878 class TemplateParameter < Struct.new( :parameter_key, :default_value, :no_echo, :description) SENSITIVE = [] include Aws::Structure end |