80 lines
2.4 KiB
C
80 lines
2.4 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/snowball/Snowball_EXPORTS.h>
|
|||
|
|
#include <aws/snowball/model/WirelessConnection.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace Snowball
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Specifies the device configuration for an AWS Snowcone job. </p><p><h3>See
|
|||
|
|
* Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/SnowconeDeviceConfiguration">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_SNOWBALL_API SnowconeDeviceConfiguration
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
SnowconeDeviceConfiguration();
|
|||
|
|
SnowconeDeviceConfiguration(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
SnowconeDeviceConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Configures the wireless connection for the AWS Snowcone device.</p>
|
|||
|
|
*/
|
|||
|
|
inline const WirelessConnection& GetWirelessConnection() const{ return m_wirelessConnection; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Configures the wireless connection for the AWS Snowcone device.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool WirelessConnectionHasBeenSet() const { return m_wirelessConnectionHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Configures the wireless connection for the AWS Snowcone device.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetWirelessConnection(const WirelessConnection& value) { m_wirelessConnectionHasBeenSet = true; m_wirelessConnection = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Configures the wireless connection for the AWS Snowcone device.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetWirelessConnection(WirelessConnection&& value) { m_wirelessConnectionHasBeenSet = true; m_wirelessConnection = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Configures the wireless connection for the AWS Snowcone device.</p>
|
|||
|
|
*/
|
|||
|
|
inline SnowconeDeviceConfiguration& WithWirelessConnection(const WirelessConnection& value) { SetWirelessConnection(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Configures the wireless connection for the AWS Snowcone device.</p>
|
|||
|
|
*/
|
|||
|
|
inline SnowconeDeviceConfiguration& WithWirelessConnection(WirelessConnection&& value) { SetWirelessConnection(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
WirelessConnection m_wirelessConnection;
|
|||
|
|
bool m_wirelessConnectionHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Snowball
|
|||
|
|
} // namespace Aws
|