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

Information about the cluster that was deleted.

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

Information about the cluster that was deleted.

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

Information about the cluster that was deleted.

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

Information about the cluster that was deleted.

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

Information about the cluster that was deleted.

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