Class: Aws::DAX::Types::ParameterNameValue
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DAX::Types::ParameterNameValue
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-dax/types.rb
 
Overview
An individual DAX parameter.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #parameter_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the parameter.
 - 
  
    
      #parameter_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the parameter.
 
Instance Attribute Details
#parameter_name ⇒ String
The name of the parameter.
      1246 1247 1248 1249 1250 1251  | 
    
      # File 'lib/aws-sdk-dax/types.rb', line 1246 class ParameterNameValue < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end  | 
  
#parameter_value ⇒ String
The value of the parameter.
      1246 1247 1248 1249 1250 1251  | 
    
      # File 'lib/aws-sdk-dax/types.rb', line 1246 class ParameterNameValue < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end  |