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

133 lines
4.6 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/Frequency.h>
#include <aws/groundstation/model/Polarization.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 spectral <code>Config</code>.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkSpectrumConfig">AWS
* API Reference</a></p>
*/
class AWS_GROUNDSTATION_API UplinkSpectrumConfig
{
public:
UplinkSpectrumConfig();
UplinkSpectrumConfig(Aws::Utils::Json::JsonView jsonValue);
UplinkSpectrumConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Center frequency of an uplink spectral <code>Config</code>. Valid values are
* between 2025 to 2120 MHz.</p>
*/
inline const Frequency& GetCenterFrequency() const{ return m_centerFrequency; }
/**
* <p>Center frequency of an uplink spectral <code>Config</code>. Valid values are
* between 2025 to 2120 MHz.</p>
*/
inline bool CenterFrequencyHasBeenSet() const { return m_centerFrequencyHasBeenSet; }
/**
* <p>Center frequency of an uplink spectral <code>Config</code>. Valid values are
* between 2025 to 2120 MHz.</p>
*/
inline void SetCenterFrequency(const Frequency& value) { m_centerFrequencyHasBeenSet = true; m_centerFrequency = value; }
/**
* <p>Center frequency of an uplink spectral <code>Config</code>. Valid values are
* between 2025 to 2120 MHz.</p>
*/
inline void SetCenterFrequency(Frequency&& value) { m_centerFrequencyHasBeenSet = true; m_centerFrequency = std::move(value); }
/**
* <p>Center frequency of an uplink spectral <code>Config</code>. Valid values are
* between 2025 to 2120 MHz.</p>
*/
inline UplinkSpectrumConfig& WithCenterFrequency(const Frequency& value) { SetCenterFrequency(value); return *this;}
/**
* <p>Center frequency of an uplink spectral <code>Config</code>. Valid values are
* between 2025 to 2120 MHz.</p>
*/
inline UplinkSpectrumConfig& WithCenterFrequency(Frequency&& value) { SetCenterFrequency(std::move(value)); return *this;}
/**
* <p>Polarization of an uplink spectral <code>Config</code>. Capturing both
* <code>"RIGHT_HAND"</code> and <code>"LEFT_HAND"</code> polarization requires two
* separate configs.</p>
*/
inline const Polarization& GetPolarization() const{ return m_polarization; }
/**
* <p>Polarization of an uplink spectral <code>Config</code>. Capturing both
* <code>"RIGHT_HAND"</code> and <code>"LEFT_HAND"</code> polarization requires two
* separate configs.</p>
*/
inline bool PolarizationHasBeenSet() const { return m_polarizationHasBeenSet; }
/**
* <p>Polarization of an uplink spectral <code>Config</code>. Capturing both
* <code>"RIGHT_HAND"</code> and <code>"LEFT_HAND"</code> polarization requires two
* separate configs.</p>
*/
inline void SetPolarization(const Polarization& value) { m_polarizationHasBeenSet = true; m_polarization = value; }
/**
* <p>Polarization of an uplink spectral <code>Config</code>. Capturing both
* <code>"RIGHT_HAND"</code> and <code>"LEFT_HAND"</code> polarization requires two
* separate configs.</p>
*/
inline void SetPolarization(Polarization&& value) { m_polarizationHasBeenSet = true; m_polarization = std::move(value); }
/**
* <p>Polarization of an uplink spectral <code>Config</code>. Capturing both
* <code>"RIGHT_HAND"</code> and <code>"LEFT_HAND"</code> polarization requires two
* separate configs.</p>
*/
inline UplinkSpectrumConfig& WithPolarization(const Polarization& value) { SetPolarization(value); return *this;}
/**
* <p>Polarization of an uplink spectral <code>Config</code>. Capturing both
* <code>"RIGHT_HAND"</code> and <code>"LEFT_HAND"</code> polarization requires two
* separate configs.</p>
*/
inline UplinkSpectrumConfig& WithPolarization(Polarization&& value) { SetPolarization(std::move(value)); return *this;}
private:
Frequency m_centerFrequency;
bool m_centerFrequencyHasBeenSet;
Polarization m_polarization;
bool m_polarizationHasBeenSet;
};
} // namespace Model
} // namespace GroundStation
} // namespace Aws