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)
- client: OutpostsClient
- paginator: GetOutpostInstanceTypesPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: GetOutpostInstanceTypesInputGetOutpostInstanceTypesPaginateTypeDef = { # (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 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)
- client: OutpostsClient
- paginator: GetOutpostSupportedInstanceTypesPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: GetOutpostSupportedInstanceTypesInputGetOutpostSupportedInstanceTypesPaginateTypeDef = { # (1)
"OutpostIdentifier": ...,
"OrderId": ...,
}
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 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)
- client: OutpostsClient
- paginator: ListAssetsPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListAssetsInputListAssetsPaginateTypeDef = { # (1)
"OutpostIdentifier": ...,
}
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 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)
- client: OutpostsClient
- paginator: ListCapacityTasksPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListCapacityTasksInputListCapacityTasksPaginateTypeDef = { # (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 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)
- client: OutpostsClient
- paginator: ListCatalogItemsPaginator
- 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)
...
- See CatalogItemClassType
- See SupportedStorageEnumType
- See PaginatorConfigTypeDef
- See ListCatalogItemsOutputTypeDef
# paginate method usage example with argument unpacking
kwargs: ListCatalogItemsInputListCatalogItemsPaginateTypeDef = { # (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 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)
- client: OutpostsClient
- paginator: ListOrdersPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListOrdersInputListOrdersPaginateTypeDef = { # (1)
"OutpostIdentifierFilter": ...,
}
parent.paginate(**kwargs)
ListOutpostsPaginator#
Type annotations and code completion for boto3.client("outposts").get_paginator("list_outposts")
.