/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include This output contains the description of the cluster step.See
* Also:
AWS
* API Reference
The step details for the requested step identifier.
*/ inline const Step& GetStep() const{ return m_step; } /** *The step details for the requested step identifier.
*/ inline void SetStep(const Step& value) { m_step = value; } /** *The step details for the requested step identifier.
*/ inline void SetStep(Step&& value) { m_step = std::move(value); } /** *The step details for the requested step identifier.
*/ inline DescribeStepResult& WithStep(const Step& value) { SetStep(value); return *this;} /** *The step details for the requested step identifier.
*/ inline DescribeStepResult& WithStep(Step&& value) { SetStep(std::move(value)); return *this;} private: Step m_step; }; } // namespace Model } // namespace EMR } // namespace Aws