/**
* 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 to create a user pool
* client.See Also:
AWS
* API Reference
The user pool client that was just created.
*/ inline const UserPoolClientType& GetUserPoolClient() const{ return m_userPoolClient; } /** *The user pool client that was just created.
*/ inline void SetUserPoolClient(const UserPoolClientType& value) { m_userPoolClient = value; } /** *The user pool client that was just created.
*/ inline void SetUserPoolClient(UserPoolClientType&& value) { m_userPoolClient = std::move(value); } /** *The user pool client that was just created.
*/ inline CreateUserPoolClientResult& WithUserPoolClient(const UserPoolClientType& value) { SetUserPoolClient(value); return *this;} /** *The user pool client that was just created.
*/ inline CreateUserPoolClientResult& WithUserPoolClient(UserPoolClientType&& value) { SetUserPoolClient(std::move(value)); return *this;} private: UserPoolClientType m_userPoolClient; }; } // namespace Model } // namespace CognitoIdentityProvider } // namespace Aws