Skip to content

Paginators

Index > ServiceQuotas > Paginators

Auto-generated documentation for ServiceQuotas type annotations stubs module mypy-boto3-service-quotas.

ListAWSDefaultServiceQuotasPaginator

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

Usage example
from boto3.session import Session

from mypy_boto3_service_quotas.paginator import ListAWSDefaultServiceQuotasPaginator

def get_list_aws_default_service_quotas_paginator() -> ListAWSDefaultServiceQuotasPaginator:
    return Session().client("service-quotas").get_paginator("list_aws_default_service_quotas")
Usage example
from boto3.session import Session

from mypy_boto3_service_quotas.paginator import ListAWSDefaultServiceQuotasPaginator

session = Session()

client = Session().client("service-quotas")  # (1)
paginator: ListAWSDefaultServiceQuotasPaginator = client.get_paginator("list_aws_default_service_quotas")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ServiceQuotasClient
  2. paginator: ListAWSDefaultServiceQuotasPaginator
  3. item: ListAWSDefaultServiceQuotasResponseTypeDef

paginate

Type annotations and code completion for ListAWSDefaultServiceQuotasPaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    ServiceCode: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListAWSDefaultServiceQuotasResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListAWSDefaultServiceQuotasResponseTypeDef
Usage example with kwargs
kwargs: ListAWSDefaultServiceQuotasRequestListAWSDefaultServiceQuotasPaginateTypeDef = {  # (1)
    "ServiceCode": ...,
}

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

ListRequestedServiceQuotaChangeHistoryPaginator

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

Usage example
from boto3.session import Session

from mypy_boto3_service_quotas.paginator import ListRequestedServiceQuotaChangeHistoryPaginator

def get_list_requested_service_quota_change_history_paginator() -> ListRequestedServiceQuotaChangeHistoryPaginator:
    return Session().client("service-quotas").get_paginator("list_requested_service_quota_change_history")
Usage example
from boto3.session import Session

from mypy_boto3_service_quotas.paginator import ListRequestedServiceQuotaChangeHistoryPaginator

session = Session()

client = Session().client("service-quotas")  # (1)
paginator: ListRequestedServiceQuotaChangeHistoryPaginator = client.get_paginator("list_requested_service_quota_change_history")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ServiceQuotasClient
  2. paginator: ListRequestedServiceQuotaChangeHistoryPaginator
  3. item: ListRequestedServiceQuotaChangeHistoryResponseTypeDef

paginate

Type annotations and code completion for ListRequestedServiceQuotaChangeHistoryPaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    ServiceCode: str = ...,
    Status: RequestStatusType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> _PageIterator[ListRequestedServiceQuotaChangeHistoryResponseTypeDef]:  # (3)
    ...
  1. See RequestStatusType
  2. See PaginatorConfigTypeDef
  3. See ListRequestedServiceQuotaChangeHistoryResponseTypeDef
Usage example with kwargs
kwargs: ListRequestedServiceQuotaChangeHistoryRequestListRequestedServiceQuotaChangeHistoryPaginateTypeDef = {  # (1)
    "ServiceCode": ...,
}

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

ListRequestedServiceQuotaChangeHistoryByQuotaPaginator

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

Usage example
from boto3.session import Session

from mypy_boto3_service_quotas.paginator import ListRequestedServiceQuotaChangeHistoryByQuotaPaginator

def get_list_requested_service_quota_change_history_by_quota_paginator() -> ListRequestedServiceQuotaChangeHistoryByQuotaPaginator:
    return Session().client("service-quotas").get_paginator("list_requested_service_quota_change_history_by_quota")
Usage example
from boto3.session import Session

from mypy_boto3_service_quotas.paginator import ListRequestedServiceQuotaChangeHistoryByQuotaPaginator

session = Session()

client = Session().client("service-quotas")  # (1)
paginator: ListRequestedServiceQuotaChangeHistoryByQuotaPaginator = client.get_paginator("list_requested_service_quota_change_history_by_quota")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ServiceQuotasClient
  2. paginator: ListRequestedServiceQuotaChangeHistoryByQuotaPaginator
  3. item: ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef

paginate

Type annotations and code completion for ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    ServiceCode: str,
    QuotaCode: str,
    Status: RequestStatusType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> _PageIterator[ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef]:  # (3)
    ...
  1. See RequestStatusType
  2. See PaginatorConfigTypeDef
  3. See ListRequestedServiceQuotaChangeHistoryByQuotaResponseTypeDef
Usage example with kwargs
kwargs: ListRequestedServiceQuotaChangeHistoryByQuotaRequestListRequestedServiceQuotaChangeHistoryByQuotaPaginateTypeDef = {  # (1)
    "ServiceCode": ...,
    "QuotaCode": ...,
}

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

ListServiceQuotaIncreaseRequestsInTemplatePaginator

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

Usage example
from boto3.session import Session

from mypy_boto3_service_quotas.paginator import ListServiceQuotaIncreaseRequestsInTemplatePaginator

def get_list_service_quota_increase_requests_in_template_paginator() -> ListServiceQuotaIncreaseRequestsInTemplatePaginator:
    return Session().client("service-quotas").get_paginator("list_service_quota_increase_requests_in_template")
Usage example
from boto3.session import Session

from mypy_boto3_service_quotas.paginator import ListServiceQuotaIncreaseRequestsInTemplatePaginator

session = Session()

client = Session().client("service-quotas")  # (1)
paginator: ListServiceQuotaIncreaseRequestsInTemplatePaginator = client.get_paginator("list_service_quota_increase_requests_in_template")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ServiceQuotasClient
  2. paginator: ListServiceQuotaIncreaseRequestsInTemplatePaginator
  3. item: ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef

paginate

Type annotations and code completion for ListServiceQuotaIncreaseRequestsInTemplatePaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    ServiceCode: str = ...,
    AwsRegion: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListServiceQuotaIncreaseRequestsInTemplateResponseTypeDef
Usage example with kwargs
kwargs: ListServiceQuotaIncreaseRequestsInTemplateRequestListServiceQuotaIncreaseRequestsInTemplatePaginateTypeDef = {  # (1)
    "ServiceCode": ...,
}

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

ListServiceQuotasPaginator

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

Usage example
from boto3.session import Session

from mypy_boto3_service_quotas.paginator import ListServiceQuotasPaginator

def get_list_service_quotas_paginator() -> ListServiceQuotasPaginator:
    return Session().client("service-quotas").get_paginator("list_service_quotas")
Usage example
from boto3.session import Session

from mypy_boto3_service_quotas.paginator import ListServiceQuotasPaginator

session = Session()

client = Session().client("service-quotas")  # (1)
paginator: ListServiceQuotasPaginator = client.get_paginator("list_service_quotas")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ServiceQuotasClient
  2. paginator: ListServiceQuotasPaginator
  3. item: ListServiceQuotasResponseTypeDef

paginate

Type annotations and code completion for ListServiceQuotasPaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    ServiceCode: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListServiceQuotasResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListServiceQuotasResponseTypeDef
Usage example with kwargs
kwargs: ListServiceQuotasRequestListServiceQuotasPaginateTypeDef = {  # (1)
    "ServiceCode": ...,
}

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

ListServicesPaginator

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

Usage example
from boto3.session import Session

from mypy_boto3_service_quotas.paginator import ListServicesPaginator

def get_list_services_paginator() -> ListServicesPaginator:
    return Session().client("service-quotas").get_paginator("list_services")
Usage example
from boto3.session import Session

from mypy_boto3_service_quotas.paginator import ListServicesPaginator

session = Session()

client = Session().client("service-quotas")  # (1)
paginator: ListServicesPaginator = client.get_paginator("list_services")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ServiceQuotasClient
  2. paginator: ListServicesPaginator
  3. item: ListServicesResponseTypeDef

paginate

Type annotations and code completion for ListServicesPaginator.paginate method.

Method definition
def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListServicesResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListServicesResponseTypeDef
Usage example with kwargs
kwargs: ListServicesRequestListServicesPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

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