/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configures the wireless connection on an Snowcone device.See
* Also:
AWS
* API Reference
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