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: