AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetSpectrumConfig(const UplinkSpectrumConfig& value) { m_spectrumConfigHasBeenSet = true; m_spectrumConfig = value; }
49 inline void SetSpectrumConfig(UplinkSpectrumConfig&& value) { m_spectrumConfigHasBeenSet = true; m_spectrumConfig = std::move(value); }
51 inline AntennaUplinkConfig& WithSpectrumConfig(UplinkSpectrumConfig&& value) { SetSpectrumConfig(std::move(value)); return *this;}
53
55
58 inline const Eirp& GetTargetEirp() const{ return m_targetEirp; }
59 inline bool TargetEirpHasBeenSet() const { return m_targetEirpHasBeenSet; }
60 inline void SetTargetEirp(const Eirp& value) { m_targetEirpHasBeenSet = true; m_targetEirp = value; }
61 inline void SetTargetEirp(Eirp&& value) { m_targetEirpHasBeenSet = true; m_targetEirp = std::move(value); }
62 inline AntennaUplinkConfig& WithTargetEirp(const Eirp& value) { SetTargetEirp(value); return *this;}
63 inline AntennaUplinkConfig& WithTargetEirp(Eirp&& value) { SetTargetEirp(std::move(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;
84 bool m_transmitDisabledHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace GroundStation
89} // namespace Aws
Aws::Utils::Json::JsonValue JsonValue