/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the response from the server that lists user pool
* clients.See Also:
AWS
* API Reference
The user pool clients in the response that lists user pool clients.
*/ inline const Aws::VectorThe user pool clients in the response that lists user pool clients.
*/ inline void SetUserPoolClients(const Aws::VectorThe user pool clients in the response that lists user pool clients.
*/ inline void SetUserPoolClients(Aws::VectorThe user pool clients in the response that lists user pool clients.
*/ inline ListUserPoolClientsResult& WithUserPoolClients(const Aws::VectorThe user pool clients in the response that lists user pool clients.
*/ inline ListUserPoolClientsResult& WithUserPoolClients(Aws::VectorThe user pool clients in the response that lists user pool clients.
*/ inline ListUserPoolClientsResult& AddUserPoolClients(const UserPoolClientDescription& value) { m_userPoolClients.push_back(value); return *this; } /** *The user pool clients in the response that lists user pool clients.
*/ inline ListUserPoolClientsResult& AddUserPoolClients(UserPoolClientDescription&& value) { m_userPoolClients.push_back(std::move(value)); return *this; } /** *An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.
*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.
*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.
*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.
*/ inline ListUserPoolClientsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.
*/ inline ListUserPoolClientsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *An identifier that was returned from the previous call to this operation, * which can be used to return the next set of items in the list.
*/ inline ListUserPoolClientsResult& WithNextToken(const char* value) { SetNextToken(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 ListUserPoolClientsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListUserPoolClientsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListUserPoolClientsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector