/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configuration that controls the parallelism of the pipeline. By default, the
* parallelism configuration specified applies to all executions of the pipeline
* unless overridden.See Also:
AWS
* API Reference
The max number of steps that can be executed in parallel.
*/ inline int GetMaxParallelExecutionSteps() const{ return m_maxParallelExecutionSteps; } /** *The max number of steps that can be executed in parallel.
*/ inline bool MaxParallelExecutionStepsHasBeenSet() const { return m_maxParallelExecutionStepsHasBeenSet; } /** *The max number of steps that can be executed in parallel.
*/ inline void SetMaxParallelExecutionSteps(int value) { m_maxParallelExecutionStepsHasBeenSet = true; m_maxParallelExecutionSteps = value; } /** *The max number of steps that can be executed in parallel.
*/ inline ParallelismConfiguration& WithMaxParallelExecutionSteps(int value) { SetMaxParallelExecutionSteps(value); return *this;} private: int m_maxParallelExecutionSteps; bool m_maxParallelExecutionStepsHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws