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-cloudhsmv2/include/aws/cloudhsmv2/model/DeleteClusterRequest.h

94 lines
3.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/cloudhsmv2/CloudHSMV2_EXPORTS.h>
#include <aws/cloudhsmv2/CloudHSMV2Request.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace CloudHSMV2
{
namespace Model
{
/**
*/
class AWS_CLOUDHSMV2_API DeleteClusterRequest : public CloudHSMV2Request
{
public:
DeleteClusterRequest();
// 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 "DeleteCluster"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The identifier (ID) of the cluster that you are deleting. To find the cluster
* ID, use <a>DescribeClusters</a>.</p>
*/
inline const Aws::String& GetClusterId() const{ return m_clusterId; }
/**
* <p>The identifier (ID) of the cluster that you are deleting. To find the cluster
* ID, use <a>DescribeClusters</a>.</p>
*/
inline bool ClusterIdHasBeenSet() const { return m_clusterIdHasBeenSet; }
/**
* <p>The identifier (ID) of the cluster that you are deleting. To find the cluster
* ID, use <a>DescribeClusters</a>.</p>
*/
inline void SetClusterId(const Aws::String& value) { m_clusterIdHasBeenSet = true; m_clusterId = value; }
/**
* <p>The identifier (ID) of the cluster that you are deleting. To find the cluster
* ID, use <a>DescribeClusters</a>.</p>
*/
inline void SetClusterId(Aws::String&& value) { m_clusterIdHasBeenSet = true; m_clusterId = std::move(value); }
/**
* <p>The identifier (ID) of the cluster that you are deleting. To find the cluster
* ID, use <a>DescribeClusters</a>.</p>
*/
inline void SetClusterId(const char* value) { m_clusterIdHasBeenSet = true; m_clusterId.assign(value); }
/**
* <p>The identifier (ID) of the cluster that you are deleting. To find the cluster
* ID, use <a>DescribeClusters</a>.</p>
*/
inline DeleteClusterRequest& WithClusterId(const Aws::String& value) { SetClusterId(value); return *this;}
/**
* <p>The identifier (ID) of the cluster that you are deleting. To find the cluster
* ID, use <a>DescribeClusters</a>.</p>
*/
inline DeleteClusterRequest& WithClusterId(Aws::String&& value) { SetClusterId(std::move(value)); return *this;}
/**
* <p>The identifier (ID) of the cluster that you are deleting. To find the cluster
* ID, use <a>DescribeClusters</a>.</p>
*/
inline DeleteClusterRequest& WithClusterId(const char* value) { SetClusterId(value); return *this;}
private:
Aws::String m_clusterId;
bool m_clusterIdHasBeenSet;
};
} // namespace Model
} // namespace CloudHSMV2
} // namespace Aws