interface EndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RDS.CfnDBClusterPropsMixin.EndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrds#CfnDBClusterPropsMixin_EndpointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rds.CfnDBClusterPropsMixin.EndpointProperty |
Python | aws_cdk.cfn_property_mixins.aws_rds.CfnDBClusterPropsMixin.EndpointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rds » CfnDBClusterPropsMixin » 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/cfn-property-mixins';
const endpointProperty: rds.CfnDBClusterPropsMixin.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.

.NET
Go
Java
Python
TypeScript