Interface CfnDBInstance.EndpointProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDBInstance.EndpointProperty.Jsii$Proxy
- Enclosing class:
- CfnDBInstance
@Stability(Stable)
public static interface CfnDBInstance.EndpointProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.rds.*;
EndpointProperty endpointProperty = EndpointProperty.builder()
.address("address")
.hostedZoneId("hostedZoneId")
.port("port")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDBInstance.EndpointPropertystatic final classAn implementation forCfnDBInstance.EndpointProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddress
Specifies the DNS address of the DB instance. -
getHostedZoneId
Specifies the ID that Amazon Route 53 assigns when you create a hosted zone. -
getPort
Specifies the port that the database engine is listening on. -
builder
-