/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace GroundStation { namespace Model { /** *

Object that describes the frequency bandwidth.

See Also:

AWS * API Reference

*/ class FrequencyBandwidth { public: AWS_GROUNDSTATION_API FrequencyBandwidth(); AWS_GROUNDSTATION_API FrequencyBandwidth(Aws::Utils::Json::JsonView jsonValue); AWS_GROUNDSTATION_API FrequencyBandwidth& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Frequency bandwidth units.

*/ inline const BandwidthUnits& GetUnits() const{ return m_units; } /** *

Frequency bandwidth units.

*/ inline bool UnitsHasBeenSet() const { return m_unitsHasBeenSet; } /** *

Frequency bandwidth units.

*/ inline void SetUnits(const BandwidthUnits& value) { m_unitsHasBeenSet = true; m_units = value; } /** *

Frequency bandwidth units.

*/ inline void SetUnits(BandwidthUnits&& value) { m_unitsHasBeenSet = true; m_units = std::move(value); } /** *

Frequency bandwidth units.

*/ inline FrequencyBandwidth& WithUnits(const BandwidthUnits& value) { SetUnits(value); return *this;} /** *

Frequency bandwidth units.

*/ inline FrequencyBandwidth& WithUnits(BandwidthUnits&& value) { SetUnits(std::move(value)); return *this;} /** *

Frequency bandwidth value. AWS Ground Station currently has the following * bandwidth limitations:

  • For * AntennaDownlinkDemodDecodeconfig, valid values are between 125 kHz * to 650 MHz.

  • For AntennaDownlinkconfig, valid * values are between 10 kHz to 54 MHz.

  • For * AntennaUplinkConfig, valid values are between 10 kHz to 54 MHz.

    *
*/ inline double GetValue() const{ return m_value; } /** *

Frequency bandwidth value. AWS Ground Station currently has the following * bandwidth limitations:

  • For * AntennaDownlinkDemodDecodeconfig, valid values are between 125 kHz * to 650 MHz.

  • For AntennaDownlinkconfig, valid * values are between 10 kHz to 54 MHz.

  • For * AntennaUplinkConfig, valid values are between 10 kHz to 54 MHz.

    *
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *

Frequency bandwidth value. AWS Ground Station currently has the following * bandwidth limitations:

  • For * AntennaDownlinkDemodDecodeconfig, valid values are between 125 kHz * to 650 MHz.

  • For AntennaDownlinkconfig, valid * values are between 10 kHz to 54 MHz.

  • For * AntennaUplinkConfig, valid values are between 10 kHz to 54 MHz.

    *
*/ inline void SetValue(double value) { m_valueHasBeenSet = true; m_value = value; } /** *

Frequency bandwidth value. AWS Ground Station currently has the following * bandwidth limitations:

  • For * AntennaDownlinkDemodDecodeconfig, valid values are between 125 kHz * to 650 MHz.

  • For AntennaDownlinkconfig, valid * values are between 10 kHz to 54 MHz.

  • For * AntennaUplinkConfig, valid values are between 10 kHz to 54 MHz.

    *
*/ inline FrequencyBandwidth& WithValue(double value) { SetValue(value); return *this;} private: BandwidthUnits m_units; bool m_unitsHasBeenSet = false; double m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws