@Stability(value=Stable)
public static interface CfnDBInstance.EndpointProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDBInstance.EndpointProperty.Builder
A builder for
CfnDBInstance.EndpointProperty |
static class |
CfnDBInstance.EndpointProperty.Jsii$Proxy
An implementation for
CfnDBInstance.EndpointProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDBInstance.EndpointProperty.Builder |
builder() |
default String |
getAddress()
Specifies the DNS address of the DB instance.
|
default String |
getHostedZoneId()
Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
|
default String |
getPort()
Specifies the port that the database engine is listening on.
|
@Stability(value=Stable) @Nullable default String getAddress()
@Stability(value=Stable) @Nullable default String getHostedZoneId()
@Stability(value=Stable) @Nullable default String getPort()
@Stability(value=Stable) static CfnDBInstance.EndpointProperty.Builder builder()
Copyright © 2022. All rights reserved.