88 lines
3.0 KiB
C++
88 lines
3.0 KiB
C++
/**
|
|
* 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 DeleteGlobalClusterRequest : public RDSRequest
|
|
{
|
|
public:
|
|
DeleteGlobalClusterRequest();
|
|
|
|
// 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 "DeleteGlobalCluster"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p> The cluster identifier of the global database cluster being deleted. </p>
|
|
*/
|
|
inline const Aws::String& GetGlobalClusterIdentifier() const{ return m_globalClusterIdentifier; }
|
|
|
|
/**
|
|
* <p> The cluster identifier of the global database cluster being deleted. </p>
|
|
*/
|
|
inline bool GlobalClusterIdentifierHasBeenSet() const { return m_globalClusterIdentifierHasBeenSet; }
|
|
|
|
/**
|
|
* <p> The cluster identifier of the global database cluster being deleted. </p>
|
|
*/
|
|
inline void SetGlobalClusterIdentifier(const Aws::String& value) { m_globalClusterIdentifierHasBeenSet = true; m_globalClusterIdentifier = value; }
|
|
|
|
/**
|
|
* <p> The cluster identifier of the global database cluster being deleted. </p>
|
|
*/
|
|
inline void SetGlobalClusterIdentifier(Aws::String&& value) { m_globalClusterIdentifierHasBeenSet = true; m_globalClusterIdentifier = std::move(value); }
|
|
|
|
/**
|
|
* <p> The cluster identifier of the global database cluster being deleted. </p>
|
|
*/
|
|
inline void SetGlobalClusterIdentifier(const char* value) { m_globalClusterIdentifierHasBeenSet = true; m_globalClusterIdentifier.assign(value); }
|
|
|
|
/**
|
|
* <p> The cluster identifier of the global database cluster being deleted. </p>
|
|
*/
|
|
inline DeleteGlobalClusterRequest& WithGlobalClusterIdentifier(const Aws::String& value) { SetGlobalClusterIdentifier(value); return *this;}
|
|
|
|
/**
|
|
* <p> The cluster identifier of the global database cluster being deleted. </p>
|
|
*/
|
|
inline DeleteGlobalClusterRequest& WithGlobalClusterIdentifier(Aws::String&& value) { SetGlobalClusterIdentifier(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p> The cluster identifier of the global database cluster being deleted. </p>
|
|
*/
|
|
inline DeleteGlobalClusterRequest& WithGlobalClusterIdentifier(const char* value) { SetGlobalClusterIdentifier(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_globalClusterIdentifier;
|
|
bool m_globalClusterIdentifierHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace RDS
|
|
} // namespace Aws
|