/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace EMR { namespace Model { /** *

The output for the AddJobFlowSteps operation.

See * Also:

AWS * API Reference

*/ class AWS_EMR_API AddJobFlowStepsResult { public: AddJobFlowStepsResult(); AddJobFlowStepsResult(const Aws::AmazonWebServiceResult& result); AddJobFlowStepsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The identifiers of the list of steps added to the job flow.

*/ inline const Aws::Vector& GetStepIds() const{ return m_stepIds; } /** *

The identifiers of the list of steps added to the job flow.

*/ inline void SetStepIds(const Aws::Vector& value) { m_stepIds = value; } /** *

The identifiers of the list of steps added to the job flow.

*/ inline void SetStepIds(Aws::Vector&& value) { m_stepIds = std::move(value); } /** *

The identifiers of the list of steps added to the job flow.

*/ inline AddJobFlowStepsResult& WithStepIds(const Aws::Vector& value) { SetStepIds(value); return *this;} /** *

The identifiers of the list of steps added to the job flow.

*/ inline AddJobFlowStepsResult& WithStepIds(Aws::Vector&& value) { SetStepIds(std::move(value)); return *this;} /** *

The identifiers of the list of steps added to the job flow.

*/ inline AddJobFlowStepsResult& AddStepIds(const Aws::String& value) { m_stepIds.push_back(value); return *this; } /** *

The identifiers of the list of steps added to the job flow.

*/ inline AddJobFlowStepsResult& AddStepIds(Aws::String&& value) { m_stepIds.push_back(std::move(value)); return *this; } /** *

The identifiers of the list of steps added to the job flow.

*/ inline AddJobFlowStepsResult& AddStepIds(const char* value) { m_stepIds.push_back(value); return *this; } private: Aws::Vector m_stepIds; }; } // namespace Model } // namespace EMR } // namespace Aws