/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/elasticmapreduce/EMR_EXPORTS.h> #include <aws/elasticmapreduce/model/Cluster.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace EMR { namespace Model { /** * <p>This output contains the description of the cluster.</p><p><h3>See Also:</h3> * <a * href="http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeClusterOutput">AWS * API Reference</a></p> */ class DescribeClusterResult { public: AWS_EMR_API DescribeClusterResult(); AWS_EMR_API DescribeClusterResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_EMR_API DescribeClusterResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>This output contains the details for the requested cluster.</p> */ inline const Cluster& GetCluster() const{ return m_cluster; } /** * <p>This output contains the details for the requested cluster.</p> */ inline void SetCluster(const Cluster& value) { m_cluster = value; } /** * <p>This output contains the details for the requested cluster.</p> */ inline void SetCluster(Cluster&& value) { m_cluster = std::move(value); } /** * <p>This output contains the details for the requested cluster.</p> */ inline DescribeClusterResult& WithCluster(const Cluster& value) { SetCluster(value); return *this;} /** * <p>This output contains the details for the requested cluster.</p> */ inline DescribeClusterResult& WithCluster(Cluster&& value) { SetCluster(std::move(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 DescribeClusterResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeClusterResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeClusterResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Cluster m_cluster; Aws::String m_requestId; }; } // namespace Model } // namespace EMR } // namespace Aws