/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace EKS { namespace Model { class AWS_EKS_API DescribeClusterResult { public: DescribeClusterResult(); DescribeClusterResult(const Aws::AmazonWebServiceResult& result); DescribeClusterResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The full description of your specified cluster.

*/ inline const Cluster& GetCluster() const{ return m_cluster; } /** *

The full description of your specified cluster.

*/ inline void SetCluster(const Cluster& value) { m_cluster = value; } /** *

The full description of your specified cluster.

*/ inline void SetCluster(Cluster&& value) { m_cluster = std::move(value); } /** *

The full description of your specified cluster.

*/ inline DescribeClusterResult& WithCluster(const Cluster& value) { SetCluster(value); return *this;} /** *

The full description of your specified cluster.

*/ inline DescribeClusterResult& WithCluster(Cluster&& value) { SetCluster(std::move(value)); return *this;} private: Cluster m_cluster; }; } // namespace Model } // namespace EKS } // namespace Aws