AWS SDK for C++

AWS SDK for C++ Version 1.11.785

Loading...
Searching...
No Matches
S3TablesPaginationBase.h
1
6#pragma once
7
8#include <aws/core/client/UserAgent.h>
9#include <aws/core/utils/pagination/Paginator.h>
10#include <aws/s3tables/model/ListNamespacesPaginationTraits.h>
11#include <aws/s3tables/model/ListTableBucketsPaginationTraits.h>
12#include <aws/s3tables/model/ListTablesPaginationTraits.h>
13
14#include <memory>
15
16namespace Aws {
17namespace S3Tables {
18
19class S3TablesClient;
20
21template <typename DerivedClient>
23 public:
29 request.AddUserAgentFeature(Aws::Client::UserAgentFeature::PAGINATOR);
31 Pagination::ListNamespacesPaginationTraits<DerivedClient>>{static_cast<DerivedClient*>(this),
32 request};
33 }
34
41 request.AddUserAgentFeature(Aws::Client::UserAgentFeature::PAGINATOR);
43 Pagination::ListTableBucketsPaginationTraits<DerivedClient>>{static_cast<DerivedClient*>(this),
44 request};
45 }
46
52 request.AddUserAgentFeature(Aws::Client::UserAgentFeature::PAGINATOR);
54 Pagination::ListTablesPaginationTraits<DerivedClient>>{static_cast<DerivedClient*>(this),
55 request};
56 }
57};
58} // namespace S3Tables
59} // namespace Aws
void AddUserAgentFeature(Aws::Client::UserAgentFeature feature) const
Aws::Utils::Pagination::Paginator< DerivedClient, Model::ListTableBucketsRequest, Pagination::ListTableBucketsPaginationTraits< DerivedClient > > ListTableBucketsPaginator(const Model::ListTableBucketsRequest &request)
Aws::Utils::Pagination::Paginator< DerivedClient, Model::ListTablesRequest, Pagination::ListTablesPaginationTraits< DerivedClient > > ListTablesPaginator(const Model::ListTablesRequest &request)
Aws::Utils::Pagination::Paginator< DerivedClient, Model::ListNamespacesRequest, Pagination::ListNamespacesPaginationTraits< DerivedClient > > ListNamespacesPaginator(const Model::ListNamespacesRequest &request)