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

Returns a list of failed delete remediation exceptions batch objects. Each * object in the batch consists of a list of failed items and failure messages.

*/ inline const Aws::Vector& GetFailedBatches() const{ return m_failedBatches; } /** *

Returns a list of failed delete remediation exceptions batch objects. Each * object in the batch consists of a list of failed items and failure messages.

*/ inline void SetFailedBatches(const Aws::Vector& value) { m_failedBatches = value; } /** *

Returns a list of failed delete remediation exceptions batch objects. Each * object in the batch consists of a list of failed items and failure messages.

*/ inline void SetFailedBatches(Aws::Vector&& value) { m_failedBatches = std::move(value); } /** *

Returns a list of failed delete remediation exceptions batch objects. Each * object in the batch consists of a list of failed items and failure messages.

*/ inline DeleteRemediationExceptionsResult& WithFailedBatches(const Aws::Vector& value) { SetFailedBatches(value); return *this;} /** *

Returns a list of failed delete remediation exceptions batch objects. Each * object in the batch consists of a list of failed items and failure messages.

*/ inline DeleteRemediationExceptionsResult& WithFailedBatches(Aws::Vector&& value) { SetFailedBatches(std::move(value)); return *this;} /** *

Returns a list of failed delete remediation exceptions batch objects. Each * object in the batch consists of a list of failed items and failure messages.

*/ inline DeleteRemediationExceptionsResult& AddFailedBatches(const FailedDeleteRemediationExceptionsBatch& value) { m_failedBatches.push_back(value); return *this; } /** *

Returns a list of failed delete remediation exceptions batch objects. Each * object in the batch consists of a list of failed items and failure messages.

*/ inline DeleteRemediationExceptionsResult& AddFailedBatches(FailedDeleteRemediationExceptionsBatch&& value) { m_failedBatches.push_back(std::move(value)); return *this; } private: Aws::Vector m_failedBatches; }; } // namespace Model } // namespace ConfigService } // namespace Aws