AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AssociateCustomerGatewayRequest.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 AssociateCustomerGatewayRequest();
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 "AssociateCustomerGateway"; }
31
32 AWS_NETWORKMANAGER_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetCustomerGatewayArn() const{ return m_customerGatewayArn; }
40 inline bool CustomerGatewayArnHasBeenSet() const { return m_customerGatewayArnHasBeenSet; }
41 inline void SetCustomerGatewayArn(const Aws::String& value) { m_customerGatewayArnHasBeenSet = true; m_customerGatewayArn = value; }
42 inline void SetCustomerGatewayArn(Aws::String&& value) { m_customerGatewayArnHasBeenSet = true; m_customerGatewayArn = std::move(value); }
43 inline void SetCustomerGatewayArn(const char* value) { m_customerGatewayArnHasBeenSet = true; m_customerGatewayArn.assign(value); }
46 inline AssociateCustomerGatewayRequest& WithCustomerGatewayArn(const char* value) { SetCustomerGatewayArn(value); return *this;}
48
50
53 inline const Aws::String& GetGlobalNetworkId() const{ return m_globalNetworkId; }
54 inline bool GlobalNetworkIdHasBeenSet() const { return m_globalNetworkIdHasBeenSet; }
55 inline void SetGlobalNetworkId(const Aws::String& value) { m_globalNetworkIdHasBeenSet = true; m_globalNetworkId = value; }
56 inline void SetGlobalNetworkId(Aws::String&& value) { m_globalNetworkIdHasBeenSet = true; m_globalNetworkId = std::move(value); }
57 inline void SetGlobalNetworkId(const char* value) { m_globalNetworkIdHasBeenSet = true; m_globalNetworkId.assign(value); }
59 inline AssociateCustomerGatewayRequest& WithGlobalNetworkId(Aws::String&& value) { SetGlobalNetworkId(std::move(value)); return *this;}
60 inline AssociateCustomerGatewayRequest& WithGlobalNetworkId(const char* value) { SetGlobalNetworkId(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 AssociateCustomerGatewayRequest& WithDeviceId(const Aws::String& value) { SetDeviceId(value); return *this;}
73 inline AssociateCustomerGatewayRequest& WithDeviceId(Aws::String&& value) { SetDeviceId(std::move(value)); return *this;}
74 inline AssociateCustomerGatewayRequest& 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 AssociateCustomerGatewayRequest& WithLinkId(const Aws::String& value) { SetLinkId(value); return *this;}
87 inline AssociateCustomerGatewayRequest& WithLinkId(Aws::String&& value) { SetLinkId(std::move(value)); return *this;}
88 inline AssociateCustomerGatewayRequest& WithLinkId(const char* value) { SetLinkId(value); return *this;}
90 private:
91
92 Aws::String m_customerGatewayArn;
93 bool m_customerGatewayArnHasBeenSet = false;
94
95 Aws::String m_globalNetworkId;
96 bool m_globalNetworkIdHasBeenSet = 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
AssociateCustomerGatewayRequest & WithCustomerGatewayArn(const Aws::String &value)
AWS_NETWORKMANAGER_API Aws::String SerializePayload() const override
AssociateCustomerGatewayRequest & WithDeviceId(const Aws::String &value)
AssociateCustomerGatewayRequest & WithDeviceId(Aws::String &&value)
AssociateCustomerGatewayRequest & WithLinkId(const Aws::String &value)
AssociateCustomerGatewayRequest & WithGlobalNetworkId(Aws::String &&value)
AssociateCustomerGatewayRequest & WithLinkId(Aws::String &&value)
AssociateCustomerGatewayRequest & WithCustomerGatewayArn(Aws::String &&value)
AssociateCustomerGatewayRequest & WithDeviceId(const char *value)
AssociateCustomerGatewayRequest & WithLinkId(const char *value)
AssociateCustomerGatewayRequest & WithCustomerGatewayArn(const char *value)
AssociateCustomerGatewayRequest & WithGlobalNetworkId(const Aws::String &value)
AssociateCustomerGatewayRequest & WithGlobalNetworkId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String