AWS SDK for C++

AWS SDK for C++ Version 1.11.806

Loading...
Searching...
No Matches
PCSPaginationBase.h
1
6#pragma once
7
8#include <aws/core/client/UserAgent.h>
9#include <aws/core/utils/pagination/Paginator.h>
10#include <aws/pcs/model/ListClustersPaginationTraits.h>
11#include <aws/pcs/model/ListComputeNodeGroupsPaginationTraits.h>
12#include <aws/pcs/model/ListQueuesPaginationTraits.h>
13
14#include <memory>
15
16namespace Aws {
17namespace PCS {
18
19template <typename DerivedClient>
21 public:
27 request.AddUserAgentFeature(Aws::Client::UserAgentFeature::PAGINATOR);
29 Pagination::ListClustersPaginationTraits<DerivedClient>>{static_cast<DerivedClient*>(this),
30 request};
31 }
32
39 request.AddUserAgentFeature(Aws::Client::UserAgentFeature::PAGINATOR);
42 static_cast<DerivedClient*>(this), request};
43 }
44
50 request.AddUserAgentFeature(Aws::Client::UserAgentFeature::PAGINATOR);
52 Pagination::ListQueuesPaginationTraits<DerivedClient>>{static_cast<DerivedClient*>(this),
53 request};
54 }
55};
56} // namespace PCS
57} // namespace Aws
void AddUserAgentFeature(Aws::Client::UserAgentFeature feature) const
Aws::Utils::Pagination::Paginator< DerivedClient, Model::ListClustersRequest, Pagination::ListClustersPaginationTraits< DerivedClient > > ListClustersPaginator(const Model::ListClustersRequest &request)
Aws::Utils::Pagination::Paginator< DerivedClient, Model::ListComputeNodeGroupsRequest, Pagination::ListComputeNodeGroupsPaginationTraits< DerivedClient > > ListComputeNodeGroupsPaginator(const Model::ListComputeNodeGroupsRequest &request)
Aws::Utils::Pagination::Paginator< DerivedClient, Model::ListQueuesRequest, Pagination::ListQueuesPaginationTraits< DerivedClient > > ListQueuesPaginator(const Model::ListQueuesRequest &request)