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.
| 10571 10572 10573 10574 10575 10576 10577 10578 | # File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 10571 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.
| 10571 10572 10573 10574 10575 10576 10577 10578 | # File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 10571 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.
| 10571 10572 10573 10574 10575 10576 10577 10578 | # File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 10571 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.
| 10571 10572 10573 10574 10575 10576 10577 10578 | # File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 10571 class TemplateParameter < Struct.new( :parameter_key, :default_value, :no_echo, :description) SENSITIVE = [] include Aws::Structure end |