interface ClusterReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DAX.ClusterReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdax#ClusterReference |
Java | software.amazon.awscdk.interfaces.dax.ClusterReference |
Python | aws_cdk.interfaces.aws_dax.ClusterReference |
TypeScript | aws-cdk-lib » interfaces » aws_dax » ClusterReference |
A reference to a Cluster resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dax as interfaces_aws_dax } from 'aws-cdk-lib/interfaces';
const clusterReference: interfaces_aws_dax.ClusterReference = {
clusterArn: 'clusterArn',
clusterId: 'clusterId',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The ARN of the Cluster resource. |
| cluster | string | The Id of the Cluster resource. |
clusterArn
Type:
string
The ARN of the Cluster resource.
clusterId
Type:
string
The Id of the Cluster resource.

.NET
Go
Java
Python
TypeScript