This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-groundstation/include/aws/groundstation/model/AntennaDownlinkDemodDecodeConfig.h

150 lines
5.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/groundstation/GroundStation_EXPORTS.h>
#include <aws/groundstation/model/DecodeConfig.h>
#include <aws/groundstation/model/DemodulationConfig.h>
#include <aws/groundstation/model/SpectrumConfig.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace GroundStation
{
namespace Model
{
/**
* <p>Information about how AWS Ground Station should configure an antenna for
* downlink demod decode during a contact.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AntennaDownlinkDemodDecodeConfig">AWS
* API Reference</a></p>
*/
class AWS_GROUNDSTATION_API AntennaDownlinkDemodDecodeConfig
{
public:
AntennaDownlinkDemodDecodeConfig();
AntennaDownlinkDemodDecodeConfig(Aws::Utils::Json::JsonView jsonValue);
AntennaDownlinkDemodDecodeConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Information about the decode <code>Config</code>.</p>
*/
inline const DecodeConfig& GetDecodeConfig() const{ return m_decodeConfig; }
/**
* <p>Information about the decode <code>Config</code>.</p>
*/
inline bool DecodeConfigHasBeenSet() const { return m_decodeConfigHasBeenSet; }
/**
* <p>Information about the decode <code>Config</code>.</p>
*/
inline void SetDecodeConfig(const DecodeConfig& value) { m_decodeConfigHasBeenSet = true; m_decodeConfig = value; }
/**
* <p>Information about the decode <code>Config</code>.</p>
*/
inline void SetDecodeConfig(DecodeConfig&& value) { m_decodeConfigHasBeenSet = true; m_decodeConfig = std::move(value); }
/**
* <p>Information about the decode <code>Config</code>.</p>
*/
inline AntennaDownlinkDemodDecodeConfig& WithDecodeConfig(const DecodeConfig& value) { SetDecodeConfig(value); return *this;}
/**
* <p>Information about the decode <code>Config</code>.</p>
*/
inline AntennaDownlinkDemodDecodeConfig& WithDecodeConfig(DecodeConfig&& value) { SetDecodeConfig(std::move(value)); return *this;}
/**
* <p>Information about the demodulation <code>Config</code>.</p>
*/
inline const DemodulationConfig& GetDemodulationConfig() const{ return m_demodulationConfig; }
/**
* <p>Information about the demodulation <code>Config</code>.</p>
*/
inline bool DemodulationConfigHasBeenSet() const { return m_demodulationConfigHasBeenSet; }
/**
* <p>Information about the demodulation <code>Config</code>.</p>
*/
inline void SetDemodulationConfig(const DemodulationConfig& value) { m_demodulationConfigHasBeenSet = true; m_demodulationConfig = value; }
/**
* <p>Information about the demodulation <code>Config</code>.</p>
*/
inline void SetDemodulationConfig(DemodulationConfig&& value) { m_demodulationConfigHasBeenSet = true; m_demodulationConfig = std::move(value); }
/**
* <p>Information about the demodulation <code>Config</code>.</p>
*/
inline AntennaDownlinkDemodDecodeConfig& WithDemodulationConfig(const DemodulationConfig& value) { SetDemodulationConfig(value); return *this;}
/**
* <p>Information about the demodulation <code>Config</code>.</p>
*/
inline AntennaDownlinkDemodDecodeConfig& WithDemodulationConfig(DemodulationConfig&& value) { SetDemodulationConfig(std::move(value)); return *this;}
/**
* <p>Information about the spectral <code>Config</code>.</p>
*/
inline const SpectrumConfig& GetSpectrumConfig() const{ return m_spectrumConfig; }
/**
* <p>Information about the spectral <code>Config</code>.</p>
*/
inline bool SpectrumConfigHasBeenSet() const { return m_spectrumConfigHasBeenSet; }
/**
* <p>Information about the spectral <code>Config</code>.</p>
*/
inline void SetSpectrumConfig(const SpectrumConfig& value) { m_spectrumConfigHasBeenSet = true; m_spectrumConfig = value; }
/**
* <p>Information about the spectral <code>Config</code>.</p>
*/
inline void SetSpectrumConfig(SpectrumConfig&& value) { m_spectrumConfigHasBeenSet = true; m_spectrumConfig = std::move(value); }
/**
* <p>Information about the spectral <code>Config</code>.</p>
*/
inline AntennaDownlinkDemodDecodeConfig& WithSpectrumConfig(const SpectrumConfig& value) { SetSpectrumConfig(value); return *this;}
/**
* <p>Information about the spectral <code>Config</code>.</p>
*/
inline AntennaDownlinkDemodDecodeConfig& WithSpectrumConfig(SpectrumConfig&& value) { SetSpectrumConfig(std::move(value)); return *this;}
private:
DecodeConfig m_decodeConfig;
bool m_decodeConfigHasBeenSet;
DemodulationConfig m_demodulationConfig;
bool m_demodulationConfigHasBeenSet;
SpectrumConfig m_spectrumConfig;
bool m_spectrumConfigHasBeenSet;
};
} // namespace Model
} // namespace GroundStation
} // namespace Aws