/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace RDS { namespace Model { /** *

See Also:

AWS * API Reference

*/ class FailoverDBClusterRequest : public RDSRequest { public: AWS_RDS_API FailoverDBClusterRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "FailoverDBCluster"; } AWS_RDS_API Aws::String SerializePayload() const override; protected: AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

A DB cluster identifier to force a failover for. This parameter isn't * case-sensitive.

Constraints:

  • Must match the identifier * of an existing DBCluster.

*/ inline const Aws::String& GetDBClusterIdentifier() const{ return m_dBClusterIdentifier; } /** *

A DB cluster identifier to force a failover for. This parameter isn't * case-sensitive.

Constraints:

  • Must match the identifier * of an existing DBCluster.

*/ inline bool DBClusterIdentifierHasBeenSet() const { return m_dBClusterIdentifierHasBeenSet; } /** *

A DB cluster identifier to force a failover for. This parameter isn't * case-sensitive.

Constraints:

  • Must match the identifier * of an existing DBCluster.

*/ inline void SetDBClusterIdentifier(const Aws::String& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = value; } /** *

A DB cluster identifier to force a failover for. This parameter isn't * case-sensitive.

Constraints:

  • Must match the identifier * of an existing DBCluster.

*/ inline void SetDBClusterIdentifier(Aws::String&& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = std::move(value); } /** *

A DB cluster identifier to force a failover for. This parameter isn't * case-sensitive.

Constraints:

  • Must match the identifier * of an existing DBCluster.

*/ inline void SetDBClusterIdentifier(const char* value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier.assign(value); } /** *

A DB cluster identifier to force a failover for. This parameter isn't * case-sensitive.

Constraints:

  • Must match the identifier * of an existing DBCluster.

*/ inline FailoverDBClusterRequest& WithDBClusterIdentifier(const Aws::String& value) { SetDBClusterIdentifier(value); return *this;} /** *

A DB cluster identifier to force a failover for. This parameter isn't * case-sensitive.

Constraints:

  • Must match the identifier * of an existing DBCluster.

*/ inline FailoverDBClusterRequest& WithDBClusterIdentifier(Aws::String&& value) { SetDBClusterIdentifier(std::move(value)); return *this;} /** *

A DB cluster identifier to force a failover for. This parameter isn't * case-sensitive.

Constraints:

  • Must match the identifier * of an existing DBCluster.

*/ inline FailoverDBClusterRequest& WithDBClusterIdentifier(const char* value) { SetDBClusterIdentifier(value); return *this;} /** *

The name of the DB instance to promote to the primary DB instance.

*

Specify the DB instance identifier for an Aurora Replica or a Multi-AZ * readable standby in the DB cluster, for example * mydbcluster-replica1.

This setting isn't supported for RDS * for MySQL Multi-AZ DB clusters.

*/ inline const Aws::String& GetTargetDBInstanceIdentifier() const{ return m_targetDBInstanceIdentifier; } /** *

The name of the DB instance to promote to the primary DB instance.

*

Specify the DB instance identifier for an Aurora Replica or a Multi-AZ * readable standby in the DB cluster, for example * mydbcluster-replica1.

This setting isn't supported for RDS * for MySQL Multi-AZ DB clusters.

*/ inline bool TargetDBInstanceIdentifierHasBeenSet() const { return m_targetDBInstanceIdentifierHasBeenSet; } /** *

The name of the DB instance to promote to the primary DB instance.

*

Specify the DB instance identifier for an Aurora Replica or a Multi-AZ * readable standby in the DB cluster, for example * mydbcluster-replica1.

This setting isn't supported for RDS * for MySQL Multi-AZ DB clusters.

*/ inline void SetTargetDBInstanceIdentifier(const Aws::String& value) { m_targetDBInstanceIdentifierHasBeenSet = true; m_targetDBInstanceIdentifier = value; } /** *

The name of the DB instance to promote to the primary DB instance.

*

Specify the DB instance identifier for an Aurora Replica or a Multi-AZ * readable standby in the DB cluster, for example * mydbcluster-replica1.

This setting isn't supported for RDS * for MySQL Multi-AZ DB clusters.

*/ inline void SetTargetDBInstanceIdentifier(Aws::String&& value) { m_targetDBInstanceIdentifierHasBeenSet = true; m_targetDBInstanceIdentifier = std::move(value); } /** *

The name of the DB instance to promote to the primary DB instance.

*

Specify the DB instance identifier for an Aurora Replica or a Multi-AZ * readable standby in the DB cluster, for example * mydbcluster-replica1.

This setting isn't supported for RDS * for MySQL Multi-AZ DB clusters.

*/ inline void SetTargetDBInstanceIdentifier(const char* value) { m_targetDBInstanceIdentifierHasBeenSet = true; m_targetDBInstanceIdentifier.assign(value); } /** *

The name of the DB instance to promote to the primary DB instance.

*

Specify the DB instance identifier for an Aurora Replica or a Multi-AZ * readable standby in the DB cluster, for example * mydbcluster-replica1.

This setting isn't supported for RDS * for MySQL Multi-AZ DB clusters.

*/ inline FailoverDBClusterRequest& WithTargetDBInstanceIdentifier(const Aws::String& value) { SetTargetDBInstanceIdentifier(value); return *this;} /** *

The name of the DB instance to promote to the primary DB instance.

*

Specify the DB instance identifier for an Aurora Replica or a Multi-AZ * readable standby in the DB cluster, for example * mydbcluster-replica1.

This setting isn't supported for RDS * for MySQL Multi-AZ DB clusters.

*/ inline FailoverDBClusterRequest& WithTargetDBInstanceIdentifier(Aws::String&& value) { SetTargetDBInstanceIdentifier(std::move(value)); return *this;} /** *

The name of the DB instance to promote to the primary DB instance.

*

Specify the DB instance identifier for an Aurora Replica or a Multi-AZ * readable standby in the DB cluster, for example * mydbcluster-replica1.

This setting isn't supported for RDS * for MySQL Multi-AZ DB clusters.

*/ inline FailoverDBClusterRequest& WithTargetDBInstanceIdentifier(const char* value) { SetTargetDBInstanceIdentifier(value); return *this;} private: Aws::String m_dBClusterIdentifier; bool m_dBClusterIdentifierHasBeenSet = false; Aws::String m_targetDBInstanceIdentifier; bool m_targetDBInstanceIdentifierHasBeenSet = false; }; } // namespace Model } // namespace RDS } // namespace Aws