Class: Aws::Neptune::Types::ValidStorageOptions
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Neptune::Types::ValidStorageOptions
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-neptune/types.rb
 
Overview
Information about valid modifications that you can make to your DB instance.
Contains the result of a successful call to the DescribeValidDBInstanceModifications action.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #iops_to_storage_ratio  ⇒ Array<Types::DoubleRange> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The valid range of Provisioned IOPS to gibibytes of storage multiplier.
 - 
  
    
      #provisioned_iops  ⇒ Array<Types::Range> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The valid range of provisioned IOPS.
 - 
  
    
      #storage_size  ⇒ Array<Types::Range> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The valid range of storage in gibibytes.
 - 
  
    
      #storage_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The valid storage types for your DB instance.
 
Instance Attribute Details
#iops_to_storage_ratio ⇒ Array<Types::DoubleRange>
The valid range of Provisioned IOPS to gibibytes of storage multiplier. For example, 3-10, which means that provisioned IOPS can be between 3 and 10 times storage.
      8107 8108 8109 8110 8111 8112 8113 8114  | 
    
      # File 'lib/aws-sdk-neptune/types.rb', line 8107 class ValidStorageOptions < Struct.new( :storage_type, :storage_size, :provisioned_iops, :iops_to_storage_ratio) SENSITIVE = [] include Aws::Structure end  | 
  
#provisioned_iops ⇒ Array<Types::Range>
The valid range of provisioned IOPS. For example, 1000-20000.
      8107 8108 8109 8110 8111 8112 8113 8114  | 
    
      # File 'lib/aws-sdk-neptune/types.rb', line 8107 class ValidStorageOptions < Struct.new( :storage_type, :storage_size, :provisioned_iops, :iops_to_storage_ratio) SENSITIVE = [] include Aws::Structure end  | 
  
#storage_size ⇒ Array<Types::Range>
The valid range of storage in gibibytes. For example, 100 to 16384.
      8107 8108 8109 8110 8111 8112 8113 8114  | 
    
      # File 'lib/aws-sdk-neptune/types.rb', line 8107 class ValidStorageOptions < Struct.new( :storage_type, :storage_size, :provisioned_iops, :iops_to_storage_ratio) SENSITIVE = [] include Aws::Structure end  | 
  
#storage_type ⇒ String
The valid storage types for your DB instance. For example, gp2, io1.
      8107 8108 8109 8110 8111 8112 8113 8114  | 
    
      # File 'lib/aws-sdk-neptune/types.rb', line 8107 class ValidStorageOptions < Struct.new( :storage_type, :storage_size, :provisioned_iops, :iops_to_storage_ratio) SENSITIVE = [] include Aws::Structure end  |