/**
* 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.See Also:
* AWS
* API Reference
This output contains the details for the requested cluster.
*/ inline const Cluster& GetCluster() const{ return m_cluster; } /** *This output contains the details for the requested cluster.
*/ inline void SetCluster(const Cluster& value) { m_cluster = value; } /** *This output contains the details for the requested cluster.
*/ inline void SetCluster(Cluster&& value) { m_cluster = std::move(value); } /** *This output contains the details for the requested cluster.
*/ inline DescribeClusterResult& WithCluster(const Cluster& value) { SetCluster(value); return *this;} /** *This output contains the details for the requested cluster.
*/ inline DescribeClusterResult& WithCluster(Cluster&& value) { SetCluster(std::move(value)); return *this;} private: Cluster m_cluster; }; } // namespace Model } // namespace EMR } // namespace Aws