interface EndpointProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.RDS.CfnDBCluster.EndpointProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnDBCluster_EndpointProperty | 
|  Java | software.amazon.awscdk.services.rds.CfnDBCluster.EndpointProperty | 
|  Python | aws_cdk.aws_rds.CfnDBCluster.EndpointProperty | 
|  TypeScript | aws-cdk-lib»aws_rds»CfnDBCluster»EndpointProperty | 
The Endpoint return value specifies the connection endpoint for the primary instance of the DB cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as rds } from 'aws-cdk-lib';
const endpointProperty: rds.CfnDBCluster.EndpointProperty = {
  address: 'address',
  port: 'port',
};
Properties
| Name | Type | Description | 
|---|---|---|
| address? | string | Specifies the connection endpoint for the primary instance of the DB cluster. | 
| port? | string | Specifies the port that the database engine is listening on. | 
address?
Type:
string
(optional)
Specifies the connection endpoint for the primary instance of the DB cluster.
port?
Type:
string
(optional)
Specifies the port that the database engine is listening on.
