AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetNodeRequest.h
1
6#pragma once
7#include <aws/managedblockchain/ManagedBlockchain_EXPORTS.h>
8#include <aws/managedblockchain/ManagedBlockchainRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace ManagedBlockchain
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_MANAGEDBLOCKCHAIN_API GetNodeRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "GetNode"; }
35
36 AWS_MANAGEDBLOCKCHAIN_API Aws::String SerializePayload() const override;
37
38 AWS_MANAGEDBLOCKCHAIN_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetNetworkId() const{ return m_networkId; }
46 inline bool NetworkIdHasBeenSet() const { return m_networkIdHasBeenSet; }
47 inline void SetNetworkId(const Aws::String& value) { m_networkIdHasBeenSet = true; m_networkId = value; }
48 inline void SetNetworkId(Aws::String&& value) { m_networkIdHasBeenSet = true; m_networkId = std::move(value); }
49 inline void SetNetworkId(const char* value) { m_networkIdHasBeenSet = true; m_networkId.assign(value); }
50 inline GetNodeRequest& WithNetworkId(const Aws::String& value) { SetNetworkId(value); return *this;}
51 inline GetNodeRequest& WithNetworkId(Aws::String&& value) { SetNetworkId(std::move(value)); return *this;}
52 inline GetNodeRequest& WithNetworkId(const char* value) { SetNetworkId(value); return *this;}
54
56
60 inline const Aws::String& GetMemberId() const{ return m_memberId; }
61 inline bool MemberIdHasBeenSet() const { return m_memberIdHasBeenSet; }
62 inline void SetMemberId(const Aws::String& value) { m_memberIdHasBeenSet = true; m_memberId = value; }
63 inline void SetMemberId(Aws::String&& value) { m_memberIdHasBeenSet = true; m_memberId = std::move(value); }
64 inline void SetMemberId(const char* value) { m_memberIdHasBeenSet = true; m_memberId.assign(value); }
65 inline GetNodeRequest& WithMemberId(const Aws::String& value) { SetMemberId(value); return *this;}
66 inline GetNodeRequest& WithMemberId(Aws::String&& value) { SetMemberId(std::move(value)); return *this;}
67 inline GetNodeRequest& WithMemberId(const char* value) { SetMemberId(value); return *this;}
69
71
74 inline const Aws::String& GetNodeId() const{ return m_nodeId; }
75 inline bool NodeIdHasBeenSet() const { return m_nodeIdHasBeenSet; }
76 inline void SetNodeId(const Aws::String& value) { m_nodeIdHasBeenSet = true; m_nodeId = value; }
77 inline void SetNodeId(Aws::String&& value) { m_nodeIdHasBeenSet = true; m_nodeId = std::move(value); }
78 inline void SetNodeId(const char* value) { m_nodeIdHasBeenSet = true; m_nodeId.assign(value); }
79 inline GetNodeRequest& WithNodeId(const Aws::String& value) { SetNodeId(value); return *this;}
80 inline GetNodeRequest& WithNodeId(Aws::String&& value) { SetNodeId(std::move(value)); return *this;}
81 inline GetNodeRequest& WithNodeId(const char* value) { SetNodeId(value); return *this;}
83 private:
84
85 Aws::String m_networkId;
86 bool m_networkIdHasBeenSet = false;
87
88 Aws::String m_memberId;
89 bool m_memberIdHasBeenSet = false;
90
91 Aws::String m_nodeId;
92 bool m_nodeIdHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace ManagedBlockchain
97} // namespace Aws
AWS_MANAGEDBLOCKCHAIN_API Aws::String SerializePayload() const override
GetNodeRequest & WithMemberId(const Aws::String &value)
GetNodeRequest & WithNodeId(const char *value)
void SetMemberId(const Aws::String &value)
GetNodeRequest & WithNodeId(const Aws::String &value)
GetNodeRequest & WithMemberId(const char *value)
GetNodeRequest & WithNetworkId(const Aws::String &value)
void SetNodeId(const Aws::String &value)
GetNodeRequest & WithNetworkId(const char *value)
AWS_MANAGEDBLOCKCHAIN_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_MANAGEDBLOCKCHAIN_API GetNodeRequest()
void SetNetworkId(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
GetNodeRequest & WithNodeId(Aws::String &&value)
GetNodeRequest & WithMemberId(Aws::String &&value)
GetNodeRequest & WithNetworkId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String