Skip to content

Paginators#

Index > Route53GlobalResolver > Paginators

Auto-generated documentation for Route53GlobalResolver type annotations stubs module mypy-boto3-route53globalresolver.

ListAccessSourcesPaginator#

Type annotations and code completion for boto3.client("route53globalresolver").get_paginator("list_access_sources"). boto3 documentation

# ListAccessSourcesPaginator usage example

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListAccessSourcesPaginator

def get_list_access_sources_paginator() -> ListAccessSourcesPaginator:
    return Session().client("route53globalresolver").get_paginator("list_access_sources")
# ListAccessSourcesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListAccessSourcesPaginator

session = Session()

client = Session().client("route53globalresolver")  # (1)
paginator: ListAccessSourcesPaginator = client.get_paginator("list_access_sources")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: Route53GlobalResolverClient
  2. paginator: ListAccessSourcesPaginator
  3. item: PageIterator[ListAccessSourcesOutputTypeDef]

paginate#

Type annotations and code completion for ListAccessSourcesPaginator.paginate method.

# paginate method definition

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

kwargs: ListAccessSourcesInputPaginateTypeDef = {  # (1)
    "filters": ...,
}

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

ListAccessTokensPaginator#

Type annotations and code completion for boto3.client("route53globalresolver").get_paginator("list_access_tokens"). boto3 documentation

# ListAccessTokensPaginator usage example

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListAccessTokensPaginator

def get_list_access_tokens_paginator() -> ListAccessTokensPaginator:
    return Session().client("route53globalresolver").get_paginator("list_access_tokens")
# ListAccessTokensPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListAccessTokensPaginator

session = Session()

client = Session().client("route53globalresolver")  # (1)
paginator: ListAccessTokensPaginator = client.get_paginator("list_access_tokens")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: Route53GlobalResolverClient
  2. paginator: ListAccessTokensPaginator
  3. item: PageIterator[ListAccessTokensOutputTypeDef]

paginate#

Type annotations and code completion for ListAccessTokensPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    dnsViewId: str,
    filters: Mapping[str, Sequence[str]] = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListAccessTokensOutputTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See PageIterator[ListAccessTokensOutputTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListAccessTokensInputPaginateTypeDef = {  # (1)
    "dnsViewId": ...,
}

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

ListDNSViewsPaginator#

Type annotations and code completion for boto3.client("route53globalresolver").get_paginator("list_dns_views"). boto3 documentation

# ListDNSViewsPaginator usage example

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListDNSViewsPaginator

def get_list_dns_views_paginator() -> ListDNSViewsPaginator:
    return Session().client("route53globalresolver").get_paginator("list_dns_views")
# ListDNSViewsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListDNSViewsPaginator

session = Session()

client = Session().client("route53globalresolver")  # (1)
paginator: ListDNSViewsPaginator = client.get_paginator("list_dns_views")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: Route53GlobalResolverClient
  2. paginator: ListDNSViewsPaginator
  3. item: PageIterator[ListDNSViewsOutputTypeDef]

paginate#

Type annotations and code completion for ListDNSViewsPaginator.paginate method.

# paginate method definition

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

kwargs: ListDNSViewsInputPaginateTypeDef = {  # (1)
    "globalResolverId": ...,
}

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

ListFirewallDomainListsPaginator#

Type annotations and code completion for boto3.client("route53globalresolver").get_paginator("list_firewall_domain_lists"). boto3 documentation

# ListFirewallDomainListsPaginator usage example

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListFirewallDomainListsPaginator

def get_list_firewall_domain_lists_paginator() -> ListFirewallDomainListsPaginator:
    return Session().client("route53globalresolver").get_paginator("list_firewall_domain_lists")
# ListFirewallDomainListsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListFirewallDomainListsPaginator

session = Session()

client = Session().client("route53globalresolver")  # (1)
paginator: ListFirewallDomainListsPaginator = client.get_paginator("list_firewall_domain_lists")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: Route53GlobalResolverClient
  2. paginator: ListFirewallDomainListsPaginator
  3. item: PageIterator[ListFirewallDomainListsOutputTypeDef]

paginate#

Type annotations and code completion for ListFirewallDomainListsPaginator.paginate method.

# paginate method definition

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

kwargs: ListFirewallDomainListsInputPaginateTypeDef = {  # (1)
    "globalResolverId": ...,
}

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

ListFirewallDomainsPaginator#

Type annotations and code completion for boto3.client("route53globalresolver").get_paginator("list_firewall_domains"). boto3 documentation

# ListFirewallDomainsPaginator usage example

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListFirewallDomainsPaginator

def get_list_firewall_domains_paginator() -> ListFirewallDomainsPaginator:
    return Session().client("route53globalresolver").get_paginator("list_firewall_domains")
# ListFirewallDomainsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListFirewallDomainsPaginator

session = Session()

client = Session().client("route53globalresolver")  # (1)
paginator: ListFirewallDomainsPaginator = client.get_paginator("list_firewall_domains")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: Route53GlobalResolverClient
  2. paginator: ListFirewallDomainsPaginator
  3. item: PageIterator[ListFirewallDomainsOutputTypeDef]

paginate#

Type annotations and code completion for ListFirewallDomainsPaginator.paginate method.

# paginate method definition

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

kwargs: ListFirewallDomainsInputPaginateTypeDef = {  # (1)
    "firewallDomainListId": ...,
}

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

ListFirewallRulesPaginator#

Type annotations and code completion for boto3.client("route53globalresolver").get_paginator("list_firewall_rules"). boto3 documentation

# ListFirewallRulesPaginator usage example

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListFirewallRulesPaginator

def get_list_firewall_rules_paginator() -> ListFirewallRulesPaginator:
    return Session().client("route53globalresolver").get_paginator("list_firewall_rules")
# ListFirewallRulesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListFirewallRulesPaginator

session = Session()

client = Session().client("route53globalresolver")  # (1)
paginator: ListFirewallRulesPaginator = client.get_paginator("list_firewall_rules")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: Route53GlobalResolverClient
  2. paginator: ListFirewallRulesPaginator
  3. item: PageIterator[ListFirewallRulesOutputTypeDef]

paginate#

Type annotations and code completion for ListFirewallRulesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    dnsViewId: str,
    filters: Mapping[str, Sequence[str]] = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListFirewallRulesOutputTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See PageIterator[ListFirewallRulesOutputTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListFirewallRulesInputPaginateTypeDef = {  # (1)
    "dnsViewId": ...,
}

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

ListGlobalResolversPaginator#

Type annotations and code completion for boto3.client("route53globalresolver").get_paginator("list_global_resolvers"). boto3 documentation

# ListGlobalResolversPaginator usage example

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListGlobalResolversPaginator

def get_list_global_resolvers_paginator() -> ListGlobalResolversPaginator:
    return Session().client("route53globalresolver").get_paginator("list_global_resolvers")
# ListGlobalResolversPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListGlobalResolversPaginator

session = Session()

client = Session().client("route53globalresolver")  # (1)
paginator: ListGlobalResolversPaginator = client.get_paginator("list_global_resolvers")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: Route53GlobalResolverClient
  2. paginator: ListGlobalResolversPaginator
  3. item: PageIterator[ListGlobalResolversOutputTypeDef]

paginate#

Type annotations and code completion for ListGlobalResolversPaginator.paginate method.

# paginate method definition

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

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

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

ListHostedZoneAssociationsPaginator#

Type annotations and code completion for boto3.client("route53globalresolver").get_paginator("list_hosted_zone_associations"). boto3 documentation

# ListHostedZoneAssociationsPaginator usage example

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListHostedZoneAssociationsPaginator

def get_list_hosted_zone_associations_paginator() -> ListHostedZoneAssociationsPaginator:
    return Session().client("route53globalresolver").get_paginator("list_hosted_zone_associations")
# ListHostedZoneAssociationsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListHostedZoneAssociationsPaginator

session = Session()

client = Session().client("route53globalresolver")  # (1)
paginator: ListHostedZoneAssociationsPaginator = client.get_paginator("list_hosted_zone_associations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: Route53GlobalResolverClient
  2. paginator: ListHostedZoneAssociationsPaginator
  3. item: PageIterator[ListHostedZoneAssociationsOutputTypeDef]

paginate#

Type annotations and code completion for ListHostedZoneAssociationsPaginator.paginate method.

# paginate method definition

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

kwargs: ListHostedZoneAssociationsInputPaginateTypeDef = {  # (1)
    "resourceArn": ...,
}

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

ListManagedFirewallDomainListsPaginator#

Type annotations and code completion for boto3.client("route53globalresolver").get_paginator("list_managed_firewall_domain_lists"). boto3 documentation

# ListManagedFirewallDomainListsPaginator usage example

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListManagedFirewallDomainListsPaginator

def get_list_managed_firewall_domain_lists_paginator() -> ListManagedFirewallDomainListsPaginator:
    return Session().client("route53globalresolver").get_paginator("list_managed_firewall_domain_lists")
# ListManagedFirewallDomainListsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_route53globalresolver.paginator import ListManagedFirewallDomainListsPaginator

session = Session()

client = Session().client("route53globalresolver")  # (1)
paginator: ListManagedFirewallDomainListsPaginator = client.get_paginator("list_managed_firewall_domain_lists")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: Route53GlobalResolverClient
  2. paginator: ListManagedFirewallDomainListsPaginator
  3. item: PageIterator[ListManagedFirewallDomainListsOutputTypeDef]

paginate#

Type annotations and code completion for ListManagedFirewallDomainListsPaginator.paginate method.

# paginate method definition

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

kwargs: ListManagedFirewallDomainListsInputPaginateTypeDef = {  # (1)
    "managedFirewallDomainListType": ...,
}

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