interface EndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnDBClusterPropsMixin.EndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnDBClusterPropsMixin_EndpointProperty |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnDBClusterPropsMixin.EndpointProperty |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnDBClusterPropsMixin.EndpointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » 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 { mixins as rds_mixins } from '@aws-cdk/mixins-preview/aws-rds';
const endpointProperty: rds_mixins.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