Interface CfnReplicationGroup.IReadEndPointProperty
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnReplicationGroup.IReadEndPointProperty
Syntax (vb)
Public Interface CfnReplicationGroup.IReadEndPointProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElastiCache;
var readEndPointProperty = new ReadEndPointProperty {
Addresses = "addresses",
AddressesList = new [] { "addressesList" },
Ports = "ports",
PortsList = new [] { "portsList" }
};
Synopsis
Properties
| Addresses | 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. |
| AddressesList | A list of endpoints for the read-only replicas. |
| Ports | 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. |
| PortsList | A list of ports for the read-only replicas. |
Properties
Addresses
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.
string? Addresses { get; }
Property Value
Remarks
AddressesList
A list of endpoints for the read-only replicas.
string[]? AddressesList { get; }
Property Value
string[]
Remarks
The order of the addresses maps to the order of the ports from the ReadEndPoint.Ports attribute.
Ports
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.
string? Ports { get; }
Property Value
Remarks
PortsList
A list of ports for the read-only replicas.
string[]? PortsList { get; }
Property Value
string[]
Remarks
The order of the ports maps to the order of the addresses from the ReadEndPoint.Addresses attribute.