/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the steps in the workflow, as well as the steps to execute in case
* of any errors during workflow execution.See Also:
AWS
* API Reference
Specifies the details for the steps that are in the specified workflow.
*/ inline const Aws::VectorSpecifies the details for the steps that are in the specified workflow.
*/ inline bool StepsHasBeenSet() const { return m_stepsHasBeenSet; } /** *Specifies the details for the steps that are in the specified workflow.
*/ inline void SetSteps(const Aws::VectorSpecifies the details for the steps that are in the specified workflow.
*/ inline void SetSteps(Aws::VectorSpecifies the details for the steps that are in the specified workflow.
*/ inline ExecutionResults& WithSteps(const Aws::VectorSpecifies the details for the steps that are in the specified workflow.
*/ inline ExecutionResults& WithSteps(Aws::VectorSpecifies the details for the steps that are in the specified workflow.
*/ inline ExecutionResults& AddSteps(const ExecutionStepResult& value) { m_stepsHasBeenSet = true; m_steps.push_back(value); return *this; } /** *Specifies the details for the steps that are in the specified workflow.
*/ inline ExecutionResults& AddSteps(ExecutionStepResult&& value) { m_stepsHasBeenSet = true; m_steps.push_back(std::move(value)); return *this; } /** *Specifies the steps (actions) to take if errors are encountered during * execution of the workflow.
*/ inline const Aws::VectorSpecifies the steps (actions) to take if errors are encountered during * execution of the workflow.
*/ inline bool OnExceptionStepsHasBeenSet() const { return m_onExceptionStepsHasBeenSet; } /** *Specifies the steps (actions) to take if errors are encountered during * execution of the workflow.
*/ inline void SetOnExceptionSteps(const Aws::VectorSpecifies the steps (actions) to take if errors are encountered during * execution of the workflow.
*/ inline void SetOnExceptionSteps(Aws::VectorSpecifies the steps (actions) to take if errors are encountered during * execution of the workflow.
*/ inline ExecutionResults& WithOnExceptionSteps(const Aws::VectorSpecifies the steps (actions) to take if errors are encountered during * execution of the workflow.
*/ inline ExecutionResults& WithOnExceptionSteps(Aws::VectorSpecifies the steps (actions) to take if errors are encountered during * execution of the workflow.
*/ inline ExecutionResults& AddOnExceptionSteps(const ExecutionStepResult& value) { m_onExceptionStepsHasBeenSet = true; m_onExceptionSteps.push_back(value); return *this; } /** *Specifies the steps (actions) to take if errors are encountered during * execution of the workflow.
*/ inline ExecutionResults& AddOnExceptionSteps(ExecutionStepResult&& value) { m_onExceptionStepsHasBeenSet = true; m_onExceptionSteps.push_back(std::move(value)); return *this; } private: Aws::Vector