/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Snowball { namespace Model { /** *

Configures the wireless connection on an Snowcone device.

See * Also:

AWS * API Reference

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

Enables the Wi-Fi adapter on an Snowcone device.

*/ inline bool GetIsWifiEnabled() const{ return m_isWifiEnabled; } /** *

Enables the Wi-Fi adapter on an Snowcone device.

*/ inline bool IsWifiEnabledHasBeenSet() const { return m_isWifiEnabledHasBeenSet; } /** *

Enables the Wi-Fi adapter on an Snowcone device.

*/ inline void SetIsWifiEnabled(bool value) { m_isWifiEnabledHasBeenSet = true; m_isWifiEnabled = value; } /** *

Enables the Wi-Fi adapter on an Snowcone device.

*/ inline WirelessConnection& WithIsWifiEnabled(bool value) { SetIsWifiEnabled(value); return *this;} private: bool m_isWifiEnabled; bool m_isWifiEnabledHasBeenSet = false; }; } // namespace Model } // namespace Snowball } // namespace Aws