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)
ListServicesPaginator#
Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_services")
.
boto3 documentation
# ListServicesPaginator usage example
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListServicesPaginator
def get_list_services_paginator() -> ListServicesPaginator:
return Session().client("vpc-lattice").get_paginator("list_services")
# ListServicesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListServicesPaginator
session = Session()
client = Session().client("vpc-lattice") # (1)
paginator: ListServicesPaginator = client.get_paginator("list_services") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: VPCLatticeClient
- paginator: ListServicesPaginator
- item: ListServicesResponseTypeDef
paginate#
Type annotations and code completion for ListServicesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListServicesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListServicesRequestListServicesPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
ListTargetGroupsPaginator#
Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_target_groups")
.
boto3 documentation
# ListTargetGroupsPaginator usage example
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListTargetGroupsPaginator
def get_list_target_groups_paginator() -> ListTargetGroupsPaginator:
return Session().client("vpc-lattice").get_paginator("list_target_groups")
# ListTargetGroupsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListTargetGroupsPaginator
session = Session()
client = Session().client("vpc-lattice") # (1)
paginator: ListTargetGroupsPaginator = client.get_paginator("list_target_groups") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: VPCLatticeClient
- paginator: ListTargetGroupsPaginator
- item: ListTargetGroupsResponseTypeDef
paginate#
Type annotations and code completion for ListTargetGroupsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
targetGroupType: TargetGroupTypeType = ..., # (1)
vpcIdentifier: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[ListTargetGroupsResponseTypeDef]: # (3)
...
# paginate method usage example with argument unpacking
kwargs: ListTargetGroupsRequestListTargetGroupsPaginateTypeDef = { # (1)
"targetGroupType": ...,
}
parent.paginate(**kwargs)
ListTargetsPaginator#
Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_targets")
.
boto3 documentation
# ListTargetsPaginator usage example
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListTargetsPaginator
def get_list_targets_paginator() -> ListTargetsPaginator:
return Session().client("vpc-lattice").get_paginator("list_targets")
# ListTargetsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_vpc_lattice.paginator import ListTargetsPaginator
session = Session()
client = Session().client("vpc-lattice") # (1)
paginator: ListTargetsPaginator = client.get_paginator("list_targets") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: VPCLatticeClient
- paginator: ListTargetsPaginator
- item: ListTargetsResponseTypeDef
paginate#
Type annotations and code completion for ListTargetsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
targetGroupIdentifier: str,
targets: Sequence[TargetTypeDef] = ..., # (1)
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[ListTargetsResponseTypeDef]: # (3)
...
# paginate method usage example with argument unpacking
kwargs: ListTargetsRequestListTargetsPaginateTypeDef = { # (1)
"targetGroupIdentifier": ...,
}
parent.paginate(**kwargs)