Class: Aws::NimbleStudio::Types::ScriptParameterKeyValue
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::NimbleStudio::Types::ScriptParameterKeyValue
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-nimblestudio/types.rb
 
Overview
A parameter for a studio component script, in the form of a key-value pair.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A script parameter key.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A script parameter value.
 
Instance Attribute Details
#key ⇒ String
A script parameter key.
      2248 2249 2250 2251 2252 2253  | 
    
      # File 'lib/aws-sdk-nimblestudio/types.rb', line 2248 class ScriptParameterKeyValue < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
A script parameter value.
      2248 2249 2250 2251 2252 2253  | 
    
      # File 'lib/aws-sdk-nimblestudio/types.rb', line 2248 class ScriptParameterKeyValue < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end  |