AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteComputeNodeGroupRequest.h
1
6#pragma once
7#include <aws/pcs/PCS_EXPORTS.h>
8#include <aws/pcs/PCSRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11#include <aws/core/utils/UUID.h>
12
13namespace Aws
14{
15namespace PCS
16{
17namespace Model
18{
19
23 {
24 public:
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DeleteComputeNodeGroup"; }
32
33 AWS_PCS_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetClusterIdentifier() const{ return m_clusterIdentifier; }
43 inline bool ClusterIdentifierHasBeenSet() const { return m_clusterIdentifierHasBeenSet; }
44 inline void SetClusterIdentifier(const Aws::String& value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier = value; }
45 inline void SetClusterIdentifier(Aws::String&& value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier = std::move(value); }
46 inline void SetClusterIdentifier(const char* value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier.assign(value); }
48 inline DeleteComputeNodeGroupRequest& WithClusterIdentifier(Aws::String&& value) { SetClusterIdentifier(std::move(value)); return *this;}
49 inline DeleteComputeNodeGroupRequest& WithClusterIdentifier(const char* value) { SetClusterIdentifier(value); return *this;}
51
53
56 inline const Aws::String& GetComputeNodeGroupIdentifier() const{ return m_computeNodeGroupIdentifier; }
57 inline bool ComputeNodeGroupIdentifierHasBeenSet() const { return m_computeNodeGroupIdentifierHasBeenSet; }
58 inline void SetComputeNodeGroupIdentifier(const Aws::String& value) { m_computeNodeGroupIdentifierHasBeenSet = true; m_computeNodeGroupIdentifier = value; }
59 inline void SetComputeNodeGroupIdentifier(Aws::String&& value) { m_computeNodeGroupIdentifierHasBeenSet = true; m_computeNodeGroupIdentifier = std::move(value); }
60 inline void SetComputeNodeGroupIdentifier(const char* value) { m_computeNodeGroupIdentifierHasBeenSet = true; m_computeNodeGroupIdentifier.assign(value); }
65
67
76 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
77 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
78 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
79 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
80 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
81 inline DeleteComputeNodeGroupRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
82 inline DeleteComputeNodeGroupRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
83 inline DeleteComputeNodeGroupRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
85 private:
86
87 Aws::String m_clusterIdentifier;
88 bool m_clusterIdentifierHasBeenSet = false;
89
90 Aws::String m_computeNodeGroupIdentifier;
91 bool m_computeNodeGroupIdentifierHasBeenSet = false;
92
93 Aws::String m_clientToken;
94 bool m_clientTokenHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace PCS
99} // namespace Aws
DeleteComputeNodeGroupRequest & WithClientToken(const char *value)
DeleteComputeNodeGroupRequest & WithClientToken(Aws::String &&value)
DeleteComputeNodeGroupRequest & WithClusterIdentifier(const char *value)
DeleteComputeNodeGroupRequest & WithComputeNodeGroupIdentifier(const char *value)
AWS_PCS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
virtual const char * GetServiceRequestName() const override
DeleteComputeNodeGroupRequest & WithClusterIdentifier(const Aws::String &value)
DeleteComputeNodeGroupRequest & WithClientToken(const Aws::String &value)
DeleteComputeNodeGroupRequest & WithComputeNodeGroupIdentifier(Aws::String &&value)
DeleteComputeNodeGroupRequest & WithClusterIdentifier(Aws::String &&value)
DeleteComputeNodeGroupRequest & WithComputeNodeGroupIdentifier(const Aws::String &value)
AWS_PCS_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String