/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Sidewalk object for creating a wireless device.See Also:
AWS
* API Reference
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