/** * 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 the request to update the user * pool client.

See Also:

AWS * API Reference

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

The user pool client value from the response from the server when an update * user pool client request is made.

*/ inline const UserPoolClientType& GetUserPoolClient() const{ return m_userPoolClient; } /** *

The user pool client value from the response from the server when an update * user pool client request is made.

*/ inline void SetUserPoolClient(const UserPoolClientType& value) { m_userPoolClient = value; } /** *

The user pool client value from the response from the server when an update * user pool client request is made.

*/ inline void SetUserPoolClient(UserPoolClientType&& value) { m_userPoolClient = std::move(value); } /** *

The user pool client value from the response from the server when an update * user pool client request is made.

*/ inline UpdateUserPoolClientResult& WithUserPoolClient(const UserPoolClientType& value) { SetUserPoolClient(value); return *this;} /** *

The user pool client value from the response from the server when an update * user pool client request is made.

*/ inline UpdateUserPoolClientResult& WithUserPoolClient(UserPoolClientType&& value) { SetUserPoolClient(std::move(value)); return *this;} private: UserPoolClientType m_userPoolClient; }; } // namespace Model } // namespace CognitoIdentityProvider } // namespace Aws