AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteKxClusterNodeRequest.h
1
6#pragma once
7#include <aws/finspace/Finspace_EXPORTS.h>
8#include <aws/finspace/FinspaceRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace finspace
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_FINSPACE_API DeleteKxClusterNodeRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DeleteKxClusterNode"; }
31
32 AWS_FINSPACE_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetEnvironmentId() const{ return m_environmentId; }
40 inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; }
41 inline void SetEnvironmentId(const Aws::String& value) { m_environmentIdHasBeenSet = true; m_environmentId = value; }
42 inline void SetEnvironmentId(Aws::String&& value) { m_environmentIdHasBeenSet = true; m_environmentId = std::move(value); }
43 inline void SetEnvironmentId(const char* value) { m_environmentIdHasBeenSet = true; m_environmentId.assign(value); }
44 inline DeleteKxClusterNodeRequest& WithEnvironmentId(const Aws::String& value) { SetEnvironmentId(value); return *this;}
45 inline DeleteKxClusterNodeRequest& WithEnvironmentId(Aws::String&& value) { SetEnvironmentId(std::move(value)); return *this;}
46 inline DeleteKxClusterNodeRequest& WithEnvironmentId(const char* value) { SetEnvironmentId(value); return *this;}
48
50
53 inline const Aws::String& GetClusterName() const{ return m_clusterName; }
54 inline bool ClusterNameHasBeenSet() const { return m_clusterNameHasBeenSet; }
55 inline void SetClusterName(const Aws::String& value) { m_clusterNameHasBeenSet = true; m_clusterName = value; }
56 inline void SetClusterName(Aws::String&& value) { m_clusterNameHasBeenSet = true; m_clusterName = std::move(value); }
57 inline void SetClusterName(const char* value) { m_clusterNameHasBeenSet = true; m_clusterName.assign(value); }
58 inline DeleteKxClusterNodeRequest& WithClusterName(const Aws::String& value) { SetClusterName(value); return *this;}
59 inline DeleteKxClusterNodeRequest& WithClusterName(Aws::String&& value) { SetClusterName(std::move(value)); return *this;}
60 inline DeleteKxClusterNodeRequest& WithClusterName(const char* value) { SetClusterName(value); return *this;}
62
64
67 inline const Aws::String& GetNodeId() const{ return m_nodeId; }
68 inline bool NodeIdHasBeenSet() const { return m_nodeIdHasBeenSet; }
69 inline void SetNodeId(const Aws::String& value) { m_nodeIdHasBeenSet = true; m_nodeId = value; }
70 inline void SetNodeId(Aws::String&& value) { m_nodeIdHasBeenSet = true; m_nodeId = std::move(value); }
71 inline void SetNodeId(const char* value) { m_nodeIdHasBeenSet = true; m_nodeId.assign(value); }
72 inline DeleteKxClusterNodeRequest& WithNodeId(const Aws::String& value) { SetNodeId(value); return *this;}
73 inline DeleteKxClusterNodeRequest& WithNodeId(Aws::String&& value) { SetNodeId(std::move(value)); return *this;}
74 inline DeleteKxClusterNodeRequest& WithNodeId(const char* value) { SetNodeId(value); return *this;}
76 private:
77
78 Aws::String m_environmentId;
79 bool m_environmentIdHasBeenSet = false;
80
81 Aws::String m_clusterName;
82 bool m_clusterNameHasBeenSet = false;
83
84 Aws::String m_nodeId;
85 bool m_nodeIdHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace finspace
90} // namespace Aws
DeleteKxClusterNodeRequest & WithClusterName(const Aws::String &value)
DeleteKxClusterNodeRequest & WithClusterName(const char *value)
DeleteKxClusterNodeRequest & WithNodeId(const char *value)
DeleteKxClusterNodeRequest & WithClusterName(Aws::String &&value)
DeleteKxClusterNodeRequest & WithEnvironmentId(Aws::String &&value)
DeleteKxClusterNodeRequest & WithNodeId(const Aws::String &value)
DeleteKxClusterNodeRequest & WithEnvironmentId(const char *value)
virtual const char * GetServiceRequestName() const override
DeleteKxClusterNodeRequest & WithEnvironmentId(const Aws::String &value)
AWS_FINSPACE_API Aws::String SerializePayload() const override
DeleteKxClusterNodeRequest & WithNodeId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String