Class CfnReplicationGroup.ReadEndPointProperty
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnReplicationGroup.ReadEndPointProperty : CfnReplicationGroup.IReadEndPointProperty
Syntax (vb)
Public Class CfnReplicationGroup.ReadEndPointProperty Implements 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
Constructors
| ReadEndPointProperty() |
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. |
Constructors
ReadEndPointProperty()
public ReadEndPointProperty()
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" }
};
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.
public string? Addresses { get; set; }
Property Value
Remarks
AddressesList
A list of endpoints for the read-only replicas.
public string[]? AddressesList { get; set; }
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.
public string? Ports { get; set; }
Property Value
Remarks
PortsList
A list of ports for the read-only replicas.
public string[]? PortsList { get; set; }
Property Value
string[]
Remarks
The order of the ports maps to the order of the addresses from the ReadEndPoint.Addresses attribute.