/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace EMR { namespace Model { class ModifyClusterResult { public: AWS_EMR_API ModifyClusterResult(); AWS_EMR_API ModifyClusterResult(const Aws::AmazonWebServiceResult& result); AWS_EMR_API 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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline ModifyClusterResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ModifyClusterResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ModifyClusterResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: int m_stepConcurrencyLevel; Aws::String m_requestId; }; } // namespace Model } // namespace EMR } // namespace Aws