Interface CfnReplicationGroup.ReadEndPointProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplicationGroup.ReadEndPointProperty.Jsii$Proxy
- Enclosing class:
CfnReplicationGroup
@Stability(Stable)
public static interface CfnReplicationGroup.ReadEndPointProperty
extends software.amazon.jsii.JsiiSerializable
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.elasticache.*;
ReadEndPointProperty readEndPointProperty = ReadEndPointProperty.builder()
.addresses("addresses")
.addressesList(List.of("addressesList"))
.ports("ports")
.portsList(List.of("portsList"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReplicationGroup.ReadEndPointPropertystatic final classAn implementation forCfnReplicationGroup.ReadEndPointProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA string containing a comma-separated list of endpoints for the primary and read-only replicas, formatted as [address1, address2, ...].A list of endpoints for the read-only replicas.default StringgetPorts()A string containing a comma-separated list of ports for the read-only replicas, formatted as [port1, port2, ...].A list of ports for the read-only replicas.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddresses
A string containing a comma-separated list of endpoints for the primary and read-only replicas, formatted as [address1, address2, ...]. The order of the addresses maps to the order of the ports from the ReadEndPoint.Ports attribute.- See Also:
-
getAddressesList
A list of endpoints for the read-only replicas.The order of the addresses maps to the order of the ports from the ReadEndPoint.Ports attribute.
- See Also:
-
getPorts
A string containing a comma-separated list of ports for the read-only replicas, formatted as [port1, port2, ...]. The order of the ports maps to the order of the addresses from the ReadEndPoint.Addresses attribute.- See Also:
-
getPortsList
A list of ports for the read-only replicas.The order of the ports maps to the order of the addresses from the ReadEndPoint.Addresses attribute.
- See Also:
-
builder
-