Skip to content

Paginators#

Index > Outposts > Paginators

Auto-generated documentation for Outposts type annotations stubs module mypy-boto3-outposts.

GetOutpostInstanceTypesPaginator#

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

# GetOutpostInstanceTypesPaginator usage example

from boto3.session import Session

from mypy_boto3_outposts.paginator import GetOutpostInstanceTypesPaginator

def get_get_outpost_instance_types_paginator() -> GetOutpostInstanceTypesPaginator:
    return Session().client("outposts").get_paginator("get_outpost_instance_types")
# GetOutpostInstanceTypesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_outposts.paginator import GetOutpostInstanceTypesPaginator

session = Session()

client = Session().client("outposts")  # (1)
paginator: GetOutpostInstanceTypesPaginator = client.get_paginator("get_outpost_instance_types")  # (2)
for item in paginator.paginate(...):
    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)
) -> _PageIterator[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

GetOutpostSupportedInstanceTypesPaginator#

Type annotations and code completion for boto3.client("outposts").get_paginator("get_outpost_supported_instance_types"). boto3 documentation

# GetOutpostSupportedInstanceTypesPaginator usage example

from boto3.session import Session

from mypy_boto3_outposts.paginator import GetOutpostSupportedInstanceTypesPaginator

def get_get_outpost_supported_instance_types_paginator() -> GetOutpostSupportedInstanceTypesPaginator:
    return Session().client("outposts").get_paginator("get_outpost_supported_instance_types")
# GetOutpostSupportedInstanceTypesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_outposts.paginator import GetOutpostSupportedInstanceTypesPaginator

session = Session()

client = Session().client("outposts")  # (1)
paginator: GetOutpostSupportedInstanceTypesPaginator = client.get_paginator("get_outpost_supported_instance_types")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: OutpostsClient
  2. paginator: GetOutpostSupportedInstanceTypesPaginator
  3. item: GetOutpostSupportedInstanceTypesOutputTypeDef

paginate#

Type annotations and code completion for GetOutpostSupportedInstanceTypesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    OutpostIdentifier: str,
    OrderId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[GetOutpostSupportedInstanceTypesOutputTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetOutpostSupportedInstanceTypesOutputTypeDef
# paginate method usage example with argument unpacking

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

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

ListAssetsPaginator#

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

# ListAssetsPaginator usage example

from boto3.session import Session

from mypy_boto3_outposts.paginator import ListAssetsPaginator

def get_list_assets_paginator() -> ListAssetsPaginator:
    return Session().client("outposts").get_paginator("list_assets")
# ListAssetsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_outposts.paginator import ListAssetsPaginator

session = Session()

client = Session().client("outposts")  # (1)
paginator: ListAssetsPaginator = client.get_paginator("list_assets")  # (2)
for item in paginator.paginate(...):
    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)
) -> _PageIterator[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

ListCapacityTasksPaginator#

Type annotations and code completion for boto3.client("outposts").get_paginator("list_capacity_tasks"). boto3 documentation

# ListCapacityTasksPaginator usage example

from boto3.session import Session

from mypy_boto3_outposts.paginator import ListCapacityTasksPaginator

def get_list_capacity_tasks_paginator() -> ListCapacityTasksPaginator:
    return Session().client("outposts").get_paginator("list_capacity_tasks")
# ListCapacityTasksPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_outposts.paginator import ListCapacityTasksPaginator

session = Session()

client = Session().client("outposts")  # (1)
paginator: ListCapacityTasksPaginator = client.get_paginator("list_capacity_tasks")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: OutpostsClient
  2. paginator: ListCapacityTasksPaginator
  3. item: ListCapacityTasksOutputTypeDef

paginate#

Type annotations and code completion for ListCapacityTasksPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    OutpostIdentifierFilter: str = ...,
    CapacityTaskStatusFilter: Sequence[CapacityTaskStatusType] = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> _PageIterator[ListCapacityTasksOutputTypeDef]:  # (3)
    ...
  1. See CapacityTaskStatusType
  2. See PaginatorConfigTypeDef
  3. See ListCapacityTasksOutputTypeDef
# paginate method usage example with argument unpacking

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

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

ListCatalogItemsPaginator#

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

# ListCatalogItemsPaginator usage example

from boto3.session import Session

from mypy_boto3_outposts.paginator import ListCatalogItemsPaginator

def get_list_catalog_items_paginator() -> ListCatalogItemsPaginator:
    return Session().client("outposts").get_paginator("list_catalog_items")
# ListCatalogItemsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_outposts.paginator import ListCatalogItemsPaginator

session = Session()

client = Session().client("outposts")  # (1)
paginator: ListCatalogItemsPaginator = client.get_paginator("list_catalog_items")  # (2)
for item in paginator.paginate(...):
    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)
) -> _PageIterator[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 boto3.client("outposts").get_paginator("list_orders"). boto3 documentation

# ListOrdersPaginator usage example

from boto3.session import Session

from mypy_boto3_outposts.paginator import ListOrdersPaginator

def get_list_orders_paginator() -> ListOrdersPaginator:
    return Session().client("outposts").get_paginator("list_orders")
# ListOrdersPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_outposts.paginator import ListOrdersPaginator

session = Session()

client = Session().client("outposts")  # (1)
paginator: ListOrdersPaginator = client.get_paginator("list_orders")  # (2)
for item in paginator.paginate(...):
    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)
) -> _PageIterator[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 boto3.client("outposts").get_paginator("list_outposts"). boto3 documentation

# ListOutpostsPaginator usage example

from boto3.session import Session

from mypy_boto3_outposts.paginator import ListOutpostsPaginator

def get_list_outposts_paginator() -> ListOutpostsPaginator:
    return Session().client("outposts").get_paginator("list_outposts")
# ListOutpostsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_outposts.paginator import ListOutpostsPaginator

session = Session()

client = Session().client("outposts")  # (1)
paginator: ListOutpostsPaginator = client.get_paginator("list_outposts")  # (2)
for item in paginator.paginate(...):
    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)
) -> _PageIterator[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 boto3.client("outposts").get_paginator("list_sites"). boto3 documentation

# ListSitesPaginator usage example

from boto3.session import Session

from mypy_boto3_outposts.paginator import ListSitesPaginator

def get_list_sites_paginator() -> ListSitesPaginator:
    return Session().client("outposts").get_paginator("list_sites")
# ListSitesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_outposts.paginator import ListSitesPaginator

session = Session()

client = Session().client("outposts")  # (1)
paginator: ListSitesPaginator = client.get_paginator("list_sites")  # (2)
for item in paginator.paginate(...):
    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)
) -> _PageIterator[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