115 lines
5.2 KiB
C++
115 lines
5.2 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
|
|
{
|
|
|
|
/**
|
|
* <p/><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterParameterGroupMessage">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_RDS_API DeleteDBClusterParameterGroupRequest : public RDSRequest
|
|
{
|
|
public:
|
|
DeleteDBClusterParameterGroupRequest();
|
|
|
|
// 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 "DeleteDBClusterParameterGroup"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
|
|
* <p>Must be the name of an existing DB cluster parameter group.</p> </li> <li>
|
|
* <p>You can't delete a default DB cluster parameter group.</p> </li> <li>
|
|
* <p>Can't be associated with any DB clusters.</p> </li> </ul>
|
|
*/
|
|
inline const Aws::String& GetDBClusterParameterGroupName() const{ return m_dBClusterParameterGroupName; }
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
|
|
* <p>Must be the name of an existing DB cluster parameter group.</p> </li> <li>
|
|
* <p>You can't delete a default DB cluster parameter group.</p> </li> <li>
|
|
* <p>Can't be associated with any DB clusters.</p> </li> </ul>
|
|
*/
|
|
inline bool DBClusterParameterGroupNameHasBeenSet() const { return m_dBClusterParameterGroupNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
|
|
* <p>Must be the name of an existing DB cluster parameter group.</p> </li> <li>
|
|
* <p>You can't delete a default DB cluster parameter group.</p> </li> <li>
|
|
* <p>Can't be associated with any DB clusters.</p> </li> </ul>
|
|
*/
|
|
inline void SetDBClusterParameterGroupName(const Aws::String& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = value; }
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
|
|
* <p>Must be the name of an existing DB cluster parameter group.</p> </li> <li>
|
|
* <p>You can't delete a default DB cluster parameter group.</p> </li> <li>
|
|
* <p>Can't be associated with any DB clusters.</p> </li> </ul>
|
|
*/
|
|
inline void SetDBClusterParameterGroupName(Aws::String&& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
|
|
* <p>Must be the name of an existing DB cluster parameter group.</p> </li> <li>
|
|
* <p>You can't delete a default DB cluster parameter group.</p> </li> <li>
|
|
* <p>Can't be associated with any DB clusters.</p> </li> </ul>
|
|
*/
|
|
inline void SetDBClusterParameterGroupName(const char* value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
|
|
* <p>Must be the name of an existing DB cluster parameter group.</p> </li> <li>
|
|
* <p>You can't delete a default DB cluster parameter group.</p> </li> <li>
|
|
* <p>Can't be associated with any DB clusters.</p> </li> </ul>
|
|
*/
|
|
inline DeleteDBClusterParameterGroupRequest& WithDBClusterParameterGroupName(const Aws::String& value) { SetDBClusterParameterGroupName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
|
|
* <p>Must be the name of an existing DB cluster parameter group.</p> </li> <li>
|
|
* <p>You can't delete a default DB cluster parameter group.</p> </li> <li>
|
|
* <p>Can't be associated with any DB clusters.</p> </li> </ul>
|
|
*/
|
|
inline DeleteDBClusterParameterGroupRequest& WithDBClusterParameterGroupName(Aws::String&& value) { SetDBClusterParameterGroupName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the DB cluster parameter group.</p> <p>Constraints:</p> <ul> <li>
|
|
* <p>Must be the name of an existing DB cluster parameter group.</p> </li> <li>
|
|
* <p>You can't delete a default DB cluster parameter group.</p> </li> <li>
|
|
* <p>Can't be associated with any DB clusters.</p> </li> </ul>
|
|
*/
|
|
inline DeleteDBClusterParameterGroupRequest& WithDBClusterParameterGroupName(const char* value) { SetDBClusterParameterGroupName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_dBClusterParameterGroupName;
|
|
bool m_dBClusterParameterGroupNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace RDS
|
|
} // namespace Aws
|