/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the request to get the device.See Also:
AWS
* API Reference
The device key.
*/ inline const Aws::String& GetDeviceKey() const{ return m_deviceKey; } /** *The device key.
*/ inline bool DeviceKeyHasBeenSet() const { return m_deviceKeyHasBeenSet; } /** *The device key.
*/ inline void SetDeviceKey(const Aws::String& value) { m_deviceKeyHasBeenSet = true; m_deviceKey = value; } /** *The device key.
*/ inline void SetDeviceKey(Aws::String&& value) { m_deviceKeyHasBeenSet = true; m_deviceKey = std::move(value); } /** *The device key.
*/ inline void SetDeviceKey(const char* value) { m_deviceKeyHasBeenSet = true; m_deviceKey.assign(value); } /** *The device key.
*/ inline GetDeviceRequest& WithDeviceKey(const Aws::String& value) { SetDeviceKey(value); return *this;} /** *The device key.
*/ inline GetDeviceRequest& WithDeviceKey(Aws::String&& value) { SetDeviceKey(std::move(value)); return *this;} /** *The device key.
*/ inline GetDeviceRequest& WithDeviceKey(const char* value) { SetDeviceKey(value); return *this;} /** *A valid access token that Amazon Cognito issued to the user whose device * information you want to request.
*/ inline const Aws::String& GetAccessToken() const{ return m_accessToken; } /** *A valid access token that Amazon Cognito issued to the user whose device * information you want to request.
*/ inline bool AccessTokenHasBeenSet() const { return m_accessTokenHasBeenSet; } /** *A valid access token that Amazon Cognito issued to the user whose device * information you want to request.
*/ inline void SetAccessToken(const Aws::String& value) { m_accessTokenHasBeenSet = true; m_accessToken = value; } /** *A valid access token that Amazon Cognito issued to the user whose device * information you want to request.
*/ inline void SetAccessToken(Aws::String&& value) { m_accessTokenHasBeenSet = true; m_accessToken = std::move(value); } /** *A valid access token that Amazon Cognito issued to the user whose device * information you want to request.
*/ inline void SetAccessToken(const char* value) { m_accessTokenHasBeenSet = true; m_accessToken.assign(value); } /** *A valid access token that Amazon Cognito issued to the user whose device * information you want to request.
*/ inline GetDeviceRequest& WithAccessToken(const Aws::String& value) { SetAccessToken(value); return *this;} /** *A valid access token that Amazon Cognito issued to the user whose device * information you want to request.
*/ inline GetDeviceRequest& WithAccessToken(Aws::String&& value) { SetAccessToken(std::move(value)); return *this;} /** *A valid access token that Amazon Cognito issued to the user whose device * information you want to request.
*/ inline GetDeviceRequest& WithAccessToken(const char* value) { SetAccessToken(value); return *this;} private: Aws::String m_deviceKey; bool m_deviceKeyHasBeenSet = false; Aws::String m_accessToken; bool m_accessTokenHasBeenSet = false; }; } // namespace Model } // namespace CognitoIdentityProvider } // namespace Aws