Paginators#
Index > TimestreamInfluxDB > Paginators
Auto-generated documentation for TimestreamInfluxDB type annotations stubs module mypy-boto3-timestream-influxdb.
ListDbClustersPaginator#
Type annotations and code completion for boto3.client("timestream-influxdb").get_paginator("list_db_clusters")
.
boto3 documentation
# ListDbClustersPaginator usage example
from boto3.session import Session
from mypy_boto3_timestream_influxdb.paginator import ListDbClustersPaginator
def get_list_db_clusters_paginator() -> ListDbClustersPaginator:
return Session().client("timestream-influxdb").get_paginator("list_db_clusters")
# ListDbClustersPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_timestream_influxdb.paginator import ListDbClustersPaginator
session = Session()
client = Session().client("timestream-influxdb") # (1)
paginator: ListDbClustersPaginator = client.get_paginator("list_db_clusters") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: TimestreamInfluxDBClient
- paginator: ListDbClustersPaginator
- item: ListDbClustersOutputTypeDef
paginate#
Type annotations and code completion for ListDbClustersPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> PageIterator[ListDbClustersOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListDbClustersInputPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
ListDbInstancesForClusterPaginator#
Type annotations and code completion for boto3.client("timestream-influxdb").get_paginator("list_db_instances_for_cluster")
.
boto3 documentation
# ListDbInstancesForClusterPaginator usage example
from boto3.session import Session
from mypy_boto3_timestream_influxdb.paginator import ListDbInstancesForClusterPaginator
def get_list_db_instances_for_cluster_paginator() -> ListDbInstancesForClusterPaginator:
return Session().client("timestream-influxdb").get_paginator("list_db_instances_for_cluster")
# ListDbInstancesForClusterPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_timestream_influxdb.paginator import ListDbInstancesForClusterPaginator
session = Session()
client = Session().client("timestream-influxdb") # (1)
paginator: ListDbInstancesForClusterPaginator = client.get_paginator("list_db_instances_for_cluster") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: TimestreamInfluxDBClient
- paginator: ListDbInstancesForClusterPaginator
- item: ListDbInstancesForClusterOutputTypeDef
paginate#
Type annotations and code completion for ListDbInstancesForClusterPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
dbClusterId: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> PageIterator[ListDbInstancesForClusterOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListDbInstancesForClusterInputPaginateTypeDef = { # (1)
"dbClusterId": ...,
}
parent.paginate(**kwargs)
ListDbInstancesPaginator#
Type annotations and code completion for boto3.client("timestream-influxdb").get_paginator("list_db_instances")
.
boto3 documentation
# ListDbInstancesPaginator usage example
from boto3.session import Session
from mypy_boto3_timestream_influxdb.paginator import ListDbInstancesPaginator
def get_list_db_instances_paginator() -> ListDbInstancesPaginator:
return Session().client("timestream-influxdb").get_paginator("list_db_instances")
# ListDbInstancesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_timestream_influxdb.paginator import ListDbInstancesPaginator
session = Session()
client = Session().client("timestream-influxdb") # (1)
paginator: ListDbInstancesPaginator = client.get_paginator("list_db_instances") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: TimestreamInfluxDBClient
- paginator: ListDbInstancesPaginator
- item: ListDbInstancesOutputTypeDef
paginate#
Type annotations and code completion for ListDbInstancesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> PageIterator[ListDbInstancesOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListDbInstancesInputPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
ListDbParameterGroupsPaginator#
Type annotations and code completion for boto3.client("timestream-influxdb").get_paginator("list_db_parameter_groups")
.
boto3 documentation
# ListDbParameterGroupsPaginator usage example
from boto3.session import Session
from mypy_boto3_timestream_influxdb.paginator import ListDbParameterGroupsPaginator
def get_list_db_parameter_groups_paginator() -> ListDbParameterGroupsPaginator:
return Session().client("timestream-influxdb").get_paginator("list_db_parameter_groups")
# ListDbParameterGroupsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_timestream_influxdb.paginator import ListDbParameterGroupsPaginator
session = Session()
client = Session().client("timestream-influxdb") # (1)
paginator: ListDbParameterGroupsPaginator = client.get_paginator("list_db_parameter_groups") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: TimestreamInfluxDBClient
- paginator: ListDbParameterGroupsPaginator
- item: ListDbParameterGroupsOutputTypeDef
paginate#
Type annotations and code completion for ListDbParameterGroupsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> PageIterator[ListDbParameterGroupsOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListDbParameterGroupsInputPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)