interface CacheClusterReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ElastiCache.CacheClusterReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awselasticache#CacheClusterReference |
Java | software.amazon.awscdk.interfaces.elasticache.CacheClusterReference |
Python | aws_cdk.interfaces.aws_elasticache.CacheClusterReference |
TypeScript | aws-cdk-lib » interfaces » aws_elasticache » CacheClusterReference |
A reference to a CacheCluster resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticache as interfaces_aws_elasticache } from 'aws-cdk-lib/interfaces';
const cacheClusterReference: interfaces_aws_elasticache.CacheClusterReference = {
cacheClusterId: 'cacheClusterId',
};
Properties
| Name | Type | Description |
|---|---|---|
| cache | string | The Id of the CacheCluster resource. |
cacheClusterId
Type:
string
The Id of the CacheCluster resource.

.NET
Go
Java
Python
TypeScript