/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of a DescribeCacheParameterGroups
* operation.See Also:
AWS
* API Reference
Provides an identifier to allow retrieval of paginated results.
*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *Provides an identifier to allow retrieval of paginated results.
*/ inline void SetMarker(const Aws::String& value) { m_marker = value; } /** *Provides an identifier to allow retrieval of paginated results.
*/ inline void SetMarker(Aws::String&& value) { m_marker = std::move(value); } /** *Provides an identifier to allow retrieval of paginated results.
*/ inline void SetMarker(const char* value) { m_marker.assign(value); } /** *Provides an identifier to allow retrieval of paginated results.
*/ inline DescribeCacheParameterGroupsResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *Provides an identifier to allow retrieval of paginated results.
*/ inline DescribeCacheParameterGroupsResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *Provides an identifier to allow retrieval of paginated results.
*/ inline DescribeCacheParameterGroupsResult& WithMarker(const char* value) { SetMarker(value); return *this;} /** *A list of cache parameter groups. Each element in the list contains detailed * information about one cache parameter group.
*/ inline const Aws::VectorA list of cache parameter groups. Each element in the list contains detailed * information about one cache parameter group.
*/ inline void SetCacheParameterGroups(const Aws::VectorA list of cache parameter groups. Each element in the list contains detailed * information about one cache parameter group.
*/ inline void SetCacheParameterGroups(Aws::VectorA list of cache parameter groups. Each element in the list contains detailed * information about one cache parameter group.
*/ inline DescribeCacheParameterGroupsResult& WithCacheParameterGroups(const Aws::VectorA list of cache parameter groups. Each element in the list contains detailed * information about one cache parameter group.
*/ inline DescribeCacheParameterGroupsResult& WithCacheParameterGroups(Aws::VectorA list of cache parameter groups. Each element in the list contains detailed * information about one cache parameter group.
*/ inline DescribeCacheParameterGroupsResult& AddCacheParameterGroups(const CacheParameterGroup& value) { m_cacheParameterGroups.push_back(value); return *this; } /** *A list of cache parameter groups. Each element in the list contains detailed * information about one cache parameter group.
*/ inline DescribeCacheParameterGroupsResult& AddCacheParameterGroups(CacheParameterGroup&& value) { m_cacheParameterGroups.push_back(std::move(value)); return *this; } inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline DescribeCacheParameterGroupsResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline DescribeCacheParameterGroupsResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_marker; Aws::Vector