/** * 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 AWS_GROUNDSTATION_API FrequencyBandwidth { public: FrequencyBandwidth(); FrequencyBandwidth(Aws::Utils::Json::JsonView jsonValue); FrequencyBandwidth& operator=(Aws::Utils::Json::JsonView jsonValue); 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; double m_value; bool m_valueHasBeenSet; }; } // namespace Model } // namespace GroundStation } // namespace Aws