Class: Aws::RDS::Types::Range
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::Range
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
A range of integer values.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #from  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum value in the range.
 - 
  
    
      #step  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The step value for the range.
 - 
  
    
      #to  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum value in the range.
 
Instance Attribute Details
#from ⇒ Integer
The minimum value in the range.
      21897 21898 21899 21900 21901 21902 21903  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 21897 class Range < Struct.new( :from, :to, :step) SENSITIVE = [] include Aws::Structure end  | 
  
#step ⇒ Integer
The step value for the range. For example, if you have a range of 5,000 to 10,000, with a step value of 1,000, the valid values start at 5,000 and step up by 1,000. Even though 7,500 is within the range, it isn’t a valid value for the range. The valid values are 5,000, 6,000, 7,000, 8,000…
      21897 21898 21899 21900 21901 21902 21903  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 21897 class Range < Struct.new( :from, :to, :step) SENSITIVE = [] include Aws::Structure end  |