interface ClusterAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DSQL.Alpha.ClusterAttributes |
Go | github.com/aws/aws-cdk-go/awscdkdsqlalpha/v2#ClusterAttributes |
Java | software.amazon.awscdk.services.dsql.alpha.ClusterAttributes |
Python | aws_cdk.aws_dsql_alpha.ClusterAttributes |
TypeScript (source) | @aws-cdk/aws-dsql-alpha ยป ClusterAttributes |
Properties that describe an existing Aurora DSQL cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as dsql_alpha from '@aws-cdk/aws-dsql-alpha';
const clusterAttributes: dsql_alpha.ClusterAttributes = {
clusterEndpoint: 'clusterEndpoint',
clusterIdentifier: 'clusterIdentifier',
vpcEndpointServiceName: 'vpcEndpointServiceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | Connection endpoint for the cluster. |
| cluster | string | Identifier of the cluster. |
| vpc | string | VPC endpoint service name for the cluster. |
clusterEndpoint
Type:
string
Connection endpoint for the cluster.
clusterIdentifier
Type:
string
Identifier of the cluster.
vpcEndpointServiceName
Type:
string
VPC endpoint service name for the cluster.

.NET
Go
Java
Python
TypeScript (