/**
* 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;} private: DeviceType m_device; }; } // namespace Model } // namespace CognitoIdentityProvider } // namespace Aws