Interface CfnCluster.EndpointProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnCluster.EndpointProperty.Jsii$Proxy
- Enclosing class:
 CfnCluster
@Stability(Stable)
public static interface CfnCluster.EndpointProperty
extends software.amazon.jsii.JsiiSerializable
Represents the information required for client programs to connect to the cluster and its nodes.
 
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.memorydb.*;
 EndpointProperty endpointProperty = EndpointProperty.builder()
         .address("address")
         .port(123)
         .build();
 
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.EndpointPropertystatic final classAn implementation forCfnCluster.EndpointProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getAddress
The DNS hostname of the node.- See Also:
 
 - 
getPort
The port number that the engine is listening on.- See Also:
 
 - 
builder
 
 -