interface ServerlessCacheConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElastiCache.CfnServerlessCacheSnapshot.ServerlessCacheConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnServerlessCacheSnapshot_ServerlessCacheConfigurationProperty |
Java | software.amazon.awscdk.services.elasticache.CfnServerlessCacheSnapshot.ServerlessCacheConfigurationProperty |
Python | aws_cdk.aws_elasticache.CfnServerlessCacheSnapshot.ServerlessCacheConfigurationProperty |
TypeScript | aws-cdk-lib » aws_elasticache » CfnServerlessCacheSnapshot » 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-lib';
const serverlessCacheConfigurationProperty: elasticache.CfnServerlessCacheSnapshot.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