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:
CreateDBInstance
DescribeDBInstances
DeleteDBInstance
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDBInstance.EndpointProperty
static final class
An 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.- See Also:
-
getHostedZoneId
Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.- See Also:
-
getPort
Specifies the port that the database engine is listening on.- See Also:
-
builder
-