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/AntennaUplinkConfig.h

139 lines
4.0 KiB
C
Raw Normal View History

/**
* 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/UplinkSpectrumConfig.h>
#include <aws/groundstation/model/Eirp.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace GroundStation
{
namespace Model
{
/**
* <p>Information about the uplink <code>Config</code> of an antenna.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/AntennaUplinkConfig">AWS
* API Reference</a></p>
*/
class AWS_GROUNDSTATION_API AntennaUplinkConfig
{
public:
AntennaUplinkConfig();
AntennaUplinkConfig(Aws::Utils::Json::JsonView jsonValue);
AntennaUplinkConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Information about the uplink spectral <code>Config</code>.</p>
*/
inline const UplinkSpectrumConfig& GetSpectrumConfig() const{ return m_spectrumConfig; }
/**
* <p>Information about the uplink spectral <code>Config</code>.</p>
*/
inline bool SpectrumConfigHasBeenSet() const { return m_spectrumConfigHasBeenSet; }
/**
* <p>Information about the uplink spectral <code>Config</code>.</p>
*/
inline void SetSpectrumConfig(const UplinkSpectrumConfig& value) { m_spectrumConfigHasBeenSet = true; m_spectrumConfig = value; }
/**
* <p>Information about the uplink spectral <code>Config</code>.</p>
*/
inline void SetSpectrumConfig(UplinkSpectrumConfig&& value) { m_spectrumConfigHasBeenSet = true; m_spectrumConfig = std::move(value); }
/**
* <p>Information about the uplink spectral <code>Config</code>.</p>
*/
inline AntennaUplinkConfig& WithSpectrumConfig(const UplinkSpectrumConfig& value) { SetSpectrumConfig(value); return *this;}
/**
* <p>Information about the uplink spectral <code>Config</code>.</p>
*/
inline AntennaUplinkConfig& WithSpectrumConfig(UplinkSpectrumConfig&& value) { SetSpectrumConfig(std::move(value)); return *this;}
/**
* <p>EIRP of the target.</p>
*/
inline const Eirp& GetTargetEirp() const{ return m_targetEirp; }
/**
* <p>EIRP of the target.</p>
*/
inline bool TargetEirpHasBeenSet() const { return m_targetEirpHasBeenSet; }
/**
* <p>EIRP of the target.</p>
*/
inline void SetTargetEirp(const Eirp& value) { m_targetEirpHasBeenSet = true; m_targetEirp = value; }
/**
* <p>EIRP of the target.</p>
*/
inline void SetTargetEirp(Eirp&& value) { m_targetEirpHasBeenSet = true; m_targetEirp = std::move(value); }
/**
* <p>EIRP of the target.</p>
*/
inline AntennaUplinkConfig& WithTargetEirp(const Eirp& value) { SetTargetEirp(value); return *this;}
/**
* <p>EIRP of the target.</p>
*/
inline AntennaUplinkConfig& WithTargetEirp(Eirp&& value) { SetTargetEirp(std::move(value)); return *this;}
/**
* <p>Whether or not uplink transmit is disabled.</p>
*/
inline bool GetTransmitDisabled() const{ return m_transmitDisabled; }
/**
* <p>Whether or not uplink transmit is disabled.</p>
*/
inline bool TransmitDisabledHasBeenSet() const { return m_transmitDisabledHasBeenSet; }
/**
* <p>Whether or not uplink transmit is disabled.</p>
*/
inline void SetTransmitDisabled(bool value) { m_transmitDisabledHasBeenSet = true; m_transmitDisabled = value; }
/**
* <p>Whether or not uplink transmit is disabled.</p>
*/
inline AntennaUplinkConfig& WithTransmitDisabled(bool value) { SetTransmitDisabled(value); return *this;}
private:
UplinkSpectrumConfig m_spectrumConfig;
bool m_spectrumConfigHasBeenSet;
Eirp m_targetEirp;
bool m_targetEirpHasBeenSet;
bool m_transmitDisabled;
bool m_transmitDisabledHasBeenSet;
};
} // namespace Model
} // namespace GroundStation
} // namespace Aws