/** * 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 Snowball { namespace Model { class AWS_SNOWBALL_API DescribeClusterResult { public: DescribeClusterResult(); DescribeClusterResult(const Aws::AmazonWebServiceResult& result); DescribeClusterResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about a specific cluster, including shipping information, cluster * status, and other important metadata.

*/ inline const ClusterMetadata& GetClusterMetadata() const{ return m_clusterMetadata; } /** *

Information about a specific cluster, including shipping information, cluster * status, and other important metadata.

*/ inline void SetClusterMetadata(const ClusterMetadata& value) { m_clusterMetadata = value; } /** *

Information about a specific cluster, including shipping information, cluster * status, and other important metadata.

*/ inline void SetClusterMetadata(ClusterMetadata&& value) { m_clusterMetadata = std::move(value); } /** *

Information about a specific cluster, including shipping information, cluster * status, and other important metadata.

*/ inline DescribeClusterResult& WithClusterMetadata(const ClusterMetadata& value) { SetClusterMetadata(value); return *this;} /** *

Information about a specific cluster, including shipping information, cluster * status, and other important metadata.

*/ inline DescribeClusterResult& WithClusterMetadata(ClusterMetadata&& value) { SetClusterMetadata(std::move(value)); return *this;} private: ClusterMetadata m_clusterMetadata; }; } // namespace Model } // namespace Snowball } // namespace Aws