Show / Hide Table of Contents

Class CfnReplicationGroup.ReadEndPointProperty

Inheritance
object
CfnReplicationGroup.ReadEndPointProperty
Implements
CfnReplicationGroup.IReadEndPointProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-readendpoint.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-readendpoint.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-readendpoint.html#cfn-elasticache-replicationgroup-readendpoint-addresses

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-readendpoint.html#cfn-elasticache-replicationgroup-readendpoint-addresseslist

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-readendpoint.html#cfn-elasticache-replicationgroup-readendpoint-ports

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-readendpoint.html#cfn-elasticache-replicationgroup-readendpoint-portslist

Implements

CfnReplicationGroup.IReadEndPointProperty
Back to top Generated by DocFX