/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include This input determines which step to describe.See Also:
AWS
* API Reference
The identifier of the cluster with steps to describe.
*/ inline const Aws::String& GetClusterId() const{ return m_clusterId; } /** *The identifier of the cluster with steps to describe.
*/ inline bool ClusterIdHasBeenSet() const { return m_clusterIdHasBeenSet; } /** *The identifier of the cluster with steps to describe.
*/ inline void SetClusterId(const Aws::String& value) { m_clusterIdHasBeenSet = true; m_clusterId = value; } /** *The identifier of the cluster with steps to describe.
*/ inline void SetClusterId(Aws::String&& value) { m_clusterIdHasBeenSet = true; m_clusterId = std::move(value); } /** *The identifier of the cluster with steps to describe.
*/ inline void SetClusterId(const char* value) { m_clusterIdHasBeenSet = true; m_clusterId.assign(value); } /** *The identifier of the cluster with steps to describe.
*/ inline DescribeStepRequest& WithClusterId(const Aws::String& value) { SetClusterId(value); return *this;} /** *The identifier of the cluster with steps to describe.
*/ inline DescribeStepRequest& WithClusterId(Aws::String&& value) { SetClusterId(std::move(value)); return *this;} /** *The identifier of the cluster with steps to describe.
*/ inline DescribeStepRequest& WithClusterId(const char* value) { SetClusterId(value); return *this;} /** *The identifier of the step to describe.
*/ inline const Aws::String& GetStepId() const{ return m_stepId; } /** *The identifier of the step to describe.
*/ inline bool StepIdHasBeenSet() const { return m_stepIdHasBeenSet; } /** *The identifier of the step to describe.
*/ inline void SetStepId(const Aws::String& value) { m_stepIdHasBeenSet = true; m_stepId = value; } /** *The identifier of the step to describe.
*/ inline void SetStepId(Aws::String&& value) { m_stepIdHasBeenSet = true; m_stepId = std::move(value); } /** *The identifier of the step to describe.
*/ inline void SetStepId(const char* value) { m_stepIdHasBeenSet = true; m_stepId.assign(value); } /** *The identifier of the step to describe.
*/ inline DescribeStepRequest& WithStepId(const Aws::String& value) { SetStepId(value); return *this;} /** *The identifier of the step to describe.
*/ inline DescribeStepRequest& WithStepId(Aws::String&& value) { SetStepId(std::move(value)); return *this;} /** *The identifier of the step to describe.
*/ inline DescribeStepRequest& WithStepId(const char* value) { SetStepId(value); return *this;} private: Aws::String m_clusterId; bool m_clusterIdHasBeenSet = false; Aws::String m_stepId; bool m_stepIdHasBeenSet = false; }; } // namespace Model } // namespace EMR } // namespace Aws