/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Gets the device response, as an administrator.See Also:
AWS
* API Reference
The device.
*/ inline const DeviceType& GetDevice() const{ return m_device; } /** *The device.
*/ inline void SetDevice(const DeviceType& value) { m_device = value; } /** *The device.
*/ inline void SetDevice(DeviceType&& value) { m_device = std::move(value); } /** *The device.
*/ inline AdminGetDeviceResult& WithDevice(const DeviceType& value) { SetDevice(value); return *this;} /** *The device.
*/ inline AdminGetDeviceResult& WithDevice(DeviceType&& value) { SetDevice(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline AdminGetDeviceResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline AdminGetDeviceResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline AdminGetDeviceResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DeviceType m_device; Aws::String m_requestId; }; } // namespace Model } // namespace CognitoIdentityProvider } // namespace Aws