AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
WiFiAccessPoint.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/location/LocationService_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace LocationService {
20namespace Model {
21
28 public:
29 AWS_LOCATIONSERVICE_API WiFiAccessPoint() = default;
30 AWS_LOCATIONSERVICE_API WiFiAccessPoint(Aws::Utils::Json::JsonView jsonValue);
31 AWS_LOCATIONSERVICE_API WiFiAccessPoint& operator=(Aws::Utils::Json::JsonView jsonValue);
32 AWS_LOCATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
33
35
38 inline const Aws::String& GetMacAddress() const { return m_macAddress; }
39 inline bool MacAddressHasBeenSet() const { return m_macAddressHasBeenSet; }
40 template <typename MacAddressT = Aws::String>
41 void SetMacAddress(MacAddressT&& value) {
42 m_macAddressHasBeenSet = true;
43 m_macAddress = std::forward<MacAddressT>(value);
44 }
45 template <typename MacAddressT = Aws::String>
46 WiFiAccessPoint& WithMacAddress(MacAddressT&& value) {
47 SetMacAddress(std::forward<MacAddressT>(value));
48 return *this;
49 }
51
53
56 inline int GetRss() const { return m_rss; }
57 inline bool RssHasBeenSet() const { return m_rssHasBeenSet; }
58 inline void SetRss(int value) {
59 m_rssHasBeenSet = true;
60 m_rss = value;
61 }
62 inline WiFiAccessPoint& WithRss(int value) {
63 SetRss(value);
64 return *this;
65 }
67 private:
68 Aws::String m_macAddress;
69
70 int m_rss{0};
71 bool m_macAddressHasBeenSet = false;
72 bool m_rssHasBeenSet = false;
73};
74
75} // namespace Model
76} // namespace LocationService
77} // namespace Aws
AWS_LOCATIONSERVICE_API WiFiAccessPoint(Aws::Utils::Json::JsonView jsonValue)
AWS_LOCATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_LOCATIONSERVICE_API WiFiAccessPoint()=default
WiFiAccessPoint & WithMacAddress(MacAddressT &&value)
AWS_LOCATIONSERVICE_API WiFiAccessPoint & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue