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-cloudhsmv2/include/aws/cloudhsmv2/model/DescribeClustersResult.h

132 lines
4.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/cloudhsmv2/CloudHSMV2_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/cloudhsmv2/model/Cluster.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace CloudHSMV2
{
namespace Model
{
class AWS_CLOUDHSMV2_API DescribeClustersResult
{
public:
DescribeClustersResult();
DescribeClustersResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeClustersResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A list of clusters.</p>
*/
inline const Aws::Vector<Cluster>& GetClusters() const{ return m_clusters; }
/**
* <p>A list of clusters.</p>
*/
inline void SetClusters(const Aws::Vector<Cluster>& value) { m_clusters = value; }
/**
* <p>A list of clusters.</p>
*/
inline void SetClusters(Aws::Vector<Cluster>&& value) { m_clusters = std::move(value); }
/**
* <p>A list of clusters.</p>
*/
inline DescribeClustersResult& WithClusters(const Aws::Vector<Cluster>& value) { SetClusters(value); return *this;}
/**
* <p>A list of clusters.</p>
*/
inline DescribeClustersResult& WithClusters(Aws::Vector<Cluster>&& value) { SetClusters(std::move(value)); return *this;}
/**
* <p>A list of clusters.</p>
*/
inline DescribeClustersResult& AddClusters(const Cluster& value) { m_clusters.push_back(value); return *this; }
/**
* <p>A list of clusters.</p>
*/
inline DescribeClustersResult& AddClusters(Cluster&& value) { m_clusters.push_back(std::move(value)); return *this; }
/**
* <p>An opaque string that indicates that the response contains only a subset of
* clusters. Use this value in a subsequent <code>DescribeClusters</code> request
* to get more clusters.</p>
*/
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
/**
* <p>An opaque string that indicates that the response contains only a subset of
* clusters. Use this value in a subsequent <code>DescribeClusters</code> request
* to get more clusters.</p>
*/
inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
/**
* <p>An opaque string that indicates that the response contains only a subset of
* clusters. Use this value in a subsequent <code>DescribeClusters</code> request
* to get more clusters.</p>
*/
inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
/**
* <p>An opaque string that indicates that the response contains only a subset of
* clusters. Use this value in a subsequent <code>DescribeClusters</code> request
* to get more clusters.</p>
*/
inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
/**
* <p>An opaque string that indicates that the response contains only a subset of
* clusters. Use this value in a subsequent <code>DescribeClusters</code> request
* to get more clusters.</p>
*/
inline DescribeClustersResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* <p>An opaque string that indicates that the response contains only a subset of
* clusters. Use this value in a subsequent <code>DescribeClusters</code> request
* to get more clusters.</p>
*/
inline DescribeClustersResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* <p>An opaque string that indicates that the response contains only a subset of
* clusters. Use this value in a subsequent <code>DescribeClusters</code> request
* to get more clusters.</p>
*/
inline DescribeClustersResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
private:
Aws::Vector<Cluster> m_clusters;
Aws::String m_nextToken;
};
} // namespace Model
} // namespace CloudHSMV2
} // namespace Aws