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": ...,
}
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 mypy_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 mypy_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: 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)
) -> _PageIterator[ListAssetInstancesOutputTypeDef]: # (3)
...
# paginate method usage example with argument unpacking
kwargs: ListAssetInstancesInputListAssetInstancesPaginateTypeDef = { # (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 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)
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 mypy_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 mypy_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: ListBlockingInstancesForCapacityTaskOutputTypeDef
paginate#
Type annotations and code completion for ListBlockingInstancesForCapacityTaskPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
OutpostIdentifier: str,
CapacityTaskId: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListBlockingInstancesForCapacityTaskOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListBlockingInstancesForCapacityTaskInputListBlockingInstancesForCapacityTaskPaginateTypeDef = { # (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 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")
.
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)
- client: OutpostsClient
- paginator: ListOutpostsPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListOutpostsInputListOutpostsPaginateTypeDef = { # (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 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)
- client: OutpostsClient
- paginator: ListSitesPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListSitesInputListSitesPaginateTypeDef = { # (1)
"OperatingAddressCountryCodeFilter": ...,
}
parent.paginate(**kwargs)