Skip to content

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)
  1. client: TimestreamInfluxDBClient
  2. paginator: ListDbClustersPaginator
  3. item: ListDbClustersOutputTypeDef

paginate#

Type annotations and code completion for ListDbClustersPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> PageIterator[ListDbClustersOutputTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListDbClustersOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListDbClustersInputPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

parent.paginate(**kwargs)
  1. See ListDbClustersInputPaginateTypeDef

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)
  1. client: TimestreamInfluxDBClient
  2. paginator: ListDbInstancesForClusterPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListDbInstancesForClusterOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListDbInstancesForClusterInputPaginateTypeDef = {  # (1)
    "dbClusterId": ...,
}

parent.paginate(**kwargs)
  1. See ListDbInstancesForClusterInputPaginateTypeDef

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)
  1. client: TimestreamInfluxDBClient
  2. paginator: ListDbInstancesPaginator
  3. item: ListDbInstancesOutputTypeDef

paginate#

Type annotations and code completion for ListDbInstancesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> PageIterator[ListDbInstancesOutputTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListDbInstancesOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListDbInstancesInputPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

parent.paginate(**kwargs)
  1. See ListDbInstancesInputPaginateTypeDef

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)
  1. client: TimestreamInfluxDBClient
  2. paginator: ListDbParameterGroupsPaginator
  3. item: ListDbParameterGroupsOutputTypeDef

paginate#

Type annotations and code completion for ListDbParameterGroupsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> PageIterator[ListDbParameterGroupsOutputTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListDbParameterGroupsOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListDbParameterGroupsInputPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

parent.paginate(**kwargs)
  1. See ListDbParameterGroupsInputPaginateTypeDef