Show / Hide Table of Contents

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

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

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

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.

string[]? AddressesList { get; }
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.

string? Ports { get; }
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.

string[]? PortsList { get; }
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

Back to top Generated by DocFX