/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The result of the RunJobFlow operation. See Also:
* AWS
* API Reference
A unique identifier for the job flow.
*/ inline const Aws::String& GetJobFlowId() const{ return m_jobFlowId; } /** *A unique identifier for the job flow.
*/ inline void SetJobFlowId(const Aws::String& value) { m_jobFlowId = value; } /** *A unique identifier for the job flow.
*/ inline void SetJobFlowId(Aws::String&& value) { m_jobFlowId = std::move(value); } /** *A unique identifier for the job flow.
*/ inline void SetJobFlowId(const char* value) { m_jobFlowId.assign(value); } /** *A unique identifier for the job flow.
*/ inline RunJobFlowResult& WithJobFlowId(const Aws::String& value) { SetJobFlowId(value); return *this;} /** *A unique identifier for the job flow.
*/ inline RunJobFlowResult& WithJobFlowId(Aws::String&& value) { SetJobFlowId(std::move(value)); return *this;} /** *A unique identifier for the job flow.
*/ inline RunJobFlowResult& WithJobFlowId(const char* value) { SetJobFlowId(value); return *this;} /** *The Amazon Resource Name (ARN) of the cluster.
*/ inline const Aws::String& GetClusterArn() const{ return m_clusterArn; } /** *The Amazon Resource Name (ARN) of the cluster.
*/ inline void SetClusterArn(const Aws::String& value) { m_clusterArn = value; } /** *The Amazon Resource Name (ARN) of the cluster.
*/ inline void SetClusterArn(Aws::String&& value) { m_clusterArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the cluster.
*/ inline void SetClusterArn(const char* value) { m_clusterArn.assign(value); } /** *The Amazon Resource Name (ARN) of the cluster.
*/ inline RunJobFlowResult& WithClusterArn(const Aws::String& value) { SetClusterArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the cluster.
*/ inline RunJobFlowResult& WithClusterArn(Aws::String&& value) { SetClusterArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the cluster.
*/ inline RunJobFlowResult& WithClusterArn(const char* value) { SetClusterArn(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 RunJobFlowResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline RunJobFlowResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline RunJobFlowResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_jobFlowId; Aws::String m_clusterArn; Aws::String m_requestId; }; } // namespace Model } // namespace EMR } // namespace Aws