AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Forces a failover for a DB cluster.

A failover for a DB cluster promotes one of the Read Replicas (read-only instances) in the DB cluster to be the primary instance (the cluster writer).

Amazon Neptune will automatically fail over to a Read Replica, if one exists, when the primary instance fails. You can force a failover when you want to simulate a failure of a primary instance for testing. Because each instance in a DB cluster has its own endpoint address, you will need to clean up and re-establish any existing connections that use those endpoint addresses when the failover is complete.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to FailoverDBClusterAsync.

Namespace: Amazon.Neptune
Assembly: AWSSDK.Neptune.dll
Version: 3.x.y.z

Syntax

C#
public abstract FailoverDBClusterResponse FailoverDBCluster(
         FailoverDBClusterRequest request
)

Parameters

request
Type: Amazon.Neptune.Model.FailoverDBClusterRequest

Container for the necessary parameters to execute the FailoverDBCluster service method.

Return Value


The response from the FailoverDBCluster service method, as returned by Neptune.

Exceptions

ExceptionCondition
DBClusterNotFoundException DBClusterIdentifier does not refer to an existing DB cluster.
InvalidDBClusterStateException The DB cluster is not in a valid state.
InvalidDBInstanceStateException The specified DB instance is not in the available state.

Examples

This example performs a failover for the specified DB cluster to the specified DB instance.

To perform a failover for a DB cluster


var response = client.FailoverDBCluster(new FailoverDBClusterRequest 
{
    DBClusterIdentifier = "myaurorainstance-cluster",
    TargetDBInstanceIdentifier = "myaurorareplica"
});

DBCluster dbCluster = response.DBCluster;

            

Version Information

.NET Framework:
Supported in: 4.5 and newer, 3.5

See Also