AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
GetWirelessGatewayResult.h
1
6#pragma once
7#include <aws/iotwireless/IoTWireless_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/iotwireless/model/LoRaWANGateway.h>
10#include <utility>
11
12namespace Aws
13{
14template<typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace IoTWireless
25{
26namespace Model
27{
29 {
30 public:
31 AWS_IOTWIRELESS_API GetWirelessGatewayResult() = default;
34
35
37
40 inline const Aws::String& GetName() const { return m_name; }
41 template<typename NameT = Aws::String>
42 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
43 template<typename NameT = Aws::String>
44 GetWirelessGatewayResult& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
46
48
51 inline const Aws::String& GetId() const { return m_id; }
52 template<typename IdT = Aws::String>
53 void SetId(IdT&& value) { m_idHasBeenSet = true; m_id = std::forward<IdT>(value); }
54 template<typename IdT = Aws::String>
55 GetWirelessGatewayResult& WithId(IdT&& value) { SetId(std::forward<IdT>(value)); return *this;}
57
59
62 inline const Aws::String& GetDescription() const { return m_description; }
63 template<typename DescriptionT = Aws::String>
64 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
65 template<typename DescriptionT = Aws::String>
66 GetWirelessGatewayResult& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
68
70
73 inline const LoRaWANGateway& GetLoRaWAN() const { return m_loRaWAN; }
74 template<typename LoRaWANT = LoRaWANGateway>
75 void SetLoRaWAN(LoRaWANT&& value) { m_loRaWANHasBeenSet = true; m_loRaWAN = std::forward<LoRaWANT>(value); }
76 template<typename LoRaWANT = LoRaWANGateway>
77 GetWirelessGatewayResult& WithLoRaWAN(LoRaWANT&& value) { SetLoRaWAN(std::forward<LoRaWANT>(value)); return *this;}
79
81
84 inline const Aws::String& GetArn() const { return m_arn; }
85 template<typename ArnT = Aws::String>
86 void SetArn(ArnT&& value) { m_arnHasBeenSet = true; m_arn = std::forward<ArnT>(value); }
87 template<typename ArnT = Aws::String>
88 GetWirelessGatewayResult& WithArn(ArnT&& value) { SetArn(std::forward<ArnT>(value)); return *this;}
90
92
96 inline const Aws::String& GetThingName() const { return m_thingName; }
97 template<typename ThingNameT = Aws::String>
98 void SetThingName(ThingNameT&& value) { m_thingNameHasBeenSet = true; m_thingName = std::forward<ThingNameT>(value); }
99 template<typename ThingNameT = Aws::String>
100 GetWirelessGatewayResult& WithThingName(ThingNameT&& value) { SetThingName(std::forward<ThingNameT>(value)); return *this;}
102
104
107 inline const Aws::String& GetThingArn() const { return m_thingArn; }
108 template<typename ThingArnT = Aws::String>
109 void SetThingArn(ThingArnT&& value) { m_thingArnHasBeenSet = true; m_thingArn = std::forward<ThingArnT>(value); }
110 template<typename ThingArnT = Aws::String>
111 GetWirelessGatewayResult& WithThingArn(ThingArnT&& value) { SetThingArn(std::forward<ThingArnT>(value)); return *this;}
113
115
116 inline const Aws::String& GetRequestId() const { return m_requestId; }
117 template<typename RequestIdT = Aws::String>
118 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
119 template<typename RequestIdT = Aws::String>
120 GetWirelessGatewayResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
122 private:
123
124 Aws::String m_name;
125 bool m_nameHasBeenSet = false;
126
127 Aws::String m_id;
128 bool m_idHasBeenSet = false;
129
130 Aws::String m_description;
131 bool m_descriptionHasBeenSet = false;
132
133 LoRaWANGateway m_loRaWAN;
134 bool m_loRaWANHasBeenSet = false;
135
136 Aws::String m_arn;
137 bool m_arnHasBeenSet = false;
138
139 Aws::String m_thingName;
140 bool m_thingNameHasBeenSet = false;
141
142 Aws::String m_thingArn;
143 bool m_thingArnHasBeenSet = false;
144
145 Aws::String m_requestId;
146 bool m_requestIdHasBeenSet = false;
147 };
148
149} // namespace Model
150} // namespace IoTWireless
151} // namespace Aws
GetWirelessGatewayResult & WithThingName(ThingNameT &&value)
GetWirelessGatewayResult & WithArn(ArnT &&value)
GetWirelessGatewayResult & WithDescription(DescriptionT &&value)
AWS_IOTWIRELESS_API GetWirelessGatewayResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetWirelessGatewayResult & WithLoRaWAN(LoRaWANT &&value)
GetWirelessGatewayResult & WithRequestId(RequestIdT &&value)
GetWirelessGatewayResult & WithThingArn(ThingArnT &&value)
AWS_IOTWIRELESS_API GetWirelessGatewayResult()=default
GetWirelessGatewayResult & WithName(NameT &&value)
AWS_IOTWIRELESS_API GetWirelessGatewayResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue