/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the request to delete a user.See Also:
AWS
* API Reference
A valid access token that Amazon Cognito issued to the user whose user * profile you want to delete.
*/ inline const Aws::String& GetAccessToken() const{ return m_accessToken; } /** *A valid access token that Amazon Cognito issued to the user whose user * profile you want to delete.
*/ inline bool AccessTokenHasBeenSet() const { return m_accessTokenHasBeenSet; } /** *A valid access token that Amazon Cognito issued to the user whose user * profile you want to delete.
*/ 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 user * profile you want to delete.
*/ 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 user * profile you want to delete.
*/ 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 user * profile you want to delete.
*/ inline DeleteUserRequest& WithAccessToken(const Aws::String& value) { SetAccessToken(value); return *this;} /** *A valid access token that Amazon Cognito issued to the user whose user * profile you want to delete.
*/ inline DeleteUserRequest& WithAccessToken(Aws::String&& value) { SetAccessToken(std::move(value)); return *this;} /** *A valid access token that Amazon Cognito issued to the user whose user * profile you want to delete.
*/ inline DeleteUserRequest& WithAccessToken(const char* value) { SetAccessToken(value); return *this;} private: Aws::String m_accessToken; bool m_accessTokenHasBeenSet = false; }; } // namespace Model } // namespace CognitoIdentityProvider } // namespace Aws