AWS SDK for C++

AWS SDK for C++ Version 1.11.685

Loading...
Searching...
No Matches
AntennaUplinkConfig.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/model/Eirp.h>
9#include <aws/groundstation/model/UplinkSpectrumConfig.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace GroundStation {
21namespace Model {
22
30 public:
31 AWS_GROUNDSTATION_API AntennaUplinkConfig() = default;
32 AWS_GROUNDSTATION_API AntennaUplinkConfig(Aws::Utils::Json::JsonView jsonValue);
33 AWS_GROUNDSTATION_API AntennaUplinkConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
34 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline bool GetTransmitDisabled() const { return m_transmitDisabled; }
41 inline bool TransmitDisabledHasBeenSet() const { return m_transmitDisabledHasBeenSet; }
42 inline void SetTransmitDisabled(bool value) {
43 m_transmitDisabledHasBeenSet = true;
44 m_transmitDisabled = value;
45 }
48 return *this;
49 }
51
53
56 inline const UplinkSpectrumConfig& GetSpectrumConfig() const { return m_spectrumConfig; }
57 inline bool SpectrumConfigHasBeenSet() const { return m_spectrumConfigHasBeenSet; }
58 template <typename SpectrumConfigT = UplinkSpectrumConfig>
59 void SetSpectrumConfig(SpectrumConfigT&& value) {
60 m_spectrumConfigHasBeenSet = true;
61 m_spectrumConfig = std::forward<SpectrumConfigT>(value);
62 }
63 template <typename SpectrumConfigT = UplinkSpectrumConfig>
64 AntennaUplinkConfig& WithSpectrumConfig(SpectrumConfigT&& value) {
65 SetSpectrumConfig(std::forward<SpectrumConfigT>(value));
66 return *this;
67 }
69
71
74 inline const Eirp& GetTargetEirp() const { return m_targetEirp; }
75 inline bool TargetEirpHasBeenSet() const { return m_targetEirpHasBeenSet; }
76 template <typename TargetEirpT = Eirp>
77 void SetTargetEirp(TargetEirpT&& value) {
78 m_targetEirpHasBeenSet = true;
79 m_targetEirp = std::forward<TargetEirpT>(value);
80 }
81 template <typename TargetEirpT = Eirp>
82 AntennaUplinkConfig& WithTargetEirp(TargetEirpT&& value) {
83 SetTargetEirp(std::forward<TargetEirpT>(value));
84 return *this;
85 }
87 private:
88 bool m_transmitDisabled{false};
89 bool m_transmitDisabledHasBeenSet = false;
90
91 UplinkSpectrumConfig m_spectrumConfig;
92 bool m_spectrumConfigHasBeenSet = false;
93
94 Eirp m_targetEirp;
95 bool m_targetEirpHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace GroundStation
100} // namespace Aws
Aws::Utils::Json::JsonValue JsonValue