This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-rds/include/aws/rds/model/RemoveFromGlobalClusterRequest.h

148 lines
5.5 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/rds/RDS_EXPORTS.h>
#include <aws/rds/RDSRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace RDS
{
namespace Model
{
/**
*/
class AWS_RDS_API RemoveFromGlobalClusterRequest : public RDSRequest
{
public:
RemoveFromGlobalClusterRequest();
// 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 "RemoveFromGlobalCluster"; }
Aws::String SerializePayload() const override;
protected:
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
public:
/**
* <p> The cluster identifier to detach from the Aurora global database cluster.
* </p>
*/
inline const Aws::String& GetGlobalClusterIdentifier() const{ return m_globalClusterIdentifier; }
/**
* <p> The cluster identifier to detach from the Aurora global database cluster.
* </p>
*/
inline bool GlobalClusterIdentifierHasBeenSet() const { return m_globalClusterIdentifierHasBeenSet; }
/**
* <p> The cluster identifier to detach from the Aurora global database cluster.
* </p>
*/
inline void SetGlobalClusterIdentifier(const Aws::String& value) { m_globalClusterIdentifierHasBeenSet = true; m_globalClusterIdentifier = value; }
/**
* <p> The cluster identifier to detach from the Aurora global database cluster.
* </p>
*/
inline void SetGlobalClusterIdentifier(Aws::String&& value) { m_globalClusterIdentifierHasBeenSet = true; m_globalClusterIdentifier = std::move(value); }
/**
* <p> The cluster identifier to detach from the Aurora global database cluster.
* </p>
*/
inline void SetGlobalClusterIdentifier(const char* value) { m_globalClusterIdentifierHasBeenSet = true; m_globalClusterIdentifier.assign(value); }
/**
* <p> The cluster identifier to detach from the Aurora global database cluster.
* </p>
*/
inline RemoveFromGlobalClusterRequest& WithGlobalClusterIdentifier(const Aws::String& value) { SetGlobalClusterIdentifier(value); return *this;}
/**
* <p> The cluster identifier to detach from the Aurora global database cluster.
* </p>
*/
inline RemoveFromGlobalClusterRequest& WithGlobalClusterIdentifier(Aws::String&& value) { SetGlobalClusterIdentifier(std::move(value)); return *this;}
/**
* <p> The cluster identifier to detach from the Aurora global database cluster.
* </p>
*/
inline RemoveFromGlobalClusterRequest& WithGlobalClusterIdentifier(const char* value) { SetGlobalClusterIdentifier(value); return *this;}
/**
* <p> The Amazon Resource Name (ARN) identifying the cluster that was detached
* from the Aurora global database cluster. </p>
*/
inline const Aws::String& GetDbClusterIdentifier() const{ return m_dbClusterIdentifier; }
/**
* <p> The Amazon Resource Name (ARN) identifying the cluster that was detached
* from the Aurora global database cluster. </p>
*/
inline bool DbClusterIdentifierHasBeenSet() const { return m_dbClusterIdentifierHasBeenSet; }
/**
* <p> The Amazon Resource Name (ARN) identifying the cluster that was detached
* from the Aurora global database cluster. </p>
*/
inline void SetDbClusterIdentifier(const Aws::String& value) { m_dbClusterIdentifierHasBeenSet = true; m_dbClusterIdentifier = value; }
/**
* <p> The Amazon Resource Name (ARN) identifying the cluster that was detached
* from the Aurora global database cluster. </p>
*/
inline void SetDbClusterIdentifier(Aws::String&& value) { m_dbClusterIdentifierHasBeenSet = true; m_dbClusterIdentifier = std::move(value); }
/**
* <p> The Amazon Resource Name (ARN) identifying the cluster that was detached
* from the Aurora global database cluster. </p>
*/
inline void SetDbClusterIdentifier(const char* value) { m_dbClusterIdentifierHasBeenSet = true; m_dbClusterIdentifier.assign(value); }
/**
* <p> The Amazon Resource Name (ARN) identifying the cluster that was detached
* from the Aurora global database cluster. </p>
*/
inline RemoveFromGlobalClusterRequest& WithDbClusterIdentifier(const Aws::String& value) { SetDbClusterIdentifier(value); return *this;}
/**
* <p> The Amazon Resource Name (ARN) identifying the cluster that was detached
* from the Aurora global database cluster. </p>
*/
inline RemoveFromGlobalClusterRequest& WithDbClusterIdentifier(Aws::String&& value) { SetDbClusterIdentifier(std::move(value)); return *this;}
/**
* <p> The Amazon Resource Name (ARN) identifying the cluster that was detached
* from the Aurora global database cluster. </p>
*/
inline RemoveFromGlobalClusterRequest& WithDbClusterIdentifier(const char* value) { SetDbClusterIdentifier(value); return *this;}
private:
Aws::String m_globalClusterIdentifier;
bool m_globalClusterIdentifierHasBeenSet;
Aws::String m_dbClusterIdentifier;
bool m_dbClusterIdentifierHasBeenSet;
};
} // namespace Model
} // namespace RDS
} // namespace Aws