Class: Aws::ElastiCache::Types::DataStorage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::DataStorage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticache/types.rb
Overview
The data storage limit.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum ⇒ Integer
The upper limit for data storage the cache is set to use.
-
#minimum ⇒ Integer
The lower limit for data storage the cache is set to use.
-
#unit ⇒ String
The unit that the storage is measured in, in GB.
Instance Attribute Details
#maximum ⇒ Integer
The upper limit for data storage the cache is set to use.
3200 3201 3202 3203 3204 3205 3206 |
# File 'lib/aws-sdk-elasticache/types.rb', line 3200 class DataStorage < Struct.new( :maximum, :minimum, :unit) SENSITIVE = [] include Aws::Structure end |
#minimum ⇒ Integer
The lower limit for data storage the cache is set to use.
3200 3201 3202 3203 3204 3205 3206 |
# File 'lib/aws-sdk-elasticache/types.rb', line 3200 class DataStorage < Struct.new( :maximum, :minimum, :unit) SENSITIVE = [] include Aws::Structure end |
#unit ⇒ String
The unit that the storage is measured in, in GB.
3200 3201 3202 3203 3204 3205 3206 |
# File 'lib/aws-sdk-elasticache/types.rb', line 3200 class DataStorage < Struct.new( :maximum, :minimum, :unit) SENSITIVE = [] include Aws::Structure end |