This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-cognito-idp/include/aws/cognito-idp/model/CreateUserPoolClientResult.h

74 lines
2.1 KiB
C
Raw Normal View History

/**
* 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 create a user pool
* client.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/CreateUserPoolClientResponse">AWS
* API Reference</a></p>
*/
class AWS_COGNITOIDENTITYPROVIDER_API CreateUserPoolClientResult
{
public:
CreateUserPoolClientResult();
CreateUserPoolClientResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateUserPoolClientResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The user pool client that was just created.</p>
*/
inline const UserPoolClientType& GetUserPoolClient() const{ return m_userPoolClient; }
/**
* <p>The user pool client that was just created.</p>
*/
inline void SetUserPoolClient(const UserPoolClientType& value) { m_userPoolClient = value; }
/**
* <p>The user pool client that was just created.</p>
*/
inline void SetUserPoolClient(UserPoolClientType&& value) { m_userPoolClient = std::move(value); }
/**
* <p>The user pool client that was just created.</p>
*/
inline CreateUserPoolClientResult& WithUserPoolClient(const UserPoolClientType& value) { SetUserPoolClient(value); return *this;}
/**
* <p>The user pool client that was just created.</p>
*/
inline CreateUserPoolClientResult& WithUserPoolClient(UserPoolClientType&& value) { SetUserPoolClient(std::move(value)); return *this;}
private:
UserPoolClientType m_userPoolClient;
};
} // namespace Model
} // namespace CognitoIdentityProvider
} // namespace Aws