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

The number of steps that can be executed concurrently.

*/ inline int GetStepConcurrencyLevel() const{ return m_stepConcurrencyLevel; } /** *

The number of steps that can be executed concurrently.

*/ inline void SetStepConcurrencyLevel(int value) { m_stepConcurrencyLevel = value; } /** *

The number of steps that can be executed concurrently.

*/ inline ModifyClusterResult& WithStepConcurrencyLevel(int value) { SetStepConcurrencyLevel(value); return *this;} private: int m_stepConcurrencyLevel; }; } // namespace Model } // namespace EMR } // namespace Aws