AWS SDK for C++

AWS SDK for C++ Version 1.11.607

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#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace GroundStation
24{
25namespace Model
26{
27
35 {
36 public:
37 AWS_GROUNDSTATION_API AntennaDownlinkDemodDecodeConfig() = default;
40 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline const DecodeConfig& GetDecodeConfig() const { return m_decodeConfig; }
48 inline bool DecodeConfigHasBeenSet() const { return m_decodeConfigHasBeenSet; }
49 template<typename DecodeConfigT = DecodeConfig>
50 void SetDecodeConfig(DecodeConfigT&& value) { m_decodeConfigHasBeenSet = true; m_decodeConfig = std::forward<DecodeConfigT>(value); }
51 template<typename DecodeConfigT = DecodeConfig>
52 AntennaDownlinkDemodDecodeConfig& WithDecodeConfig(DecodeConfigT&& value) { SetDecodeConfig(std::forward<DecodeConfigT>(value)); return *this;}
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) { m_demodulationConfigHasBeenSet = true; m_demodulationConfig = std::forward<DemodulationConfigT>(value); }
63 template<typename DemodulationConfigT = DemodulationConfig>
64 AntennaDownlinkDemodDecodeConfig& WithDemodulationConfig(DemodulationConfigT&& value) { SetDemodulationConfig(std::forward<DemodulationConfigT>(value)); return *this;}
66
68
71 inline const SpectrumConfig& GetSpectrumConfig() const { return m_spectrumConfig; }
72 inline bool SpectrumConfigHasBeenSet() const { return m_spectrumConfigHasBeenSet; }
73 template<typename SpectrumConfigT = SpectrumConfig>
74 void SetSpectrumConfig(SpectrumConfigT&& value) { m_spectrumConfigHasBeenSet = true; m_spectrumConfig = std::forward<SpectrumConfigT>(value); }
75 template<typename SpectrumConfigT = SpectrumConfig>
76 AntennaDownlinkDemodDecodeConfig& WithSpectrumConfig(SpectrumConfigT&& value) { SetSpectrumConfig(std::forward<SpectrumConfigT>(value)); return *this;}
78 private:
79
80 DecodeConfig m_decodeConfig;
81 bool m_decodeConfigHasBeenSet = false;
82
83 DemodulationConfig m_demodulationConfig;
84 bool m_demodulationConfigHasBeenSet = false;
85
86 SpectrumConfig m_spectrumConfig;
87 bool m_spectrumConfigHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace GroundStation
92} // namespace Aws
Aws::Utils::Json::JsonValue JsonValue