Skip to content

Paginators#

Index > ServiceQuotas > Paginators

Auto-generated documentation for ServiceQuotas type annotations stubs module types-aiobotocore-service-quotas.

ListAWSDefaultServiceQuotasPaginator#

Type annotations and code completion for session.create_client("service-quotas").get_paginator("list_aws_default_service_quotas"). boto3 documentation

# ListAWSDefaultServiceQuotasPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_service_quotas.paginator import ListAWSDefaultServiceQuotasPaginator

session = get_session()
async with session.create_client("service-quotas") as client:  # (1)
    paginator: ListAWSDefaultServiceQuotasPaginator = client.get_paginator("list_aws_default_service_quotas")  # (2)
    async for item in paginator.paginate(...):
        item: ListAWSDefaultServiceQuotasResponseTypeDef
        print(item)  # (3)
  1. client: ServiceQuotasClient
  2. paginator: ListAWSDefaultServiceQuotasPaginator
  3. item: ListAWSDefaultServiceQuotasResponseTypeDef

paginate#

Type annotations and code completion for ListAWSDefaultServiceQuotasPaginator.paginate method.

# paginate method definition

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

kwargs: ListAWSDefaultServiceQuotasRequestListAWSDefaultServiceQuotasPaginateTypeDef = {  # (1)
    "ServiceCode": ...,
}

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

ListRequestedServiceQuotaChangeHistoryPaginator#

Type annotations and code completion for session.create_client("service-quotas").get_paginator("list_requested_service_quota_change_history"). boto3 documentation

# ListRequestedServiceQuotaChangeHistoryPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_service_quotas.paginator import ListRequestedServiceQuotaChangeHistoryPaginator

session = get_session()
async with session.create_client("service-quotas") as client:  # (1)
    paginator: ListRequestedServiceQuotaChangeHistoryPaginator = client.get_paginator("list_requested_service_quota_change_history")  # (2)
    async for item in paginator.paginate(...):
        item: ListRequestedServiceQuotaChangeHistoryResponseTypeDef
        print(item)  # (3)
  1. client: ServiceQuotasClient
  2. paginator: ListRequestedServiceQuotaChangeHistoryPaginator
  3. item: ListRequestedServiceQuotaChangeHistoryResponseTypeDef

paginate#

Type annotations and code completion for ListRequestedServiceQuotaChangeHistoryPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    ServiceCode: str = ...,
    Status: RequestStatusType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> AsyncIterator[ListRequestedServiceQuotaChangeHistoryResponseTypeDef]:  # (3)
    ...
  1. See RequestStatusType
  2. See PaginatorConfigTypeDef
  3. See ListRequestedServiceQuotaChangeHistoryResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListRequestedServiceQuotaChangeHistoryRequestListRequestedServiceQuotaChangeHistoryPaginateTypeDef = {  # (1)
    "ServiceCode": ...,
}

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

ListRequestedServiceQuotaChangeHistoryByQuotaPaginator#

Type annotations and code completion for session.create_client("service-quotas").get_paginator("list_requested_service_quota_change_history_by_quota"). boto3 documentation

# ListRequestedServiceQuotaChangeHistoryByQuotaPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_service_quotas.paginator import ListRequestedServiceQuotaChangeHistoryByQuotaPaginator

session = get_session()
async with session.create_client("service-quotas") as client:  # (1)
    paginator: ListRequestedServiceQuotaChangeHistoryByQuotaPaginator = client.get_paginator("list_requested_service_quota_change_history_by_quota")  # (2)
    async for item in paginator.paginate(...):
        item: ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef
        print(item)  # (3)
  1. client: ServiceQuotasClient
  2. paginator: ListRequestedServiceQuotaChangeHistoryByQuotaPaginator
  3. item: ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef

paginate#

Type annotations and code completion for ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    ServiceCode: str,
    QuotaCode: str,
    Status: RequestStatusType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> AsyncIterator[ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef]:  # (3)
    ...
  1. See RequestStatusType
  2. See PaginatorConfigTypeDef
  3. See ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListRequestedServiceQuotaChangeHistoryByQuotaRequestListRequestedServiceQuotaChangeHistoryByQuotaPaginateTypeDef = {  # (1)
    "ServiceCode": ...,
    "QuotaCode": ...,
}

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

ListServiceQuotaIncreaseRequestsInTemplatePaginator#

Type annotations and code completion for session.create_client("service-quotas").get_paginator("list_service_quota_increase_requests_in_template"). boto3 documentation

# ListServiceQuotaIncreaseRequestsInTemplatePaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_service_quotas.paginator import ListServiceQuotaIncreaseRequestsInTemplatePaginator

session = get_session()
async with session.create_client("service-quotas") as client:  # (1)
    paginator: ListServiceQuotaIncreaseRequestsInTemplatePaginator = client.get_paginator("list_service_quota_increase_requests_in_template")  # (2)
    async for item in paginator.paginate(...):
        item: ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef
        print(item)  # (3)
  1. client: ServiceQuotasClient
  2. paginator: ListServiceQuotaIncreaseRequestsInTemplatePaginator
  3. item: ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef

paginate#

Type annotations and code completion for ListServiceQuotaIncreaseRequestsInTemplatePaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    ServiceCode: str = ...,
    AwsRegion: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> AsyncIterator[ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListServiceQuotaIncreaseRequestsInTemplateRequestListServiceQuotaIncreaseRequestsInTemplatePaginateTypeDef = {  # (1)
    "ServiceCode": ...,
}

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

ListServiceQuotasPaginator#

Type annotations and code completion for session.create_client("service-quotas").get_paginator("list_service_quotas"). boto3 documentation

# ListServiceQuotasPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_service_quotas.paginator import ListServiceQuotasPaginator

session = get_session()
async with session.create_client("service-quotas") as client:  # (1)
    paginator: ListServiceQuotasPaginator = client.get_paginator("list_service_quotas")  # (2)
    async for item in paginator.paginate(...):
        item: ListServiceQuotasResponseTypeDef
        print(item)  # (3)
  1. client: ServiceQuotasClient
  2. paginator: ListServiceQuotasPaginator
  3. item: ListServiceQuotasResponseTypeDef

paginate#

Type annotations and code completion for ListServiceQuotasPaginator.paginate method.

# paginate method definition

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

kwargs: ListServiceQuotasRequestListServiceQuotasPaginateTypeDef = {  # (1)
    "ServiceCode": ...,
}

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

ListServicesPaginator#

Type annotations and code completion for session.create_client("service-quotas").get_paginator("list_services"). boto3 documentation

# ListServicesPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_service_quotas.paginator import ListServicesPaginator

session = get_session()
async with session.create_client("service-quotas") as client:  # (1)
    paginator: ListServicesPaginator = client.get_paginator("list_services")  # (2)
    async for item in paginator.paginate(...):
        item: ListServicesResponseTypeDef
        print(item)  # (3)
  1. client: ServiceQuotasClient
  2. paginator: ListServicesPaginator
  3. item: ListServicesResponseTypeDef

paginate#

Type annotations and code completion for ListServicesPaginator.paginate method.

# paginate method definition

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

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

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