/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include List of each of the failed delete remediation exceptions with specific
* reasons.See Also:
AWS
* API Reference
Returns a failure message for delete remediation exception. For example, * Config creates an exception due to an internal error.
*/ inline const Aws::String& GetFailureMessage() const{ return m_failureMessage; } /** *Returns a failure message for delete remediation exception. For example, * Config creates an exception due to an internal error.
*/ inline bool FailureMessageHasBeenSet() const { return m_failureMessageHasBeenSet; } /** *Returns a failure message for delete remediation exception. For example, * Config creates an exception due to an internal error.
*/ inline void SetFailureMessage(const Aws::String& value) { m_failureMessageHasBeenSet = true; m_failureMessage = value; } /** *Returns a failure message for delete remediation exception. For example, * Config creates an exception due to an internal error.
*/ inline void SetFailureMessage(Aws::String&& value) { m_failureMessageHasBeenSet = true; m_failureMessage = std::move(value); } /** *Returns a failure message for delete remediation exception. For example, * Config creates an exception due to an internal error.
*/ inline void SetFailureMessage(const char* value) { m_failureMessageHasBeenSet = true; m_failureMessage.assign(value); } /** *Returns a failure message for delete remediation exception. For example, * Config creates an exception due to an internal error.
*/ inline FailedDeleteRemediationExceptionsBatch& WithFailureMessage(const Aws::String& value) { SetFailureMessage(value); return *this;} /** *Returns a failure message for delete remediation exception. For example, * Config creates an exception due to an internal error.
*/ inline FailedDeleteRemediationExceptionsBatch& WithFailureMessage(Aws::String&& value) { SetFailureMessage(std::move(value)); return *this;} /** *Returns a failure message for delete remediation exception. For example, * Config creates an exception due to an internal error.
*/ inline FailedDeleteRemediationExceptionsBatch& WithFailureMessage(const char* value) { SetFailureMessage(value); return *this;} /** *Returns remediation exception resource key object of the failed items.
*/ inline const Aws::VectorReturns remediation exception resource key object of the failed items.
*/ inline bool FailedItemsHasBeenSet() const { return m_failedItemsHasBeenSet; } /** *Returns remediation exception resource key object of the failed items.
*/ inline void SetFailedItems(const Aws::VectorReturns remediation exception resource key object of the failed items.
*/ inline void SetFailedItems(Aws::VectorReturns remediation exception resource key object of the failed items.
*/ inline FailedDeleteRemediationExceptionsBatch& WithFailedItems(const Aws::VectorReturns remediation exception resource key object of the failed items.
*/ inline FailedDeleteRemediationExceptionsBatch& WithFailedItems(Aws::VectorReturns remediation exception resource key object of the failed items.
*/ inline FailedDeleteRemediationExceptionsBatch& AddFailedItems(const RemediationExceptionResourceKey& value) { m_failedItemsHasBeenSet = true; m_failedItems.push_back(value); return *this; } /** *Returns remediation exception resource key object of the failed items.
*/ inline FailedDeleteRemediationExceptionsBatch& AddFailedItems(RemediationExceptionResourceKey&& value) { m_failedItemsHasBeenSet = true; m_failedItems.push_back(std::move(value)); return *this; } private: Aws::String m_failureMessage; bool m_failureMessageHasBeenSet = false; Aws::Vector