68 lines
1.7 KiB
C++
68 lines
1.7 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 UpdateClusterResult
|
|
{
|
|
public:
|
|
UpdateClusterResult();
|
|
UpdateClusterResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
UpdateClusterResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>A description of the DAX cluster, after it has been modified.</p>
|
|
*/
|
|
inline const Cluster& GetCluster() const{ return m_cluster; }
|
|
|
|
/**
|
|
* <p>A description of the DAX cluster, after it has been modified.</p>
|
|
*/
|
|
inline void SetCluster(const Cluster& value) { m_cluster = value; }
|
|
|
|
/**
|
|
* <p>A description of the DAX cluster, after it has been modified.</p>
|
|
*/
|
|
inline void SetCluster(Cluster&& value) { m_cluster = std::move(value); }
|
|
|
|
/**
|
|
* <p>A description of the DAX cluster, after it has been modified.</p>
|
|
*/
|
|
inline UpdateClusterResult& WithCluster(const Cluster& value) { SetCluster(value); return *this;}
|
|
|
|
/**
|
|
* <p>A description of the DAX cluster, after it has been modified.</p>
|
|
*/
|
|
inline UpdateClusterResult& WithCluster(Cluster&& value) { SetCluster(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Cluster m_cluster;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DAX
|
|
} // namespace Aws
|