Class: Aws::Neptune::Types::DoubleRange
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Neptune::Types::DoubleRange
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-neptune/types.rb
 
Overview
A range of double values.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #from  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum value in the range.
 - 
  
    
      #to  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum value in the range.
 
Instance Attribute Details
#from ⇒ Float
The minimum value in the range.
      4904 4905 4906 4907 4908 4909  | 
    
      # File 'lib/aws-sdk-neptune/types.rb', line 4904 class DoubleRange < Struct.new( :from, :to) SENSITIVE = [] include Aws::Structure end  | 
  
#to ⇒ Float
The maximum value in the range.
      4904 4905 4906 4907 4908 4909  | 
    
      # File 'lib/aws-sdk-neptune/types.rb', line 4904 class DoubleRange < Struct.new( :from, :to) SENSITIVE = [] include Aws::Structure end  |