AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetDecodeConfig(const DecodeConfig& value) { m_decodeConfigHasBeenSet = true; m_decodeConfig = value; }
50 inline void SetDecodeConfig(DecodeConfig&& value) { m_decodeConfigHasBeenSet = true; m_decodeConfig = std::move(value); }
52 inline AntennaDownlinkDemodDecodeConfig& WithDecodeConfig(DecodeConfig&& value) { SetDecodeConfig(std::move(value)); return *this;}
54
56
59 inline const DemodulationConfig& GetDemodulationConfig() const{ return m_demodulationConfig; }
60 inline bool DemodulationConfigHasBeenSet() const { return m_demodulationConfigHasBeenSet; }
61 inline void SetDemodulationConfig(const DemodulationConfig& value) { m_demodulationConfigHasBeenSet = true; m_demodulationConfig = value; }
62 inline void SetDemodulationConfig(DemodulationConfig&& value) { m_demodulationConfigHasBeenSet = true; m_demodulationConfig = std::move(value); }
66
68
71 inline const SpectrumConfig& GetSpectrumConfig() const{ return m_spectrumConfig; }
72 inline bool SpectrumConfigHasBeenSet() const { return m_spectrumConfigHasBeenSet; }
73 inline void SetSpectrumConfig(const SpectrumConfig& value) { m_spectrumConfigHasBeenSet = true; m_spectrumConfig = value; }
74 inline void SetSpectrumConfig(SpectrumConfig&& value) { m_spectrumConfigHasBeenSet = true; m_spectrumConfig = std::move(value); }
76 inline AntennaDownlinkDemodDecodeConfig& WithSpectrumConfig(SpectrumConfig&& value) { SetSpectrumConfig(std::move(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