117 lines
3.6 KiB
C
117 lines
3.6 KiB
C
|
|
/**
|
|||
|
|
* 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/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace GroundStation
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Information about an uplink echo <code>Config</code>.</p> <p>Parameters from
|
|||
|
|
* the <code>AntennaUplinkConfig</code>, corresponding to the specified
|
|||
|
|
* <code>AntennaUplinkConfigArn</code>, are used when this
|
|||
|
|
* <code>UplinkEchoConfig</code> is used in a contact.</p><p><h3>See Also:</h3>
|
|||
|
|
* <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UplinkEchoConfig">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_GROUNDSTATION_API UplinkEchoConfig
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
UplinkEchoConfig();
|
|||
|
|
UplinkEchoConfig(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
UplinkEchoConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of an uplink <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetAntennaUplinkConfigArn() const{ return m_antennaUplinkConfigArn; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of an uplink <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool AntennaUplinkConfigArnHasBeenSet() const { return m_antennaUplinkConfigArnHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of an uplink <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAntennaUplinkConfigArn(const Aws::String& value) { m_antennaUplinkConfigArnHasBeenSet = true; m_antennaUplinkConfigArn = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of an uplink <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAntennaUplinkConfigArn(Aws::String&& value) { m_antennaUplinkConfigArnHasBeenSet = true; m_antennaUplinkConfigArn = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of an uplink <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAntennaUplinkConfigArn(const char* value) { m_antennaUplinkConfigArnHasBeenSet = true; m_antennaUplinkConfigArn.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of an uplink <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline UplinkEchoConfig& WithAntennaUplinkConfigArn(const Aws::String& value) { SetAntennaUplinkConfigArn(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of an uplink <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline UplinkEchoConfig& WithAntennaUplinkConfigArn(Aws::String&& value) { SetAntennaUplinkConfigArn(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ARN of an uplink <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline UplinkEchoConfig& WithAntennaUplinkConfigArn(const char* value) { SetAntennaUplinkConfigArn(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Whether or not an uplink <code>Config</code> is enabled.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool GetEnabled() const{ return m_enabled; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Whether or not an uplink <code>Config</code> is enabled.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Whether or not an uplink <code>Config</code> is enabled.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Whether or not an uplink <code>Config</code> is enabled.</p>
|
|||
|
|
*/
|
|||
|
|
inline UplinkEchoConfig& WithEnabled(bool value) { SetEnabled(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_antennaUplinkConfigArn;
|
|||
|
|
bool m_antennaUplinkConfigArnHasBeenSet;
|
|||
|
|
|
|||
|
|
bool m_enabled;
|
|||
|
|
bool m_enabledHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace GroundStation
|
|||
|
|
} // namespace Aws
|