79 lines
2.5 KiB
C++
79 lines
2.5 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/cognito-idp/CognitoIdentityProvider_EXPORTS.h>
|
|
#include <aws/cognito-idp/model/UserPoolClientType.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace CognitoIdentityProvider
|
|
{
|
|
namespace Model
|
|
{
|
|
/**
|
|
* <p>Represents the response from the server to the request to update the user
|
|
* pool client.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/UpdateUserPoolClientResponse">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_COGNITOIDENTITYPROVIDER_API UpdateUserPoolClientResult
|
|
{
|
|
public:
|
|
UpdateUserPoolClientResult();
|
|
UpdateUserPoolClientResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
UpdateUserPoolClientResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The user pool client value from the response from the server when an update
|
|
* user pool client request is made.</p>
|
|
*/
|
|
inline const UserPoolClientType& GetUserPoolClient() const{ return m_userPoolClient; }
|
|
|
|
/**
|
|
* <p>The user pool client value from the response from the server when an update
|
|
* user pool client request is made.</p>
|
|
*/
|
|
inline void SetUserPoolClient(const UserPoolClientType& value) { m_userPoolClient = value; }
|
|
|
|
/**
|
|
* <p>The user pool client value from the response from the server when an update
|
|
* user pool client request is made.</p>
|
|
*/
|
|
inline void SetUserPoolClient(UserPoolClientType&& value) { m_userPoolClient = std::move(value); }
|
|
|
|
/**
|
|
* <p>The user pool client value from the response from the server when an update
|
|
* user pool client request is made.</p>
|
|
*/
|
|
inline UpdateUserPoolClientResult& WithUserPoolClient(const UserPoolClientType& value) { SetUserPoolClient(value); return *this;}
|
|
|
|
/**
|
|
* <p>The user pool client value from the response from the server when an update
|
|
* user pool client request is made.</p>
|
|
*/
|
|
inline UpdateUserPoolClientResult& WithUserPoolClient(UserPoolClientType&& value) { SetUserPoolClient(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
UserPoolClientType m_userPoolClient;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CognitoIdentityProvider
|
|
} // namespace Aws
|