AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AssociateLinkRequest.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 AssociateLinkRequest();
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 "AssociateLink"; }
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); }
44 inline AssociateLinkRequest& WithGlobalNetworkId(const Aws::String& value) { SetGlobalNetworkId(value); return *this;}
45 inline AssociateLinkRequest& WithGlobalNetworkId(Aws::String&& value) { SetGlobalNetworkId(std::move(value)); return *this;}
46 inline AssociateLinkRequest& WithGlobalNetworkId(const char* value) { SetGlobalNetworkId(value); return *this;}
48
50
53 inline const Aws::String& GetDeviceId() const{ return m_deviceId; }
54 inline bool DeviceIdHasBeenSet() const { return m_deviceIdHasBeenSet; }
55 inline void SetDeviceId(const Aws::String& value) { m_deviceIdHasBeenSet = true; m_deviceId = value; }
56 inline void SetDeviceId(Aws::String&& value) { m_deviceIdHasBeenSet = true; m_deviceId = std::move(value); }
57 inline void SetDeviceId(const char* value) { m_deviceIdHasBeenSet = true; m_deviceId.assign(value); }
58 inline AssociateLinkRequest& WithDeviceId(const Aws::String& value) { SetDeviceId(value); return *this;}
59 inline AssociateLinkRequest& WithDeviceId(Aws::String&& value) { SetDeviceId(std::move(value)); return *this;}
60 inline AssociateLinkRequest& WithDeviceId(const char* value) { SetDeviceId(value); return *this;}
62
64
67 inline const Aws::String& GetLinkId() const{ return m_linkId; }
68 inline bool LinkIdHasBeenSet() const { return m_linkIdHasBeenSet; }
69 inline void SetLinkId(const Aws::String& value) { m_linkIdHasBeenSet = true; m_linkId = value; }
70 inline void SetLinkId(Aws::String&& value) { m_linkIdHasBeenSet = true; m_linkId = std::move(value); }
71 inline void SetLinkId(const char* value) { m_linkIdHasBeenSet = true; m_linkId.assign(value); }
72 inline AssociateLinkRequest& WithLinkId(const Aws::String& value) { SetLinkId(value); return *this;}
73 inline AssociateLinkRequest& WithLinkId(Aws::String&& value) { SetLinkId(std::move(value)); return *this;}
74 inline AssociateLinkRequest& WithLinkId(const char* value) { SetLinkId(value); return *this;}
76 private:
77
78 Aws::String m_globalNetworkId;
79 bool m_globalNetworkIdHasBeenSet = false;
80
81 Aws::String m_deviceId;
82 bool m_deviceIdHasBeenSet = false;
83
84 Aws::String m_linkId;
85 bool m_linkIdHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace NetworkManager
90} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String