/** * 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 IoTWireless { namespace Model { /** *

Information about a wireless device that has been added to an import * task.

See Also:

AWS * API Reference

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

The Sidewalk-related information about a device that has been added to an * import task.

*/ inline const ImportedSidewalkDevice& GetSidewalk() const{ return m_sidewalk; } /** *

The Sidewalk-related information about a device that has been added to an * import task.

*/ inline bool SidewalkHasBeenSet() const { return m_sidewalkHasBeenSet; } /** *

The Sidewalk-related information about a device that has been added to an * import task.

*/ inline void SetSidewalk(const ImportedSidewalkDevice& value) { m_sidewalkHasBeenSet = true; m_sidewalk = value; } /** *

The Sidewalk-related information about a device that has been added to an * import task.

*/ inline void SetSidewalk(ImportedSidewalkDevice&& value) { m_sidewalkHasBeenSet = true; m_sidewalk = std::move(value); } /** *

The Sidewalk-related information about a device that has been added to an * import task.

*/ inline ImportedWirelessDevice& WithSidewalk(const ImportedSidewalkDevice& value) { SetSidewalk(value); return *this;} /** *

The Sidewalk-related information about a device that has been added to an * import task.

*/ inline ImportedWirelessDevice& WithSidewalk(ImportedSidewalkDevice&& value) { SetSidewalk(std::move(value)); return *this;} private: ImportedSidewalkDevice m_sidewalk; bool m_sidewalkHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws