interface EndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnDBInstancePropsMixin.EndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnDBInstancePropsMixin_EndpointProperty |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnDBInstancePropsMixin.EndpointProperty |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnDBInstancePropsMixin.EndpointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnDBInstancePropsMixin » EndpointProperty |
This data type represents the information you need to connect to an Amazon RDS DB instance.
This data type is used as a response element in the following actions:
CreateDBInstanceDescribeDBInstancesDeleteDBInstance
For the data structure that represents Amazon Aurora DB cluster endpoints, see DBClusterEndpoint .
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.CfnDBInstancePropsMixin.EndpointProperty = {
address: 'address',
hostedZoneId: 'hostedZoneId',
port: 'port',
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string | Specifies the DNS address of the DB instance. |
| hosted | string | Specifies the ID that Amazon Route 53 assigns when you create a hosted zone. |
| port? | string | Specifies the port that the database engine is listening on. |
address?
Type:
string
(optional)
Specifies the DNS address of the DB instance.
hostedZoneId?
Type:
string
(optional)
Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
port?
Type:
string
(optional)
Specifies the port that the database engine is listening on.

.NET
Go
Java
Python
TypeScript