AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AssociateConnectPeerRequest.h
1
6#pragma once
7#include <aws/networkmanager/NetworkManager_EXPORTS.h>
8#include <aws/networkmanager/NetworkManagerRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace NetworkManager
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_NETWORKMANAGER_API AssociateConnectPeerRequest();
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 "AssociateConnectPeer"; }
31
32 AWS_NETWORKMANAGER_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetGlobalNetworkId() const{ return m_globalNetworkId; }
40 inline bool GlobalNetworkIdHasBeenSet() const { return m_globalNetworkIdHasBeenSet; }
41 inline void SetGlobalNetworkId(const Aws::String& value) { m_globalNetworkIdHasBeenSet = true; m_globalNetworkId = value; }
42 inline void SetGlobalNetworkId(Aws::String&& value) { m_globalNetworkIdHasBeenSet = true; m_globalNetworkId = std::move(value); }
43 inline void SetGlobalNetworkId(const char* value) { m_globalNetworkIdHasBeenSet = true; m_globalNetworkId.assign(value); }
45 inline AssociateConnectPeerRequest& WithGlobalNetworkId(Aws::String&& value) { SetGlobalNetworkId(std::move(value)); return *this;}
46 inline AssociateConnectPeerRequest& WithGlobalNetworkId(const char* value) { SetGlobalNetworkId(value); return *this;}
48
50
53 inline const Aws::String& GetConnectPeerId() const{ return m_connectPeerId; }
54 inline bool ConnectPeerIdHasBeenSet() const { return m_connectPeerIdHasBeenSet; }
55 inline void SetConnectPeerId(const Aws::String& value) { m_connectPeerIdHasBeenSet = true; m_connectPeerId = value; }
56 inline void SetConnectPeerId(Aws::String&& value) { m_connectPeerIdHasBeenSet = true; m_connectPeerId = std::move(value); }
57 inline void SetConnectPeerId(const char* value) { m_connectPeerIdHasBeenSet = true; m_connectPeerId.assign(value); }
58 inline AssociateConnectPeerRequest& WithConnectPeerId(const Aws::String& value) { SetConnectPeerId(value); return *this;}
59 inline AssociateConnectPeerRequest& WithConnectPeerId(Aws::String&& value) { SetConnectPeerId(std::move(value)); return *this;}
60 inline AssociateConnectPeerRequest& WithConnectPeerId(const char* value) { SetConnectPeerId(value); return *this;}
62
64
67 inline const Aws::String& GetDeviceId() const{ return m_deviceId; }
68 inline bool DeviceIdHasBeenSet() const { return m_deviceIdHasBeenSet; }
69 inline void SetDeviceId(const Aws::String& value) { m_deviceIdHasBeenSet = true; m_deviceId = value; }
70 inline void SetDeviceId(Aws::String&& value) { m_deviceIdHasBeenSet = true; m_deviceId = std::move(value); }
71 inline void SetDeviceId(const char* value) { m_deviceIdHasBeenSet = true; m_deviceId.assign(value); }
72 inline AssociateConnectPeerRequest& WithDeviceId(const Aws::String& value) { SetDeviceId(value); return *this;}
73 inline AssociateConnectPeerRequest& WithDeviceId(Aws::String&& value) { SetDeviceId(std::move(value)); return *this;}
74 inline AssociateConnectPeerRequest& WithDeviceId(const char* value) { SetDeviceId(value); return *this;}
76
78
81 inline const Aws::String& GetLinkId() const{ return m_linkId; }
82 inline bool LinkIdHasBeenSet() const { return m_linkIdHasBeenSet; }
83 inline void SetLinkId(const Aws::String& value) { m_linkIdHasBeenSet = true; m_linkId = value; }
84 inline void SetLinkId(Aws::String&& value) { m_linkIdHasBeenSet = true; m_linkId = std::move(value); }
85 inline void SetLinkId(const char* value) { m_linkIdHasBeenSet = true; m_linkId.assign(value); }
86 inline AssociateConnectPeerRequest& WithLinkId(const Aws::String& value) { SetLinkId(value); return *this;}
87 inline AssociateConnectPeerRequest& WithLinkId(Aws::String&& value) { SetLinkId(std::move(value)); return *this;}
88 inline AssociateConnectPeerRequest& WithLinkId(const char* value) { SetLinkId(value); return *this;}
90 private:
91
92 Aws::String m_globalNetworkId;
93 bool m_globalNetworkIdHasBeenSet = false;
94
95 Aws::String m_connectPeerId;
96 bool m_connectPeerIdHasBeenSet = false;
97
98 Aws::String m_deviceId;
99 bool m_deviceIdHasBeenSet = false;
100
101 Aws::String m_linkId;
102 bool m_linkIdHasBeenSet = false;
103 };
104
105} // namespace Model
106} // namespace NetworkManager
107} // namespace Aws
AssociateConnectPeerRequest & WithGlobalNetworkId(const char *value)
AssociateConnectPeerRequest & WithLinkId(const char *value)
AssociateConnectPeerRequest & WithDeviceId(const Aws::String &value)
AssociateConnectPeerRequest & WithConnectPeerId(const char *value)
AWS_NETWORKMANAGER_API Aws::String SerializePayload() const override
AssociateConnectPeerRequest & WithGlobalNetworkId(Aws::String &&value)
AssociateConnectPeerRequest & WithDeviceId(Aws::String &&value)
AssociateConnectPeerRequest & WithDeviceId(const char *value)
AssociateConnectPeerRequest & WithLinkId(Aws::String &&value)
AssociateConnectPeerRequest & WithGlobalNetworkId(const Aws::String &value)
AssociateConnectPeerRequest & WithConnectPeerId(const Aws::String &value)
AssociateConnectPeerRequest & WithConnectPeerId(Aws::String &&value)
AssociateConnectPeerRequest & WithLinkId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String