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/GetCSVHeaderResult.h

136 lines
4.3 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/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.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 get the header
* information for the .csv file for the user import job.</p><p><h3>See Also:</h3>
* <a
* href="http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/GetCSVHeaderResponse">AWS
* API Reference</a></p>
*/
class AWS_COGNITOIDENTITYPROVIDER_API GetCSVHeaderResult
{
public:
GetCSVHeaderResult();
GetCSVHeaderResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetCSVHeaderResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The user pool ID for the user pool that the users are to be imported
* into.</p>
*/
inline const Aws::String& GetUserPoolId() const{ return m_userPoolId; }
/**
* <p>The user pool ID for the user pool that the users are to be imported
* into.</p>
*/
inline void SetUserPoolId(const Aws::String& value) { m_userPoolId = value; }
/**
* <p>The user pool ID for the user pool that the users are to be imported
* into.</p>
*/
inline void SetUserPoolId(Aws::String&& value) { m_userPoolId = std::move(value); }
/**
* <p>The user pool ID for the user pool that the users are to be imported
* into.</p>
*/
inline void SetUserPoolId(const char* value) { m_userPoolId.assign(value); }
/**
* <p>The user pool ID for the user pool that the users are to be imported
* into.</p>
*/
inline GetCSVHeaderResult& WithUserPoolId(const Aws::String& value) { SetUserPoolId(value); return *this;}
/**
* <p>The user pool ID for the user pool that the users are to be imported
* into.</p>
*/
inline GetCSVHeaderResult& WithUserPoolId(Aws::String&& value) { SetUserPoolId(std::move(value)); return *this;}
/**
* <p>The user pool ID for the user pool that the users are to be imported
* into.</p>
*/
inline GetCSVHeaderResult& WithUserPoolId(const char* value) { SetUserPoolId(value); return *this;}
/**
* <p>The header information for the .csv file for the user import job.</p>
*/
inline const Aws::Vector<Aws::String>& GetCSVHeader() const{ return m_cSVHeader; }
/**
* <p>The header information for the .csv file for the user import job.</p>
*/
inline void SetCSVHeader(const Aws::Vector<Aws::String>& value) { m_cSVHeader = value; }
/**
* <p>The header information for the .csv file for the user import job.</p>
*/
inline void SetCSVHeader(Aws::Vector<Aws::String>&& value) { m_cSVHeader = std::move(value); }
/**
* <p>The header information for the .csv file for the user import job.</p>
*/
inline GetCSVHeaderResult& WithCSVHeader(const Aws::Vector<Aws::String>& value) { SetCSVHeader(value); return *this;}
/**
* <p>The header information for the .csv file for the user import job.</p>
*/
inline GetCSVHeaderResult& WithCSVHeader(Aws::Vector<Aws::String>&& value) { SetCSVHeader(std::move(value)); return *this;}
/**
* <p>The header information for the .csv file for the user import job.</p>
*/
inline GetCSVHeaderResult& AddCSVHeader(const Aws::String& value) { m_cSVHeader.push_back(value); return *this; }
/**
* <p>The header information for the .csv file for the user import job.</p>
*/
inline GetCSVHeaderResult& AddCSVHeader(Aws::String&& value) { m_cSVHeader.push_back(std::move(value)); return *this; }
/**
* <p>The header information for the .csv file for the user import job.</p>
*/
inline GetCSVHeaderResult& AddCSVHeader(const char* value) { m_cSVHeader.push_back(value); return *this; }
private:
Aws::String m_userPoolId;
Aws::Vector<Aws::String> m_cSVHeader;
};
} // namespace Model
} // namespace CognitoIdentityProvider
} // namespace Aws