AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
AntennaUplinkConfig.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/model/UplinkSpectrumConfig.h>
9#include <aws/groundstation/model/Eirp.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 AntennaUplinkConfig() = default;
37 AWS_GROUNDSTATION_API AntennaUplinkConfig(Aws::Utils::Json::JsonView jsonValue);
38 AWS_GROUNDSTATION_API AntennaUplinkConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const UplinkSpectrumConfig& GetSpectrumConfig() const { return m_spectrumConfig; }
47 inline bool SpectrumConfigHasBeenSet() const { return m_spectrumConfigHasBeenSet; }
48 template<typename SpectrumConfigT = UplinkSpectrumConfig>
49 void SetSpectrumConfig(SpectrumConfigT&& value) { m_spectrumConfigHasBeenSet = true; m_spectrumConfig = std::forward<SpectrumConfigT>(value); }
50 template<typename SpectrumConfigT = UplinkSpectrumConfig>
51 AntennaUplinkConfig& WithSpectrumConfig(SpectrumConfigT&& value) { SetSpectrumConfig(std::forward<SpectrumConfigT>(value)); return *this;}
53
55
58 inline const Eirp& GetTargetEirp() const { return m_targetEirp; }
59 inline bool TargetEirpHasBeenSet() const { return m_targetEirpHasBeenSet; }
60 template<typename TargetEirpT = Eirp>
61 void SetTargetEirp(TargetEirpT&& value) { m_targetEirpHasBeenSet = true; m_targetEirp = std::forward<TargetEirpT>(value); }
62 template<typename TargetEirpT = Eirp>
63 AntennaUplinkConfig& WithTargetEirp(TargetEirpT&& value) { SetTargetEirp(std::forward<TargetEirpT>(value)); return *this;}
65
67
70 inline bool GetTransmitDisabled() const { return m_transmitDisabled; }
71 inline bool TransmitDisabledHasBeenSet() const { return m_transmitDisabledHasBeenSet; }
72 inline void SetTransmitDisabled(bool value) { m_transmitDisabledHasBeenSet = true; m_transmitDisabled = value; }
73 inline AntennaUplinkConfig& WithTransmitDisabled(bool value) { SetTransmitDisabled(value); return *this;}
75 private:
76
77 UplinkSpectrumConfig m_spectrumConfig;
78 bool m_spectrumConfigHasBeenSet = false;
79
80 Eirp m_targetEirp;
81 bool m_targetEirpHasBeenSet = false;
82
83 bool m_transmitDisabled{false};
84 bool m_transmitDisabledHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace GroundStation
89} // namespace Aws
Aws::Utils::Json::JsonValue JsonValue