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-securityhub/include/aws/securityhub/model/InviteMembersResult.h

86 lines
2.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/securityhub/SecurityHub_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/securityhub/model/Result.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace SecurityHub
{
namespace Model
{
class AWS_SECURITYHUB_API InviteMembersResult
{
public:
InviteMembersResult();
InviteMembersResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
InviteMembersResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The list of AWS accounts that could not be processed. For each account, the
* list includes the account ID and the email address.</p>
*/
inline const Aws::Vector<Result>& GetUnprocessedAccounts() const{ return m_unprocessedAccounts; }
/**
* <p>The list of AWS accounts that could not be processed. For each account, the
* list includes the account ID and the email address.</p>
*/
inline void SetUnprocessedAccounts(const Aws::Vector<Result>& value) { m_unprocessedAccounts = value; }
/**
* <p>The list of AWS accounts that could not be processed. For each account, the
* list includes the account ID and the email address.</p>
*/
inline void SetUnprocessedAccounts(Aws::Vector<Result>&& value) { m_unprocessedAccounts = std::move(value); }
/**
* <p>The list of AWS accounts that could not be processed. For each account, the
* list includes the account ID and the email address.</p>
*/
inline InviteMembersResult& WithUnprocessedAccounts(const Aws::Vector<Result>& value) { SetUnprocessedAccounts(value); return *this;}
/**
* <p>The list of AWS accounts that could not be processed. For each account, the
* list includes the account ID and the email address.</p>
*/
inline InviteMembersResult& WithUnprocessedAccounts(Aws::Vector<Result>&& value) { SetUnprocessedAccounts(std::move(value)); return *this;}
/**
* <p>The list of AWS accounts that could not be processed. For each account, the
* list includes the account ID and the email address.</p>
*/
inline InviteMembersResult& AddUnprocessedAccounts(const Result& value) { m_unprocessedAccounts.push_back(value); return *this; }
/**
* <p>The list of AWS accounts that could not be processed. For each account, the
* list includes the account ID and the email address.</p>
*/
inline InviteMembersResult& AddUnprocessedAccounts(Result&& value) { m_unprocessedAccounts.push_back(std::move(value)); return *this; }
private:
Aws::Vector<Result> m_unprocessedAccounts;
};
} // namespace Model
} // namespace SecurityHub
} // namespace Aws