AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
CellSignals.h
1
6#pragma once
7#include <aws/location/LocationService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/location/model/LteCellDetails.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace LocationService
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_LOCATIONSERVICE_API CellSignals() = default;
37 AWS_LOCATIONSERVICE_API CellSignals(Aws::Utils::Json::JsonView jsonValue);
38 AWS_LOCATIONSERVICE_API CellSignals& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_LOCATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::Vector<LteCellDetails>& GetLteCellDetails() const { return m_lteCellDetails; }
48 inline bool LteCellDetailsHasBeenSet() const { return m_lteCellDetailsHasBeenSet; }
49 template<typename LteCellDetailsT = Aws::Vector<LteCellDetails>>
50 void SetLteCellDetails(LteCellDetailsT&& value) { m_lteCellDetailsHasBeenSet = true; m_lteCellDetails = std::forward<LteCellDetailsT>(value); }
51 template<typename LteCellDetailsT = Aws::Vector<LteCellDetails>>
52 CellSignals& WithLteCellDetails(LteCellDetailsT&& value) { SetLteCellDetails(std::forward<LteCellDetailsT>(value)); return *this;}
53 template<typename LteCellDetailsT = LteCellDetails>
54 CellSignals& AddLteCellDetails(LteCellDetailsT&& value) { m_lteCellDetailsHasBeenSet = true; m_lteCellDetails.emplace_back(std::forward<LteCellDetailsT>(value)); return *this; }
56 private:
57
58 Aws::Vector<LteCellDetails> m_lteCellDetails;
59 bool m_lteCellDetailsHasBeenSet = false;
60 };
61
62} // namespace Model
63} // namespace LocationService
64} // namespace Aws
const Aws::Vector< LteCellDetails > & GetLteCellDetails() const
Definition CellSignals.h:47
AWS_LOCATIONSERVICE_API CellSignals & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_LOCATIONSERVICE_API CellSignals()=default
AWS_LOCATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_LOCATIONSERVICE_API CellSignals(Aws::Utils::Json::JsonView jsonValue)
CellSignals & WithLteCellDetails(LteCellDetailsT &&value)
Definition CellSignals.h:52
CellSignals & AddLteCellDetails(LteCellDetailsT &&value)
Definition CellSignals.h:54
void SetLteCellDetails(LteCellDetailsT &&value)
Definition CellSignals.h:50
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue