Class: Aws::ElastiCache::Types::CacheUsageLimits
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::CacheUsageLimits
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticache/types.rb
Overview
The usage limits for storage and ElastiCache Processing Units for the cache.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_storage ⇒ Types::DataStorage
The maximum data storage limit in the cache, expressed in Gigabytes.
-
#ecpu_per_second ⇒ Types::ECPUPerSecond
The configuration for the number of ElastiCache Processing Units (ECPU) the cache can consume per second.
Instance Attribute Details
#data_storage ⇒ Types::DataStorage
The maximum data storage limit in the cache, expressed in Gigabytes.
1379 1380 1381 1382 1383 1384 |
# File 'lib/aws-sdk-elasticache/types.rb', line 1379 class CacheUsageLimits < Struct.new( :data_storage, :ecpu_per_second) SENSITIVE = [] include Aws::Structure end |
#ecpu_per_second ⇒ Types::ECPUPerSecond
The configuration for the number of ElastiCache Processing Units (ECPU) the cache can consume per second.
1379 1380 1381 1382 1383 1384 |
# File 'lib/aws-sdk-elasticache/types.rb', line 1379 class CacheUsageLimits < Struct.new( :data_storage, :ecpu_per_second) SENSITIVE = [] include Aws::Structure end |