/** * 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 { /** *

Sidewalk object for creating a wireless device.

See Also:

AWS * API Reference

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

The ID of the Sidewalk device profile.

*/ inline const Aws::String& GetDeviceProfileId() const{ return m_deviceProfileId; } /** *

The ID of the Sidewalk device profile.

*/ inline bool DeviceProfileIdHasBeenSet() const { return m_deviceProfileIdHasBeenSet; } /** *

The ID of the Sidewalk device profile.

*/ inline void SetDeviceProfileId(const Aws::String& value) { m_deviceProfileIdHasBeenSet = true; m_deviceProfileId = value; } /** *

The ID of the Sidewalk device profile.

*/ inline void SetDeviceProfileId(Aws::String&& value) { m_deviceProfileIdHasBeenSet = true; m_deviceProfileId = std::move(value); } /** *

The ID of the Sidewalk device profile.

*/ inline void SetDeviceProfileId(const char* value) { m_deviceProfileIdHasBeenSet = true; m_deviceProfileId.assign(value); } /** *

The ID of the Sidewalk device profile.

*/ inline SidewalkCreateWirelessDevice& WithDeviceProfileId(const Aws::String& value) { SetDeviceProfileId(value); return *this;} /** *

The ID of the Sidewalk device profile.

*/ inline SidewalkCreateWirelessDevice& WithDeviceProfileId(Aws::String&& value) { SetDeviceProfileId(std::move(value)); return *this;} /** *

The ID of the Sidewalk device profile.

*/ inline SidewalkCreateWirelessDevice& WithDeviceProfileId(const char* value) { SetDeviceProfileId(value); return *this;} private: Aws::String m_deviceProfileId; bool m_deviceProfileIdHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws