/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Inspector2 { namespace Model { class BatchGetMemberEc2DeepInspectionStatusResult { public: AWS_INSPECTOR2_API BatchGetMemberEc2DeepInspectionStatusResult(); AWS_INSPECTOR2_API BatchGetMemberEc2DeepInspectionStatusResult(const Aws::AmazonWebServiceResult& result); AWS_INSPECTOR2_API BatchGetMemberEc2DeepInspectionStatusResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

An array of objects that provide details on the activation status of Amazon * Inspector deep inspection for each of the requested accounts.


     * </p> 
*/ inline const Aws::Vector& GetAccountIds() const{ return m_accountIds; } /** *

An array of objects that provide details on the activation status of Amazon * Inspector deep inspection for each of the requested accounts.


     * </p> 
*/ inline void SetAccountIds(const Aws::Vector& value) { m_accountIds = value; } /** *

An array of objects that provide details on the activation status of Amazon * Inspector deep inspection for each of the requested accounts.


     * </p> 
*/ inline void SetAccountIds(Aws::Vector&& value) { m_accountIds = std::move(value); } /** *

An array of objects that provide details on the activation status of Amazon * Inspector deep inspection for each of the requested accounts.


     * </p> 
*/ inline BatchGetMemberEc2DeepInspectionStatusResult& WithAccountIds(const Aws::Vector& value) { SetAccountIds(value); return *this;} /** *

An array of objects that provide details on the activation status of Amazon * Inspector deep inspection for each of the requested accounts.


     * </p> 
*/ inline BatchGetMemberEc2DeepInspectionStatusResult& WithAccountIds(Aws::Vector&& value) { SetAccountIds(std::move(value)); return *this;} /** *

An array of objects that provide details on the activation status of Amazon * Inspector deep inspection for each of the requested accounts.


     * </p> 
*/ inline BatchGetMemberEc2DeepInspectionStatusResult& AddAccountIds(const MemberAccountEc2DeepInspectionStatusState& value) { m_accountIds.push_back(value); return *this; } /** *

An array of objects that provide details on the activation status of Amazon * Inspector deep inspection for each of the requested accounts.


     * </p> 
*/ inline BatchGetMemberEc2DeepInspectionStatusResult& AddAccountIds(MemberAccountEc2DeepInspectionStatusState&& value) { m_accountIds.push_back(std::move(value)); return *this; } /** *

An array of objects that provide details on any accounts that failed to * activate Amazon Inspector deep inspection and why.

 </p>
     * 
*/ inline const Aws::Vector& GetFailedAccountIds() const{ return m_failedAccountIds; } /** *

An array of objects that provide details on any accounts that failed to * activate Amazon Inspector deep inspection and why.

 </p>
     * 
*/ inline void SetFailedAccountIds(const Aws::Vector& value) { m_failedAccountIds = value; } /** *

An array of objects that provide details on any accounts that failed to * activate Amazon Inspector deep inspection and why.

 </p>
     * 
*/ inline void SetFailedAccountIds(Aws::Vector&& value) { m_failedAccountIds = std::move(value); } /** *

An array of objects that provide details on any accounts that failed to * activate Amazon Inspector deep inspection and why.

 </p>
     * 
*/ inline BatchGetMemberEc2DeepInspectionStatusResult& WithFailedAccountIds(const Aws::Vector& value) { SetFailedAccountIds(value); return *this;} /** *

An array of objects that provide details on any accounts that failed to * activate Amazon Inspector deep inspection and why.

 </p>
     * 
*/ inline BatchGetMemberEc2DeepInspectionStatusResult& WithFailedAccountIds(Aws::Vector&& value) { SetFailedAccountIds(std::move(value)); return *this;} /** *

An array of objects that provide details on any accounts that failed to * activate Amazon Inspector deep inspection and why.

 </p>
     * 
*/ inline BatchGetMemberEc2DeepInspectionStatusResult& AddFailedAccountIds(const FailedMemberAccountEc2DeepInspectionStatusState& value) { m_failedAccountIds.push_back(value); return *this; } /** *

An array of objects that provide details on any accounts that failed to * activate Amazon Inspector deep inspection and why.

 </p>
     * 
*/ inline BatchGetMemberEc2DeepInspectionStatusResult& AddFailedAccountIds(FailedMemberAccountEc2DeepInspectionStatusState&& value) { m_failedAccountIds.push_back(std::move(value)); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline BatchGetMemberEc2DeepInspectionStatusResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline BatchGetMemberEc2DeepInspectionStatusResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline BatchGetMemberEc2DeepInspectionStatusResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_accountIds; Aws::Vector m_failedAccountIds; Aws::String m_requestId; }; } // namespace Model } // namespace Inspector2 } // namespace Aws