Skip to content

Paginators#

Index > CodeGuruProfiler > Paginators

Auto-generated documentation for CodeGuruProfiler type annotations stubs module mypy-boto3-codeguruprofiler.

ListProfileTimesPaginator#

Type annotations and code completion for boto3.client("codeguruprofiler").get_paginator("list_profile_times"). boto3 documentation

# ListProfileTimesPaginator usage example

from boto3.session import Session

from mypy_boto3_codeguruprofiler.paginator import ListProfileTimesPaginator

def get_list_profile_times_paginator() -> ListProfileTimesPaginator:
    return Session().client("codeguruprofiler").get_paginator("list_profile_times")
# ListProfileTimesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codeguruprofiler.paginator import ListProfileTimesPaginator

session = Session()

client = Session().client("codeguruprofiler")  # (1)
paginator: ListProfileTimesPaginator = client.get_paginator("list_profile_times")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeGuruProfilerClient
  2. paginator: ListProfileTimesPaginator
  3. item: ListProfileTimesResponseTypeDef

paginate#

Type annotations and code completion for ListProfileTimesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    endTime: Union[datetime, str],
    period: AggregationPeriodType,  # (1)
    profilingGroupName: str,
    startTime: Union[datetime, str],
    orderBy: OrderByType = ...,  # (2)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> _PageIterator[ListProfileTimesResponseTypeDef]:  # (4)
    ...
  1. See AggregationPeriodType
  2. See OrderByType
  3. See PaginatorConfigTypeDef
  4. See ListProfileTimesResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListProfileTimesRequestListProfileTimesPaginateTypeDef = {  # (1)
    "endTime": ...,
    "period": ...,
    "profilingGroupName": ...,
    "startTime": ...,
}

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