AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
GatewayListItem.h
1
6#pragma once
7#include <aws/iotwireless/IoTWireless_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace IoTWireless
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_IOTWIRELESS_API GatewayListItem() = default;
36 AWS_IOTWIRELESS_API GatewayListItem(Aws::Utils::Json::JsonView jsonValue);
37 AWS_IOTWIRELESS_API GatewayListItem& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_IOTWIRELESS_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::String& GetGatewayId() const { return m_gatewayId; }
47 inline bool GatewayIdHasBeenSet() const { return m_gatewayIdHasBeenSet; }
48 template<typename GatewayIdT = Aws::String>
49 void SetGatewayId(GatewayIdT&& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = std::forward<GatewayIdT>(value); }
50 template<typename GatewayIdT = Aws::String>
51 GatewayListItem& WithGatewayId(GatewayIdT&& value) { SetGatewayId(std::forward<GatewayIdT>(value)); return *this;}
53
55
59 inline int GetDownlinkFrequency() const { return m_downlinkFrequency; }
60 inline bool DownlinkFrequencyHasBeenSet() const { return m_downlinkFrequencyHasBeenSet; }
61 inline void SetDownlinkFrequency(int value) { m_downlinkFrequencyHasBeenSet = true; m_downlinkFrequency = value; }
62 inline GatewayListItem& WithDownlinkFrequency(int value) { SetDownlinkFrequency(value); return *this;}
64 private:
65
66 Aws::String m_gatewayId;
67 bool m_gatewayIdHasBeenSet = false;
68
69 int m_downlinkFrequency{0};
70 bool m_downlinkFrequencyHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace IoTWireless
75} // namespace Aws
AWS_IOTWIRELESS_API GatewayListItem(Aws::Utils::Json::JsonView jsonValue)
AWS_IOTWIRELESS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_IOTWIRELESS_API GatewayListItem()=default
GatewayListItem & WithGatewayId(GatewayIdT &&value)
const Aws::String & GetGatewayId() const
GatewayListItem & WithDownlinkFrequency(int value)
AWS_IOTWIRELESS_API GatewayListItem & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue