Skip to content

Paginators#

Index > Outposts > Paginators

Auto-generated documentation for Outposts type annotations stubs module types-aiobotocore-outposts.

GetOutpostInstanceTypesPaginator#

Type annotations and code completion for session.create_client("outposts").get_paginator("get_outpost_instance_types"). boto3 documentation

# GetOutpostInstanceTypesPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_outposts.paginator import GetOutpostInstanceTypesPaginator

session = get_session()
async with session.create_client("outposts") as client:  # (1)
    paginator: GetOutpostInstanceTypesPaginator = client.get_paginator("get_outpost_instance_types")  # (2)
    async for item in paginator.paginate(...):
        item: GetOutpostInstanceTypesOutputTypeDef
        print(item)  # (3)
  1. client: OutpostsClient
  2. paginator: GetOutpostInstanceTypesPaginator
  3. item: GetOutpostInstanceTypesOutputTypeDef

paginate#

Type annotations and code completion for GetOutpostInstanceTypesPaginator.paginate method.

# paginate method definition

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

kwargs: GetOutpostInstanceTypesInputGetOutpostInstanceTypesPaginateTypeDef = {  # (1)
    "OutpostId": ...,
}

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

ListAssetsPaginator#

Type annotations and code completion for session.create_client("outposts").get_paginator("list_assets"). boto3 documentation

# ListAssetsPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_outposts.paginator import ListAssetsPaginator

session = get_session()
async with session.create_client("outposts") as client:  # (1)
    paginator: ListAssetsPaginator = client.get_paginator("list_assets")  # (2)
    async for item in paginator.paginate(...):
        item: ListAssetsOutputTypeDef
        print(item)  # (3)
  1. client: OutpostsClient
  2. paginator: ListAssetsPaginator
  3. item: ListAssetsOutputTypeDef

paginate#

Type annotations and code completion for ListAssetsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    OutpostIdentifier: str,
    HostIdFilter: Sequence[str] = ...,
    StatusFilter: Sequence[AssetStateType] = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> AsyncIterator[ListAssetsOutputTypeDef]:  # (3)
    ...
  1. See AssetStateType
  2. See PaginatorConfigTypeDef
  3. See ListAssetsOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListAssetsInputListAssetsPaginateTypeDef = {  # (1)
    "OutpostIdentifier": ...,
}

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

ListCatalogItemsPaginator#

Type annotations and code completion for session.create_client("outposts").get_paginator("list_catalog_items"). boto3 documentation

# ListCatalogItemsPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_outposts.paginator import ListCatalogItemsPaginator

session = get_session()
async with session.create_client("outposts") as client:  # (1)
    paginator: ListCatalogItemsPaginator = client.get_paginator("list_catalog_items")  # (2)
    async for item in paginator.paginate(...):
        item: ListCatalogItemsOutputTypeDef
        print(item)  # (3)
  1. client: OutpostsClient
  2. paginator: ListCatalogItemsPaginator
  3. item: ListCatalogItemsOutputTypeDef

paginate#

Type annotations and code completion for ListCatalogItemsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    ItemClassFilter: Sequence[CatalogItemClassType] = ...,  # (1)
    SupportedStorageFilter: Sequence[SupportedStorageEnumType] = ...,  # (2)
    EC2FamilyFilter: Sequence[str] = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> AsyncIterator[ListCatalogItemsOutputTypeDef]:  # (4)
    ...
  1. See CatalogItemClassType
  2. See SupportedStorageEnumType
  3. See PaginatorConfigTypeDef
  4. See ListCatalogItemsOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListCatalogItemsInputListCatalogItemsPaginateTypeDef = {  # (1)
    "ItemClassFilter": ...,
}

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

ListOrdersPaginator#

Type annotations and code completion for session.create_client("outposts").get_paginator("list_orders"). boto3 documentation

# ListOrdersPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_outposts.paginator import ListOrdersPaginator

session = get_session()
async with session.create_client("outposts") as client:  # (1)
    paginator: ListOrdersPaginator = client.get_paginator("list_orders")  # (2)
    async for item in paginator.paginate(...):
        item: ListOrdersOutputTypeDef
        print(item)  # (3)
  1. client: OutpostsClient
  2. paginator: ListOrdersPaginator
  3. item: ListOrdersOutputTypeDef

paginate#

Type annotations and code completion for ListOrdersPaginator.paginate method.

# paginate method definition

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

kwargs: ListOrdersInputListOrdersPaginateTypeDef = {  # (1)
    "OutpostIdentifierFilter": ...,
}

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

ListOutpostsPaginator#

Type annotations and code completion for session.create_client("outposts").get_paginator("list_outposts"). boto3 documentation

# ListOutpostsPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_outposts.paginator import ListOutpostsPaginator

session = get_session()
async with session.create_client("outposts") as client:  # (1)
    paginator: ListOutpostsPaginator = client.get_paginator("list_outposts")  # (2)
    async for item in paginator.paginate(...):
        item: ListOutpostsOutputTypeDef
        print(item)  # (3)
  1. client: OutpostsClient
  2. paginator: ListOutpostsPaginator
  3. item: ListOutpostsOutputTypeDef

paginate#

Type annotations and code completion for ListOutpostsPaginator.paginate method.

# paginate method definition

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

kwargs: ListOutpostsInputListOutpostsPaginateTypeDef = {  # (1)
    "LifeCycleStatusFilter": ...,
}

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

ListSitesPaginator#

Type annotations and code completion for session.create_client("outposts").get_paginator("list_sites"). boto3 documentation

# ListSitesPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_outposts.paginator import ListSitesPaginator

session = get_session()
async with session.create_client("outposts") as client:  # (1)
    paginator: ListSitesPaginator = client.get_paginator("list_sites")  # (2)
    async for item in paginator.paginate(...):
        item: ListSitesOutputTypeDef
        print(item)  # (3)
  1. client: OutpostsClient
  2. paginator: ListSitesPaginator
  3. item: ListSitesOutputTypeDef

paginate#

Type annotations and code completion for ListSitesPaginator.paginate method.

# paginate method definition

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

kwargs: ListSitesInputListSitesPaginateTypeDef = {  # (1)
    "OperatingAddressCountryCodeFilter": ...,
}

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