AWS SDK for C++

AWS SDK for C++ Version 1.11.788

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
19class PCSClient;
20
21template <typename DerivedClient>
23 public:
29 request.AddUserAgentFeature(Aws::Client::UserAgentFeature::PAGINATOR);
31 Pagination::ListClustersPaginationTraits<DerivedClient>>{static_cast<DerivedClient*>(this),
32 request};
33 }
34
41 request.AddUserAgentFeature(Aws::Client::UserAgentFeature::PAGINATOR);
44 static_cast<DerivedClient*>(this), request};
45 }
46
52 request.AddUserAgentFeature(Aws::Client::UserAgentFeature::PAGINATOR);
54 Pagination::ListQueuesPaginationTraits<DerivedClient>>{static_cast<DerivedClient*>(this),
55 request};
56 }
57};
58} // namespace PCS
59} // 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)