AWS SDK for C++

AWS SDK for C++ Version 1.11.716

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