interface ServerlessCacheConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElastiCache.CfnServerlessCacheSnapshotPropsMixin.ServerlessCacheConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselasticache#CfnServerlessCacheSnapshotPropsMixin_ServerlessCacheConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.elasticache.CfnServerlessCacheSnapshotPropsMixin.ServerlessCacheConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_elasticache.CfnServerlessCacheSnapshotPropsMixin.ServerlessCacheConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elasticache » CfnServerlessCacheSnapshotPropsMixin » ServerlessCacheConfigurationProperty |
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 serverlessCacheConfigurationProperty: elasticache.CfnServerlessCacheSnapshotPropsMixin.ServerlessCacheConfigurationProperty = {
engine: 'engine',
majorEngineVersion: 'majorEngineVersion',
serverlessCacheName: 'serverlessCacheName',
};
Properties
| Name | Type | Description |
|---|---|---|
| engine? | string | The engine that the serverless cache is configured with. |
| major | string | The engine version number that the serverless cache is configured with. |
| serverless | string | The identifier of the serverless cache. |
engine?
Type:
string
(optional)
The engine that the serverless cache is configured with.
majorEngineVersion?
Type:
string
(optional)
The engine version number that the serverless cache is configured with.
serverlessCacheName?
Type:
string
(optional)
The identifier of the serverless cache.

.NET
Go
Java
Python
TypeScript