Class: Aws::Imagebuilder::Types::ComponentParameterDetail
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Imagebuilder::Types::ComponentParameterDetail
 
- Defined in:
- gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb
Overview
Defines a parameter that is used to provide configuration details for the component.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #default_value  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The default value of this parameter if no input is provided. 
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Describes this parameter. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of this input parameter. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of input this parameter provides. 
Instance Attribute Details
#default_value ⇒ Array<String>
The default value of this parameter if no input is provided.
| 492 493 494 495 496 497 498 499 | # File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 492 class ComponentParameterDetail < Struct.new( :name, :type, :default_value, :description) SENSITIVE = [] include Aws::Structure end | 
#description ⇒ String
Describes this parameter.
| 492 493 494 495 496 497 498 499 | # File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 492 class ComponentParameterDetail < Struct.new( :name, :type, :default_value, :description) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The name of this input parameter.
| 492 493 494 495 496 497 498 499 | # File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 492 class ComponentParameterDetail < Struct.new( :name, :type, :default_value, :description) SENSITIVE = [] include Aws::Structure end | 
#type ⇒ String
The type of input this parameter provides. The currently supported value is "string".
| 492 493 494 495 496 497 498 499 | # File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 492 class ComponentParameterDetail < Struct.new( :name, :type, :default_value, :description) SENSITIVE = [] include Aws::Structure end |