interface DataStorageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElastiCache.CfnServerlessCache.DataStorageProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnServerlessCache_DataStorageProperty |
Java | software.amazon.awscdk.services.elasticache.CfnServerlessCache.DataStorageProperty |
Python | aws_cdk.aws_elasticache.CfnServerlessCache.DataStorageProperty |
TypeScript | aws-cdk-lib » aws_elasticache » CfnServerlessCache » DataStorageProperty |
The data storage limit.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticache as elasticache } from 'aws-cdk-lib';
const dataStorageProperty: elasticache.CfnServerlessCache.DataStorageProperty = {
unit: 'unit',
// the properties below are optional
maximum: 123,
minimum: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| unit | string | The unit that the storage is measured in, in GB. |
| maximum? | number | The upper limit for data storage the cache is set to use. |
| minimum? | number | The lower limit for data storage the cache is set to use. |
unit
Type:
string
The unit that the storage is measured in, in GB.
maximum?
Type:
number
(optional)
The upper limit for data storage the cache is set to use.
minimum?
Type:
number
(optional)
The lower limit for data storage the cache is set to use.

.NET
Go
Java
Python
TypeScript