AWS SDK for C++

AWS SDK for C++ Version 1.11.684

Loading...
Searching...
No Matches
AntennaDownlinkDemodDecodeConfig.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/model/DecodeConfig.h>
9#include <aws/groundstation/model/DemodulationConfig.h>
10#include <aws/groundstation/model/SpectrumConfig.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace GroundStation {
22namespace Model {
23
31 public:
32 AWS_GROUNDSTATION_API AntennaDownlinkDemodDecodeConfig() = default;
35 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const SpectrumConfig& GetSpectrumConfig() const { return m_spectrumConfig; }
42 inline bool SpectrumConfigHasBeenSet() const { return m_spectrumConfigHasBeenSet; }
43 template <typename SpectrumConfigT = SpectrumConfig>
44 void SetSpectrumConfig(SpectrumConfigT&& value) {
45 m_spectrumConfigHasBeenSet = true;
46 m_spectrumConfig = std::forward<SpectrumConfigT>(value);
47 }
48 template <typename SpectrumConfigT = SpectrumConfig>
50 SetSpectrumConfig(std::forward<SpectrumConfigT>(value));
51 return *this;
52 }
54
56
59 inline const DemodulationConfig& GetDemodulationConfig() const { return m_demodulationConfig; }
60 inline bool DemodulationConfigHasBeenSet() const { return m_demodulationConfigHasBeenSet; }
61 template <typename DemodulationConfigT = DemodulationConfig>
62 void SetDemodulationConfig(DemodulationConfigT&& value) {
63 m_demodulationConfigHasBeenSet = true;
64 m_demodulationConfig = std::forward<DemodulationConfigT>(value);
65 }
66 template <typename DemodulationConfigT = DemodulationConfig>
68 SetDemodulationConfig(std::forward<DemodulationConfigT>(value));
69 return *this;
70 }
72
74
77 inline const DecodeConfig& GetDecodeConfig() const { return m_decodeConfig; }
78 inline bool DecodeConfigHasBeenSet() const { return m_decodeConfigHasBeenSet; }
79 template <typename DecodeConfigT = DecodeConfig>
80 void SetDecodeConfig(DecodeConfigT&& value) {
81 m_decodeConfigHasBeenSet = true;
82 m_decodeConfig = std::forward<DecodeConfigT>(value);
83 }
84 template <typename DecodeConfigT = DecodeConfig>
86 SetDecodeConfig(std::forward<DecodeConfigT>(value));
87 return *this;
88 }
90 private:
91 SpectrumConfig m_spectrumConfig;
92 bool m_spectrumConfigHasBeenSet = false;
93
94 DemodulationConfig m_demodulationConfig;
95 bool m_demodulationConfigHasBeenSet = false;
96
97 DecodeConfig m_decodeConfig;
98 bool m_decodeConfigHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace GroundStation
103} // namespace Aws
Aws::Utils::Json::JsonValue JsonValue