/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a wireless device that has been added to an import
* task.See Also:
AWS
* API Reference
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