interface DataStorageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElastiCache.CfnServerlessCachePropsMixin.DataStorageProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselasticache#CfnServerlessCachePropsMixin_DataStorageProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.elasticache.CfnServerlessCachePropsMixin.DataStorageProperty |
Python | aws_cdk.cfn_property_mixins.aws_elasticache.CfnServerlessCachePropsMixin.DataStorageProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elasticache » CfnServerlessCachePropsMixin » 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/cfn-property-mixins';
const dataStorageProperty: elasticache.CfnServerlessCachePropsMixin.DataStorageProperty = {
maximum: 123,
minimum: 123,
unit: 'unit',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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? | 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.
unit?
Type:
string
(optional)
The unit that the storage is measured in, in GB.

.NET
Go
Java
Python
TypeScript