Paginators#
Index > VPCLattice > Paginators
Auto-generated documentation for VPCLattice type annotations stubs module mypy-boto3-vpc-lattice.
ListAccessLogSubscriptionsPaginator#
Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_access_log_subscriptions")
.
boto3 documentation
# ListAccessLogSubscriptionsPaginator usage example
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListAccessLogSubscriptionsPaginator
def get_list_access_log_subscriptions_paginator() -> ListAccessLogSubscriptionsPaginator:
return Session().client("vpc-lattice").get_paginator("list_access_log_subscriptions")
# ListAccessLogSubscriptionsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListAccessLogSubscriptionsPaginator
session = Session()
client = Session().client("vpc-lattice") # (1)
paginator: ListAccessLogSubscriptionsPaginator = client.get_paginator("list_access_log_subscriptions") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: VPCLatticeClient
- paginator: ListAccessLogSubscriptionsPaginator
- item: ListAccessLogSubscriptionsResponseTypeDef
paginate#
Type annotations and code completion for ListAccessLogSubscriptionsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
resourceIdentifier: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListAccessLogSubscriptionsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListAccessLogSubscriptionsRequestListAccessLogSubscriptionsPaginateTypeDef = { # (1)
"resourceIdentifier": ...,
}
parent.paginate(**kwargs)
ListListenersPaginator#
Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_listeners")
.
boto3 documentation
# ListListenersPaginator usage example
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListListenersPaginator
def get_list_listeners_paginator() -> ListListenersPaginator:
return Session().client("vpc-lattice").get_paginator("list_listeners")
# ListListenersPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListListenersPaginator
session = Session()
client = Session().client("vpc-lattice") # (1)
paginator: ListListenersPaginator = client.get_paginator("list_listeners") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: VPCLatticeClient
- paginator: ListListenersPaginator
- item: ListListenersResponseTypeDef
paginate#
Type annotations and code completion for ListListenersPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
serviceIdentifier: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListListenersResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListListenersRequestListListenersPaginateTypeDef = { # (1)
"serviceIdentifier": ...,
}
parent.paginate(**kwargs)
ListRulesPaginator#
Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_rules")
.
boto3 documentation
# ListRulesPaginator usage example
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListRulesPaginator
def get_list_rules_paginator() -> ListRulesPaginator:
return Session().client("vpc-lattice").get_paginator("list_rules")
# ListRulesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListRulesPaginator
session = Session()
client = Session().client("vpc-lattice") # (1)
paginator: ListRulesPaginator = client.get_paginator("list_rules") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: VPCLatticeClient
- paginator: ListRulesPaginator
- item: ListRulesResponseTypeDef
paginate#
Type annotations and code completion for ListRulesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
listenerIdentifier: str,
serviceIdentifier: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListRulesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListRulesRequestListRulesPaginateTypeDef = { # (1)
"listenerIdentifier": ...,
"serviceIdentifier": ...,
}
parent.paginate(**kwargs)
ListServiceNetworkServiceAssociationsPaginator#
Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_service_network_service_associations")
.
boto3 documentation
# ListServiceNetworkServiceAssociationsPaginator usage example
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListServiceNetworkServiceAssociationsPaginator
def get_list_service_network_service_associations_paginator() -> ListServiceNetworkServiceAssociationsPaginator:
return Session().client("vpc-lattice").get_paginator("list_service_network_service_associations")
# ListServiceNetworkServiceAssociationsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListServiceNetworkServiceAssociationsPaginator
session = Session()
client = Session().client("vpc-lattice") # (1)
paginator: ListServiceNetworkServiceAssociationsPaginator = client.get_paginator("list_service_network_service_associations") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: VPCLatticeClient
- paginator: ListServiceNetworkServiceAssociationsPaginator
- item: ListServiceNetworkServiceAssociationsResponseTypeDef
paginate#
Type annotations and code completion for ListServiceNetworkServiceAssociationsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
serviceIdentifier: str = ...,
serviceNetworkIdentifier: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListServiceNetworkServiceAssociationsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListServiceNetworkServiceAssociationsRequestListServiceNetworkServiceAssociationsPaginateTypeDef = { # (1)
"serviceIdentifier": ...,
}
parent.paginate(**kwargs)
- See ListServiceNetworkServiceAssociationsRequestListServiceNetworkServiceAssociationsPaginateTypeDef
ListServiceNetworkVpcAssociationsPaginator#
Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_service_network_vpc_associations")
.
boto3 documentation
# ListServiceNetworkVpcAssociationsPaginator usage example
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListServiceNetworkVpcAssociationsPaginator
def get_list_service_network_vpc_associations_paginator() -> ListServiceNetworkVpcAssociationsPaginator:
return Session().client("vpc-lattice").get_paginator("list_service_network_vpc_associations")
# ListServiceNetworkVpcAssociationsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListServiceNetworkVpcAssociationsPaginator
session = Session()
client = Session().client("vpc-lattice") # (1)
paginator: ListServiceNetworkVpcAssociationsPaginator = client.get_paginator("list_service_network_vpc_associations") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: VPCLatticeClient
- paginator: ListServiceNetworkVpcAssociationsPaginator
- item: ListServiceNetworkVpcAssociationsResponseTypeDef
paginate#
Type annotations and code completion for ListServiceNetworkVpcAssociationsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
serviceNetworkIdentifier: str = ...,
vpcIdentifier: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListServiceNetworkVpcAssociationsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListServiceNetworkVpcAssociationsRequestListServiceNetworkVpcAssociationsPaginateTypeDef = { # (1)
"serviceNetworkIdentifier": ...,
}
parent.paginate(**kwargs)
ListServiceNetworksPaginator#
Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_service_networks")
.
boto3 documentation
# ListServiceNetworksPaginator usage example
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListServiceNetworksPaginator
def get_list_service_networks_paginator() -> ListServiceNetworksPaginator:
return Session().client("vpc-lattice").get_paginator("list_service_networks")
# ListServiceNetworksPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListServiceNetworksPaginator
session = Session()
client = Session().client("vpc-lattice") # (1)
paginator: ListServiceNetworksPaginator = client.get_paginator("list_service_networks") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: VPCLatticeClient
- paginator: ListServiceNetworksPaginator
- item: ListServiceNetworksResponseTypeDef
paginate#
Type annotations and code completion for ListServiceNetworksPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListServiceNetworksResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListServiceNetworksRequestListServiceNetworksPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)