Show / Hide Table of Contents

Class CfnDBCluster.ReadEndpointProperty

The ReadEndpoint return value specifies the reader endpoint for the DB cluster.

Inheritance
System.Object
CfnDBCluster.ReadEndpointProperty
Implements
CfnDBCluster.IReadEndpointProperty
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.dll
Syntax (csharp)
public class ReadEndpointProperty : Object, CfnDBCluster.IReadEndpointProperty
Syntax (vb)
Public Class ReadEndpointProperty
    Inherits Object
    Implements CfnDBCluster.IReadEndpointProperty
Remarks

The reader endpoint for a DB cluster load-balances connections across the Aurora Replicas that are available in a DB cluster. As clients request new connections to the reader endpoint, Aurora distributes the connection requests among the Aurora Replicas in the DB cluster. This functionality can help balance your read workload across multiple Aurora Replicas in your DB cluster.

If a failover occurs, and the Aurora Replica that you are connected to is promoted to be the primary instance, your connection is dropped. To continue sending your read workload to other Aurora Replicas in the cluster, you can then reconnect to the reader endpoint.

For more information about Aurora endpoints, see Amazon Aurora connection management in the Amazon Aurora User Guide .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-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.RDS;

var readEndpointProperty = new ReadEndpointProperty {
    Address = "address"
};

Synopsis

Constructors

ReadEndpointProperty()

Properties

Address

The host address of the reader endpoint.

Constructors

ReadEndpointProperty()

public ReadEndpointProperty()

Properties

Address

The host address of the reader endpoint.

public string Address { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-readendpoint.html#cfn-rds-dbcluster-readendpoint-address

Implements

CfnDBCluster.IReadEndpointProperty
Back to top Generated by DocFX