AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetCenterFrequency(const Frequency& value) { m_centerFrequencyHasBeenSet = true; m_centerFrequency = value; }
50 inline void SetCenterFrequency(Frequency&& value) { m_centerFrequencyHasBeenSet = true; m_centerFrequency = std::move(value); }
51 inline UplinkSpectrumConfig& WithCenterFrequency(const Frequency& value) { SetCenterFrequency(value); return *this;}
52 inline UplinkSpectrumConfig& WithCenterFrequency(Frequency&& value) { SetCenterFrequency(std::move(value)); return *this;}
54
56
61 inline const Polarization& GetPolarization() const{ return m_polarization; }
62 inline bool PolarizationHasBeenSet() const { return m_polarizationHasBeenSet; }
63 inline void SetPolarization(const Polarization& value) { m_polarizationHasBeenSet = true; m_polarization = value; }
64 inline void SetPolarization(Polarization&& value) { m_polarizationHasBeenSet = true; m_polarization = std::move(value); }
65 inline UplinkSpectrumConfig& WithPolarization(const Polarization& value) { SetPolarization(value); return *this;}
66 inline UplinkSpectrumConfig& WithPolarization(Polarization&& value) { SetPolarization(std::move(value)); return *this;}
68 private:
69
70 Frequency m_centerFrequency;
71 bool m_centerFrequencyHasBeenSet = false;
72
73 Polarization m_polarization;
74 bool m_polarizationHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace GroundStation
79} // namespace Aws
Aws::Utils::Json::JsonValue JsonValue