interface DataStorageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnServerlessCachePropsMixin.DataStorageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnServerlessCachePropsMixin_DataStorageProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnServerlessCachePropsMixin.DataStorageProperty |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnServerlessCachePropsMixin.DataStorageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » 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 { mixins as elasticache_mixins } from '@aws-cdk/mixins-preview/aws-elasticache';
const dataStorageProperty: elasticache_mixins.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