Skip to content

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)
  1. client: VPCLatticeClient
  2. paginator: ListAccessLogSubscriptionsPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListAccessLogSubscriptionsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListAccessLogSubscriptionsRequestPaginateTypeDef = {  # (1)
    "resourceIdentifier": ...,
}

parent.paginate(**kwargs)
  1. See ListAccessLogSubscriptionsRequestPaginateTypeDef

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)
  1. client: VPCLatticeClient
  2. paginator: ListListenersPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListListenersResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListListenersRequestPaginateTypeDef = {  # (1)
    "serviceIdentifier": ...,
}

parent.paginate(**kwargs)
  1. See ListListenersRequestPaginateTypeDef

ListResourceConfigurationsPaginator#

Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_resource_configurations"). boto3 documentation

# ListResourceConfigurationsPaginator usage example

from boto3.session import Session

from mypy_boto3_vpc_lattice.paginator import ListResourceConfigurationsPaginator

def get_list_resource_configurations_paginator() -> ListResourceConfigurationsPaginator:
    return Session().client("vpc-lattice").get_paginator("list_resource_configurations")
# ListResourceConfigurationsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_vpc_lattice.paginator import ListResourceConfigurationsPaginator

session = Session()

client = Session().client("vpc-lattice")  # (1)
paginator: ListResourceConfigurationsPaginator = client.get_paginator("list_resource_configurations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: VPCLatticeClient
  2. paginator: ListResourceConfigurationsPaginator
  3. item: ListResourceConfigurationsResponseTypeDef

paginate#

Type annotations and code completion for ListResourceConfigurationsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    resourceConfigurationGroupIdentifier: str = ...,
    resourceGatewayIdentifier: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> PageIterator[ListResourceConfigurationsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListResourceConfigurationsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListResourceConfigurationsRequestPaginateTypeDef = {  # (1)
    "resourceConfigurationGroupIdentifier": ...,
}

parent.paginate(**kwargs)
  1. See ListResourceConfigurationsRequestPaginateTypeDef

ListResourceEndpointAssociationsPaginator#

Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_resource_endpoint_associations"). boto3 documentation

# ListResourceEndpointAssociationsPaginator usage example

from boto3.session import Session

from mypy_boto3_vpc_lattice.paginator import ListResourceEndpointAssociationsPaginator

def get_list_resource_endpoint_associations_paginator() -> ListResourceEndpointAssociationsPaginator:
    return Session().client("vpc-lattice").get_paginator("list_resource_endpoint_associations")
# ListResourceEndpointAssociationsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_vpc_lattice.paginator import ListResourceEndpointAssociationsPaginator

session = Session()

client = Session().client("vpc-lattice")  # (1)
paginator: ListResourceEndpointAssociationsPaginator = client.get_paginator("list_resource_endpoint_associations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: VPCLatticeClient
  2. paginator: ListResourceEndpointAssociationsPaginator
  3. item: ListResourceEndpointAssociationsResponseTypeDef

paginate#

Type annotations and code completion for ListResourceEndpointAssociationsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    resourceConfigurationIdentifier: str,
    resourceEndpointAssociationIdentifier: str = ...,
    vpcEndpointId: str = ...,
    vpcEndpointOwner: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> PageIterator[ListResourceEndpointAssociationsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListResourceEndpointAssociationsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListResourceEndpointAssociationsRequestPaginateTypeDef = {  # (1)
    "resourceConfigurationIdentifier": ...,
}

parent.paginate(**kwargs)
  1. See ListResourceEndpointAssociationsRequestPaginateTypeDef

ListResourceGatewaysPaginator#

Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_resource_gateways"). boto3 documentation

# ListResourceGatewaysPaginator usage example

from boto3.session import Session

from mypy_boto3_vpc_lattice.paginator import ListResourceGatewaysPaginator

def get_list_resource_gateways_paginator() -> ListResourceGatewaysPaginator:
    return Session().client("vpc-lattice").get_paginator("list_resource_gateways")
# ListResourceGatewaysPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_vpc_lattice.paginator import ListResourceGatewaysPaginator

session = Session()

client = Session().client("vpc-lattice")  # (1)
paginator: ListResourceGatewaysPaginator = client.get_paginator("list_resource_gateways")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: VPCLatticeClient
  2. paginator: ListResourceGatewaysPaginator
  3. item: ListResourceGatewaysResponseTypeDef

paginate#

Type annotations and code completion for ListResourceGatewaysPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> PageIterator[ListResourceGatewaysResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListResourceGatewaysResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListResourceGatewaysRequestPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

parent.paginate(**kwargs)
  1. See ListResourceGatewaysRequestPaginateTypeDef

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)
  1. client: VPCLatticeClient
  2. paginator: ListRulesPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListRulesResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListRulesRequestPaginateTypeDef = {  # (1)
    "listenerIdentifier": ...,
    "serviceIdentifier": ...,
}

parent.paginate(**kwargs)
  1. See ListRulesRequestPaginateTypeDef

ListServiceNetworkResourceAssociationsPaginator#

Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_service_network_resource_associations"). boto3 documentation

# ListServiceNetworkResourceAssociationsPaginator usage example

from boto3.session import Session

from mypy_boto3_vpc_lattice.paginator import ListServiceNetworkResourceAssociationsPaginator

def get_list_service_network_resource_associations_paginator() -> ListServiceNetworkResourceAssociationsPaginator:
    return Session().client("vpc-lattice").get_paginator("list_service_network_resource_associations")
# ListServiceNetworkResourceAssociationsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_vpc_lattice.paginator import ListServiceNetworkResourceAssociationsPaginator

session = Session()

client = Session().client("vpc-lattice")  # (1)
paginator: ListServiceNetworkResourceAssociationsPaginator = client.get_paginator("list_service_network_resource_associations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: VPCLatticeClient
  2. paginator: ListServiceNetworkResourceAssociationsPaginator
  3. item: ListServiceNetworkResourceAssociationsResponseTypeDef

paginate#

Type annotations and code completion for ListServiceNetworkResourceAssociationsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    resourceConfigurationIdentifier: str = ...,
    serviceNetworkIdentifier: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> PageIterator[ListServiceNetworkResourceAssociationsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListServiceNetworkResourceAssociationsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListServiceNetworkResourceAssociationsRequestPaginateTypeDef = {  # (1)
    "resourceConfigurationIdentifier": ...,
}

parent.paginate(**kwargs)
  1. See ListServiceNetworkResourceAssociationsRequestPaginateTypeDef

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)
  1. client: VPCLatticeClient
  2. paginator: ListServiceNetworkServiceAssociationsPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListServiceNetworkServiceAssociationsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListServiceNetworkServiceAssociationsRequestPaginateTypeDef = {  # (1)
    "serviceIdentifier": ...,
}

parent.paginate(**kwargs)
  1. See ListServiceNetworkServiceAssociationsRequestPaginateTypeDef

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)
  1. client: VPCLatticeClient
  2. paginator: ListServiceNetworkVpcAssociationsPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListServiceNetworkVpcAssociationsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListServiceNetworkVpcAssociationsRequestPaginateTypeDef = {  # (1)
    "serviceNetworkIdentifier": ...,
}

parent.paginate(**kwargs)
  1. See ListServiceNetworkVpcAssociationsRequestPaginateTypeDef

ListServiceNetworkVpcEndpointAssociationsPaginator#

Type annotations and code completion for boto3.client("vpc-lattice").get_paginator("list_service_network_vpc_endpoint_associations"). boto3 documentation

# ListServiceNetworkVpcEndpointAssociationsPaginator usage example

from boto3.session import Session

from mypy_boto3_vpc_lattice.paginator import ListServiceNetworkVpcEndpointAssociationsPaginator

def get_list_service_network_vpc_endpoint_associations_paginator() -> ListServiceNetworkVpcEndpointAssociationsPaginator:
    return Session().client("vpc-lattice").get_paginator("list_service_network_vpc_endpoint_associations")
# ListServiceNetworkVpcEndpointAssociationsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_vpc_lattice.paginator import ListServiceNetworkVpcEndpointAssociationsPaginator

session = Session()

client = Session().client("vpc-lattice")  # (1)
paginator: ListServiceNetworkVpcEndpointAssociationsPaginator = client.get_paginator("list_service_network_vpc_endpoint_associations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: VPCLatticeClient
  2. paginator: ListServiceNetworkVpcEndpointAssociationsPaginator
  3. item: ListServiceNetworkVpcEndpointAssociationsResponseTypeDef

paginate#

Type annotations and code completion for ListServiceNetworkVpcEndpointAssociationsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    serviceNetworkIdentifier: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> PageIterator[ListServiceNetworkVpcEndpointAssociationsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListServiceNetworkVpcEndpointAssociationsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListServiceNetworkVpcEndpointAssociationsRequestPaginateTypeDef = {  # (1)
    "serviceNetworkIdentifier": ...,
}

parent.paginate(**kwargs)
  1. See ListServiceNetworkVpcEndpointAssociationsRequestPaginateTypeDef

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)
  1. client: VPCLatticeClient
  2. paginator: ListServiceNetworksPaginator
  3. item: ListServiceNetworksResponseTypeDef

paginate#

Type annotations and code completion for ListServiceNetworksPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> PageIterator[ListServiceNetworksResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListServiceNetworksResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListServiceNetworksRequestPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

parent.paginate(**kwargs)
  1. See ListServiceNetworksRequestPaginateTypeDef

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)
  1. client: VPCLatticeClient
  2. paginator: ListServicesPaginator
  3. item: ListServicesResponseTypeDef

paginate#

Type annotations and code completion for ListServicesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> PageIterator[ListServicesResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListServicesResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListServicesRequestPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

parent.paginate(**kwargs)
  1. See ListServicesRequestPaginateTypeDef

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)
  1. client: VPCLatticeClient
  2. paginator: ListTargetGroupsPaginator
  3. 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)
    ...
  1. See TargetGroupTypeType
  2. See PaginatorConfigTypeDef
  3. See ListTargetGroupsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListTargetGroupsRequestPaginateTypeDef = {  # (1)
    "targetGroupType": ...,
}

parent.paginate(**kwargs)
  1. See ListTargetGroupsRequestPaginateTypeDef

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)
  1. client: VPCLatticeClient
  2. paginator: ListTargetsPaginator
  3. 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)
    ...
  1. See TargetTypeDef
  2. See PaginatorConfigTypeDef
  3. See ListTargetsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListTargetsRequestPaginateTypeDef = {  # (1)
    "targetGroupIdentifier": ...,
}

parent.paginate(**kwargs)
  1. See ListTargetsRequestPaginateTypeDef