Paginators#
Auto-generated documentation for Outposts type annotations stubs module types-boto3-outposts.
GetOutpostBillingInformationPaginator#
Type annotations and code completion for boto3.client("outposts").get_paginator("get_outpost_billing_information").
 boto3 documentation
# GetOutpostBillingInformationPaginator usage example
from boto3.session import Session
from types_boto3_outposts.paginator import GetOutpostBillingInformationPaginator
def get_get_outpost_billing_information_paginator() -> GetOutpostBillingInformationPaginator:
    return Session().client("outposts").get_paginator("get_outpost_billing_information")# GetOutpostBillingInformationPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_outposts.paginator import GetOutpostBillingInformationPaginator
session = Session()
client = Session().client("outposts")  # (1)
paginator: GetOutpostBillingInformationPaginator = client.get_paginator("get_outpost_billing_information")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: OutpostsClient
- paginator: GetOutpostBillingInformationPaginator
- item: PageIterator[GetOutpostBillingInformationOutputTypeDef]
paginate#
Type annotations and code completion for GetOutpostBillingInformationPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    OutpostIdentifier: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[GetOutpostBillingInformationOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[GetOutpostBillingInformationOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: GetOutpostBillingInformationInputPaginateTypeDef = {  # (1)
    "OutpostIdentifier": ...,
}
parent.paginate(**kwargs)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 types_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 types_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)- client: OutpostsClient
- paginator: GetOutpostInstanceTypesPaginator
- item: PageIterator[GetOutpostInstanceTypesOutputTypeDef]
paginate#
Type annotations and code completion for GetOutpostInstanceTypesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    OutpostId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[GetOutpostInstanceTypesOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[GetOutpostInstanceTypesOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: GetOutpostInstanceTypesInputPaginateTypeDef = {  # (1)
    "OutpostId": ...,
}
parent.paginate(**kwargs)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 types_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 types_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)- client: OutpostsClient
- paginator: GetOutpostSupportedInstanceTypesPaginator
- item: PageIterator[GetOutpostSupportedInstanceTypesOutputTypeDef]
paginate#
Type annotations and code completion for GetOutpostSupportedInstanceTypesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    OutpostIdentifier: str,
    OrderId: str = ...,
    AssetId: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[GetOutpostSupportedInstanceTypesOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[GetOutpostSupportedInstanceTypesOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: GetOutpostSupportedInstanceTypesInputPaginateTypeDef = {  # (1)
    "OutpostIdentifier": ...,
}
parent.paginate(**kwargs)ListAssetInstancesPaginator#
Type annotations and code completion for boto3.client("outposts").get_paginator("list_asset_instances").
 boto3 documentation
# ListAssetInstancesPaginator usage example
from boto3.session import Session
from types_boto3_outposts.paginator import ListAssetInstancesPaginator
def get_list_asset_instances_paginator() -> ListAssetInstancesPaginator:
    return Session().client("outposts").get_paginator("list_asset_instances")# ListAssetInstancesPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_outposts.paginator import ListAssetInstancesPaginator
session = Session()
client = Session().client("outposts")  # (1)
paginator: ListAssetInstancesPaginator = client.get_paginator("list_asset_instances")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: OutpostsClient
- paginator: ListAssetInstancesPaginator
- item: PageIterator[ListAssetInstancesOutputTypeDef]
paginate#
Type annotations and code completion for ListAssetInstancesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    OutpostIdentifier: str,
    AssetIdFilter: Sequence[str] = ...,
    InstanceTypeFilter: Sequence[str] = ...,
    AccountIdFilter: Sequence[str] = ...,
    AwsServiceFilter: Sequence[AWSServiceNameType] = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> botocore.paginate.PageIterator[ListAssetInstancesOutputTypeDef]:  # (3)
    ...- See Sequence[AWSServiceNameType]
- See PaginatorConfigTypeDef
- See PageIterator[ListAssetInstancesOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListAssetInstancesInputPaginateTypeDef = {  # (1)
    "OutpostIdentifier": ...,
}
parent.paginate(**kwargs)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 types_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 types_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)- client: OutpostsClient
- paginator: ListAssetsPaginator
- item: PageIterator[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)
) -> botocore.paginate.PageIterator[ListAssetsOutputTypeDef]:  # (3)
    ...- See Sequence[AssetStateType]
- See PaginatorConfigTypeDef
- See PageIterator[ListAssetsOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListAssetsInputPaginateTypeDef = {  # (1)
    "OutpostIdentifier": ...,
}
parent.paginate(**kwargs)ListBlockingInstancesForCapacityTaskPaginator#
Type annotations and code completion for boto3.client("outposts").get_paginator("list_blocking_instances_for_capacity_task").
 boto3 documentation
# ListBlockingInstancesForCapacityTaskPaginator usage example
from boto3.session import Session
from types_boto3_outposts.paginator import ListBlockingInstancesForCapacityTaskPaginator
def get_list_blocking_instances_for_capacity_task_paginator() -> ListBlockingInstancesForCapacityTaskPaginator:
    return Session().client("outposts").get_paginator("list_blocking_instances_for_capacity_task")# ListBlockingInstancesForCapacityTaskPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_outposts.paginator import ListBlockingInstancesForCapacityTaskPaginator
session = Session()
client = Session().client("outposts")  # (1)
paginator: ListBlockingInstancesForCapacityTaskPaginator = client.get_paginator("list_blocking_instances_for_capacity_task")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: OutpostsClient
- paginator: ListBlockingInstancesForCapacityTaskPaginator
- item: PageIterator[ListBlockingInstancesForCapacityTaskOutputTypeDef]
paginate#
Type annotations and code completion for ListBlockingInstancesForCapacityTaskPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    OutpostIdentifier: str,
    CapacityTaskId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListBlockingInstancesForCapacityTaskOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListBlockingInstancesForCapacityTaskOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListBlockingInstancesForCapacityTaskInputPaginateTypeDef = {  # (1)
    "OutpostIdentifier": ...,
    "CapacityTaskId": ...,
}
parent.paginate(**kwargs)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 types_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 types_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)- client: OutpostsClient
- paginator: ListCapacityTasksPaginator
- item: PageIterator[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)
) -> botocore.paginate.PageIterator[ListCapacityTasksOutputTypeDef]:  # (3)
    ...- See Sequence[CapacityTaskStatusType]
- See PaginatorConfigTypeDef
- See PageIterator[ListCapacityTasksOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListCapacityTasksInputPaginateTypeDef = {  # (1)
    "OutpostIdentifierFilter": ...,
}
parent.paginate(**kwargs)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 types_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 types_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)- client: OutpostsClient
- paginator: ListCatalogItemsPaginator
- item: PageIterator[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)
) -> botocore.paginate.PageIterator[ListCatalogItemsOutputTypeDef]:  # (4)
    ...- See Sequence[CatalogItemClassType]
- See Sequence[SupportedStorageEnumType]
- See PaginatorConfigTypeDef
- See PageIterator[ListCatalogItemsOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListCatalogItemsInputPaginateTypeDef = {  # (1)
    "ItemClassFilter": ...,
}
parent.paginate(**kwargs)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 types_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 types_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)- client: OutpostsClient
- paginator: ListOrdersPaginator
- item: PageIterator[ListOrdersOutputTypeDef]
paginate#
Type annotations and code completion for ListOrdersPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    OutpostIdentifierFilter: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListOrdersOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListOrdersOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListOrdersInputPaginateTypeDef = {  # (1)
    "OutpostIdentifierFilter": ...,
}
parent.paginate(**kwargs)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 types_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 types_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)- client: OutpostsClient
- paginator: ListOutpostsPaginator
- item: PageIterator[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)
) -> botocore.paginate.PageIterator[ListOutpostsOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListOutpostsOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListOutpostsInputPaginateTypeDef = {  # (1)
    "LifeCycleStatusFilter": ...,
}
parent.paginate(**kwargs)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 types_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 types_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)- client: OutpostsClient
- paginator: ListSitesPaginator
- item: PageIterator[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)
) -> botocore.paginate.PageIterator[ListSitesOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListSitesOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListSitesInputPaginateTypeDef = {  # (1)
    "OperatingAddressCountryCodeFilter": ...,
}
parent.paginate(**kwargs)