/** * 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 { /** *

Information about how AWS Ground Station should configure an antenna for * downlink during a contact.

See Also:

AWS * API Reference

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

Object that describes a spectral Config.

*/ inline const SpectrumConfig& GetSpectrumConfig() const{ return m_spectrumConfig; } /** *

Object that describes a spectral Config.

*/ inline bool SpectrumConfigHasBeenSet() const { return m_spectrumConfigHasBeenSet; } /** *

Object that describes a spectral Config.

*/ inline void SetSpectrumConfig(const SpectrumConfig& value) { m_spectrumConfigHasBeenSet = true; m_spectrumConfig = value; } /** *

Object that describes a spectral Config.

*/ inline void SetSpectrumConfig(SpectrumConfig&& value) { m_spectrumConfigHasBeenSet = true; m_spectrumConfig = std::move(value); } /** *

Object that describes a spectral Config.

*/ inline AntennaDownlinkConfig& WithSpectrumConfig(const SpectrumConfig& value) { SetSpectrumConfig(value); return *this;} /** *

Object that describes a spectral Config.

*/ inline AntennaDownlinkConfig& WithSpectrumConfig(SpectrumConfig&& value) { SetSpectrumConfig(std::move(value)); return *this;} private: SpectrumConfig m_spectrumConfig; bool m_spectrumConfigHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws