/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace CognitoIdentityProvider { namespace Model { /** *

Represents the response from the server to create a user pool * client.

See Also:

AWS * API Reference

*/ class AWS_COGNITOIDENTITYPROVIDER_API CreateUserPoolClientResult { public: CreateUserPoolClientResult(); CreateUserPoolClientResult(const Aws::AmazonWebServiceResult& result); CreateUserPoolClientResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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