This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-dax/include/aws/dax/model/DeleteClusterResult.h

68 lines
1.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/dax/DAX_EXPORTS.h>
#include <aws/dax/model/Cluster.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace DAX
{
namespace Model
{
class AWS_DAX_API DeleteClusterResult
{
public:
DeleteClusterResult();
DeleteClusterResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DeleteClusterResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A description of the DAX cluster that is being deleted.</p>
*/
inline const Cluster& GetCluster() const{ return m_cluster; }
/**
* <p>A description of the DAX cluster that is being deleted.</p>
*/
inline void SetCluster(const Cluster& value) { m_cluster = value; }
/**
* <p>A description of the DAX cluster that is being deleted.</p>
*/
inline void SetCluster(Cluster&& value) { m_cluster = std::move(value); }
/**
* <p>A description of the DAX cluster that is being deleted.</p>
*/
inline DeleteClusterResult& WithCluster(const Cluster& value) { SetCluster(value); return *this;}
/**
* <p>A description of the DAX cluster that is being deleted.</p>
*/
inline DeleteClusterResult& WithCluster(Cluster&& value) { SetCluster(std::move(value)); return *this;}
private:
Cluster m_cluster;
};
} // namespace Model
} // namespace DAX
} // namespace Aws