AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
UplinkSpectrumConfig.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/model/Frequency.h>
9#include <aws/groundstation/model/Polarization.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 GroundStation
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_GROUNDSTATION_API UplinkSpectrumConfig() = default;
37 AWS_GROUNDSTATION_API UplinkSpectrumConfig(Aws::Utils::Json::JsonView jsonValue);
39 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Frequency& GetCenterFrequency() const { return m_centerFrequency; }
48 inline bool CenterFrequencyHasBeenSet() const { return m_centerFrequencyHasBeenSet; }
49 template<typename CenterFrequencyT = Frequency>
50 void SetCenterFrequency(CenterFrequencyT&& value) { m_centerFrequencyHasBeenSet = true; m_centerFrequency = std::forward<CenterFrequencyT>(value); }
51 template<typename CenterFrequencyT = Frequency>
52 UplinkSpectrumConfig& WithCenterFrequency(CenterFrequencyT&& value) { SetCenterFrequency(std::forward<CenterFrequencyT>(value)); return *this;}
54
56
61 inline Polarization GetPolarization() const { return m_polarization; }
62 inline bool PolarizationHasBeenSet() const { return m_polarizationHasBeenSet; }
63 inline void SetPolarization(Polarization value) { m_polarizationHasBeenSet = true; m_polarization = value; }
64 inline UplinkSpectrumConfig& WithPolarization(Polarization value) { SetPolarization(value); return *this;}
66 private:
67
68 Frequency m_centerFrequency;
69 bool m_centerFrequencyHasBeenSet = false;
70
71 Polarization m_polarization{Polarization::NOT_SET};
72 bool m_polarizationHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace GroundStation
77} // namespace Aws
Aws::Utils::Json::JsonValue JsonValue