/** * 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 an uplink echo Config.

Parameters from * the AntennaUplinkConfig, corresponding to the specified * AntennaUplinkConfigArn, are used when this * UplinkEchoConfig is used in a contact.

See Also:

* AWS * API Reference

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

ARN of an uplink Config.

*/ inline const Aws::String& GetAntennaUplinkConfigArn() const{ return m_antennaUplinkConfigArn; } /** *

ARN of an uplink Config.

*/ inline bool AntennaUplinkConfigArnHasBeenSet() const { return m_antennaUplinkConfigArnHasBeenSet; } /** *

ARN of an uplink Config.

*/ inline void SetAntennaUplinkConfigArn(const Aws::String& value) { m_antennaUplinkConfigArnHasBeenSet = true; m_antennaUplinkConfigArn = value; } /** *

ARN of an uplink Config.

*/ inline void SetAntennaUplinkConfigArn(Aws::String&& value) { m_antennaUplinkConfigArnHasBeenSet = true; m_antennaUplinkConfigArn = std::move(value); } /** *

ARN of an uplink Config.

*/ inline void SetAntennaUplinkConfigArn(const char* value) { m_antennaUplinkConfigArnHasBeenSet = true; m_antennaUplinkConfigArn.assign(value); } /** *

ARN of an uplink Config.

*/ inline UplinkEchoConfig& WithAntennaUplinkConfigArn(const Aws::String& value) { SetAntennaUplinkConfigArn(value); return *this;} /** *

ARN of an uplink Config.

*/ inline UplinkEchoConfig& WithAntennaUplinkConfigArn(Aws::String&& value) { SetAntennaUplinkConfigArn(std::move(value)); return *this;} /** *

ARN of an uplink Config.

*/ inline UplinkEchoConfig& WithAntennaUplinkConfigArn(const char* value) { SetAntennaUplinkConfigArn(value); return *this;} /** *

Whether or not an uplink Config is enabled.

*/ inline bool GetEnabled() const{ return m_enabled; } /** *

Whether or not an uplink Config is enabled.

*/ inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; } /** *

Whether or not an uplink Config is enabled.

*/ inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; } /** *

Whether or not an uplink Config is enabled.

*/ inline UplinkEchoConfig& WithEnabled(bool value) { SetEnabled(value); return *this;} private: Aws::String m_antennaUplinkConfigArn; bool m_antennaUplinkConfigArnHasBeenSet = false; bool m_enabled; bool m_enabledHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws