Class: Aws::RDS::Types::DoubleRange
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::DoubleRange
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/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.
| 15095 15096 15097 15098 15099 15100 | # File 'lib/aws-sdk-rds/types.rb', line 15095 class DoubleRange < Struct.new( :from, :to) SENSITIVE = [] include Aws::Structure end | 
#to ⇒ Float
The maximum value in the range.
| 15095 15096 15097 15098 15099 15100 | # File 'lib/aws-sdk-rds/types.rb', line 15095 class DoubleRange < Struct.new( :from, :to) SENSITIVE = [] include Aws::Structure end |