91 lines
3.2 KiB
C++
91 lines
3.2 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/redshift/Redshift_EXPORTS.h>
|
|
#include <aws/redshift/RedshiftRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Redshift
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p/><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteClusterSecurityGroupMessage">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_REDSHIFT_API DeleteClusterSecurityGroupRequest : public RedshiftRequest
|
|
{
|
|
public:
|
|
DeleteClusterSecurityGroupRequest();
|
|
|
|
// 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 "DeleteClusterSecurityGroup"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The name of the cluster security group to be deleted.</p>
|
|
*/
|
|
inline const Aws::String& GetClusterSecurityGroupName() const{ return m_clusterSecurityGroupName; }
|
|
|
|
/**
|
|
* <p>The name of the cluster security group to be deleted.</p>
|
|
*/
|
|
inline bool ClusterSecurityGroupNameHasBeenSet() const { return m_clusterSecurityGroupNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the cluster security group to be deleted.</p>
|
|
*/
|
|
inline void SetClusterSecurityGroupName(const Aws::String& value) { m_clusterSecurityGroupNameHasBeenSet = true; m_clusterSecurityGroupName = value; }
|
|
|
|
/**
|
|
* <p>The name of the cluster security group to be deleted.</p>
|
|
*/
|
|
inline void SetClusterSecurityGroupName(Aws::String&& value) { m_clusterSecurityGroupNameHasBeenSet = true; m_clusterSecurityGroupName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the cluster security group to be deleted.</p>
|
|
*/
|
|
inline void SetClusterSecurityGroupName(const char* value) { m_clusterSecurityGroupNameHasBeenSet = true; m_clusterSecurityGroupName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the cluster security group to be deleted.</p>
|
|
*/
|
|
inline DeleteClusterSecurityGroupRequest& WithClusterSecurityGroupName(const Aws::String& value) { SetClusterSecurityGroupName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the cluster security group to be deleted.</p>
|
|
*/
|
|
inline DeleteClusterSecurityGroupRequest& WithClusterSecurityGroupName(Aws::String&& value) { SetClusterSecurityGroupName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the cluster security group to be deleted.</p>
|
|
*/
|
|
inline DeleteClusterSecurityGroupRequest& WithClusterSecurityGroupName(const char* value) { SetClusterSecurityGroupName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_clusterSecurityGroupName;
|
|
bool m_clusterSecurityGroupNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Redshift
|
|
} // namespace Aws
|