74 lines
1.9 KiB
C++
74 lines
1.9 KiB
C++
/**
|
|
* 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 <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 AWS_EMR_API DescribeClusterResult
|
|
{
|
|
public:
|
|
DescribeClusterResult();
|
|
DescribeClusterResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
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;}
|
|
|
|
private:
|
|
|
|
Cluster m_cluster;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace EMR
|
|
} // namespace Aws
|