/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A list of remediation actions.See Also:
AWS
* API Reference
A description of the list of remediation actions.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *A description of the list of remediation actions.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *A description of the list of remediation actions.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *A description of the list of remediation actions.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *A description of the list of remediation actions.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *A description of the list of remediation actions.
*/ inline PossibleRemediationAction& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *A description of the list of remediation actions.
*/ inline PossibleRemediationAction& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *A description of the list of remediation actions.
*/ inline PossibleRemediationAction& WithDescription(const char* value) { SetDescription(value); return *this;} /** *The ordered list of remediation actions.
*/ inline const Aws::VectorThe ordered list of remediation actions.
*/ inline bool OrderedRemediationActionsHasBeenSet() const { return m_orderedRemediationActionsHasBeenSet; } /** *The ordered list of remediation actions.
*/ inline void SetOrderedRemediationActions(const Aws::VectorThe ordered list of remediation actions.
*/ inline void SetOrderedRemediationActions(Aws::VectorThe ordered list of remediation actions.
*/ inline PossibleRemediationAction& WithOrderedRemediationActions(const Aws::VectorThe ordered list of remediation actions.
*/ inline PossibleRemediationAction& WithOrderedRemediationActions(Aws::VectorThe ordered list of remediation actions.
*/ inline PossibleRemediationAction& AddOrderedRemediationActions(const RemediationActionWithOrder& value) { m_orderedRemediationActionsHasBeenSet = true; m_orderedRemediationActions.push_back(value); return *this; } /** *The ordered list of remediation actions.
*/ inline PossibleRemediationAction& AddOrderedRemediationActions(RemediationActionWithOrder&& value) { m_orderedRemediationActionsHasBeenSet = true; m_orderedRemediationActions.push_back(std::move(value)); return *this; } /** *Information about whether an action is taken by default.
*/ inline bool GetIsDefaultAction() const{ return m_isDefaultAction; } /** *Information about whether an action is taken by default.
*/ inline bool IsDefaultActionHasBeenSet() const { return m_isDefaultActionHasBeenSet; } /** *Information about whether an action is taken by default.
*/ inline void SetIsDefaultAction(bool value) { m_isDefaultActionHasBeenSet = true; m_isDefaultAction = value; } /** *Information about whether an action is taken by default.
*/ inline PossibleRemediationAction& WithIsDefaultAction(bool value) { SetIsDefaultAction(value); return *this;} private: Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::Vector