AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
WiFiAccessPoint.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
32 {
33 public:
34 AWS_IOTWIRELESS_API WiFiAccessPoint() = default;
35 AWS_IOTWIRELESS_API WiFiAccessPoint(Aws::Utils::Json::JsonView jsonValue);
36 AWS_IOTWIRELESS_API WiFiAccessPoint& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_IOTWIRELESS_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetMacAddress() const { return m_macAddress; }
45 inline bool MacAddressHasBeenSet() const { return m_macAddressHasBeenSet; }
46 template<typename MacAddressT = Aws::String>
47 void SetMacAddress(MacAddressT&& value) { m_macAddressHasBeenSet = true; m_macAddress = std::forward<MacAddressT>(value); }
48 template<typename MacAddressT = Aws::String>
49 WiFiAccessPoint& WithMacAddress(MacAddressT&& value) { SetMacAddress(std::forward<MacAddressT>(value)); return *this;}
51
53
56 inline int GetRss() const { return m_rss; }
57 inline bool RssHasBeenSet() const { return m_rssHasBeenSet; }
58 inline void SetRss(int value) { m_rssHasBeenSet = true; m_rss = value; }
59 inline WiFiAccessPoint& WithRss(int value) { SetRss(value); return *this;}
61 private:
62
63 Aws::String m_macAddress;
64 bool m_macAddressHasBeenSet = false;
65
66 int m_rss{0};
67 bool m_rssHasBeenSet = false;
68 };
69
70} // namespace Model
71} // namespace IoTWireless
72} // namespace Aws
AWS_IOTWIRELESS_API WiFiAccessPoint()=default
AWS_IOTWIRELESS_API WiFiAccessPoint & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_IOTWIRELESS_API Aws::Utils::Json::JsonValue Jsonize() const
WiFiAccessPoint & WithRss(int value)
AWS_IOTWIRELESS_API WiFiAccessPoint(Aws::Utils::Json::JsonView jsonValue)
void SetMacAddress(MacAddressT &&value)
WiFiAccessPoint & WithMacAddress(MacAddressT &&value)
const Aws::String & GetMacAddress() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue