Paginators#
Index > SupplyChain > Paginators
Auto-generated documentation for SupplyChain type annotations stubs module types-boto3-supplychain.
ListDataIntegrationEventsPaginator#
Type annotations and code completion for boto3.client("supplychain").get_paginator("list_data_integration_events").
 boto3 documentation
# ListDataIntegrationEventsPaginator usage example
from boto3.session import Session
from types_boto3_supplychain.paginator import ListDataIntegrationEventsPaginator
def get_list_data_integration_events_paginator() -> ListDataIntegrationEventsPaginator:
    return Session().client("supplychain").get_paginator("list_data_integration_events")# ListDataIntegrationEventsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_supplychain.paginator import ListDataIntegrationEventsPaginator
session = Session()
client = Session().client("supplychain")  # (1)
paginator: ListDataIntegrationEventsPaginator = client.get_paginator("list_data_integration_events")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: SupplyChainClient
- paginator: ListDataIntegrationEventsPaginator
- item: PageIterator[ListDataIntegrationEventsResponseTypeDef]
paginate#
Type annotations and code completion for ListDataIntegrationEventsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    instanceId: str,
    eventType: DataIntegrationEventTypeType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> botocore.paginate.PageIterator[ListDataIntegrationEventsResponseTypeDef]:  # (3)
    ...- See DataIntegrationEventTypeType
- See PaginatorConfigTypeDef
- See PageIterator[ListDataIntegrationEventsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListDataIntegrationEventsRequestPaginateTypeDef = {  # (1)
    "instanceId": ...,
}
parent.paginate(**kwargs)ListDataIntegrationFlowExecutionsPaginator#
Type annotations and code completion for boto3.client("supplychain").get_paginator("list_data_integration_flow_executions").
 boto3 documentation
# ListDataIntegrationFlowExecutionsPaginator usage example
from boto3.session import Session
from types_boto3_supplychain.paginator import ListDataIntegrationFlowExecutionsPaginator
def get_list_data_integration_flow_executions_paginator() -> ListDataIntegrationFlowExecutionsPaginator:
    return Session().client("supplychain").get_paginator("list_data_integration_flow_executions")# ListDataIntegrationFlowExecutionsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_supplychain.paginator import ListDataIntegrationFlowExecutionsPaginator
session = Session()
client = Session().client("supplychain")  # (1)
paginator: ListDataIntegrationFlowExecutionsPaginator = client.get_paginator("list_data_integration_flow_executions")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: SupplyChainClient
- paginator: ListDataIntegrationFlowExecutionsPaginator
- item: PageIterator[ListDataIntegrationFlowExecutionsResponseTypeDef]
paginate#
Type annotations and code completion for ListDataIntegrationFlowExecutionsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    instanceId: str,
    flowName: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListDataIntegrationFlowExecutionsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListDataIntegrationFlowExecutionsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListDataIntegrationFlowExecutionsRequestPaginateTypeDef = {  # (1)
    "instanceId": ...,
    "flowName": ...,
}
parent.paginate(**kwargs)ListDataIntegrationFlowsPaginator#
Type annotations and code completion for boto3.client("supplychain").get_paginator("list_data_integration_flows").
 boto3 documentation
# ListDataIntegrationFlowsPaginator usage example
from boto3.session import Session
from types_boto3_supplychain.paginator import ListDataIntegrationFlowsPaginator
def get_list_data_integration_flows_paginator() -> ListDataIntegrationFlowsPaginator:
    return Session().client("supplychain").get_paginator("list_data_integration_flows")# ListDataIntegrationFlowsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_supplychain.paginator import ListDataIntegrationFlowsPaginator
session = Session()
client = Session().client("supplychain")  # (1)
paginator: ListDataIntegrationFlowsPaginator = client.get_paginator("list_data_integration_flows")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: SupplyChainClient
- paginator: ListDataIntegrationFlowsPaginator
- item: PageIterator[ListDataIntegrationFlowsResponseTypeDef]
paginate#
Type annotations and code completion for ListDataIntegrationFlowsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    instanceId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListDataIntegrationFlowsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListDataIntegrationFlowsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListDataIntegrationFlowsRequestPaginateTypeDef = {  # (1)
    "instanceId": ...,
}
parent.paginate(**kwargs)ListDataLakeDatasetsPaginator#
Type annotations and code completion for boto3.client("supplychain").get_paginator("list_data_lake_datasets").
 boto3 documentation
# ListDataLakeDatasetsPaginator usage example
from boto3.session import Session
from types_boto3_supplychain.paginator import ListDataLakeDatasetsPaginator
def get_list_data_lake_datasets_paginator() -> ListDataLakeDatasetsPaginator:
    return Session().client("supplychain").get_paginator("list_data_lake_datasets")# ListDataLakeDatasetsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_supplychain.paginator import ListDataLakeDatasetsPaginator
session = Session()
client = Session().client("supplychain")  # (1)
paginator: ListDataLakeDatasetsPaginator = client.get_paginator("list_data_lake_datasets")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: SupplyChainClient
- paginator: ListDataLakeDatasetsPaginator
- item: PageIterator[ListDataLakeDatasetsResponseTypeDef]
paginate#
Type annotations and code completion for ListDataLakeDatasetsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    instanceId: str,
    namespace: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListDataLakeDatasetsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListDataLakeDatasetsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListDataLakeDatasetsRequestPaginateTypeDef = {  # (1)
    "instanceId": ...,
    "namespace": ...,
}
parent.paginate(**kwargs)ListDataLakeNamespacesPaginator#
Type annotations and code completion for boto3.client("supplychain").get_paginator("list_data_lake_namespaces").
 boto3 documentation
# ListDataLakeNamespacesPaginator usage example
from boto3.session import Session
from types_boto3_supplychain.paginator import ListDataLakeNamespacesPaginator
def get_list_data_lake_namespaces_paginator() -> ListDataLakeNamespacesPaginator:
    return Session().client("supplychain").get_paginator("list_data_lake_namespaces")# ListDataLakeNamespacesPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_supplychain.paginator import ListDataLakeNamespacesPaginator
session = Session()
client = Session().client("supplychain")  # (1)
paginator: ListDataLakeNamespacesPaginator = client.get_paginator("list_data_lake_namespaces")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: SupplyChainClient
- paginator: ListDataLakeNamespacesPaginator
- item: PageIterator[ListDataLakeNamespacesResponseTypeDef]
paginate#
Type annotations and code completion for ListDataLakeNamespacesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    instanceId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListDataLakeNamespacesResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListDataLakeNamespacesResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListDataLakeNamespacesRequestPaginateTypeDef = {  # (1)
    "instanceId": ...,
}
parent.paginate(**kwargs)ListInstancesPaginator#
Type annotations and code completion for boto3.client("supplychain").get_paginator("list_instances").
 boto3 documentation
# ListInstancesPaginator usage example
from boto3.session import Session
from types_boto3_supplychain.paginator import ListInstancesPaginator
def get_list_instances_paginator() -> ListInstancesPaginator:
    return Session().client("supplychain").get_paginator("list_instances")# ListInstancesPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_supplychain.paginator import ListInstancesPaginator
session = Session()
client = Session().client("supplychain")  # (1)
paginator: ListInstancesPaginator = client.get_paginator("list_instances")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: SupplyChainClient
- paginator: ListInstancesPaginator
- item: PageIterator[ListInstancesResponseTypeDef]
paginate#
Type annotations and code completion for ListInstancesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    instanceNameFilter: Sequence[str] = ...,
    instanceStateFilter: Sequence[InstanceStateType] = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> botocore.paginate.PageIterator[ListInstancesResponseTypeDef]:  # (3)
    ...- See Sequence[InstanceStateType]
- See PaginatorConfigTypeDef
- See PageIterator[ListInstancesResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListInstancesRequestPaginateTypeDef = {  # (1)
    "instanceNameFilter": ...,
}
parent.paginate(**kwargs)