Paginators#
Index > Route53RecoveryControlConfig > Paginators
Auto-generated documentation for Route53RecoveryControlConfig type annotations stubs module mypy-boto3-route53-recovery-control-config.
ListAssociatedRoute53HealthChecksPaginator#
Type annotations and code completion for boto3.client("route53-recovery-control-config").get_paginator("list_associated_route53_health_checks")
.
boto3 documentation
# ListAssociatedRoute53HealthChecksPaginator usage example
from boto3.session import Session
from mypy_boto3_route53_recovery_control_config.paginator import ListAssociatedRoute53HealthChecksPaginator
def get_list_associated_route53_health_checks_paginator() -> ListAssociatedRoute53HealthChecksPaginator:
return Session().client("route53-recovery-control-config").get_paginator("list_associated_route53_health_checks")
# ListAssociatedRoute53HealthChecksPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_route53_recovery_control_config.paginator import ListAssociatedRoute53HealthChecksPaginator
session = Session()
client = Session().client("route53-recovery-control-config") # (1)
paginator: ListAssociatedRoute53HealthChecksPaginator = client.get_paginator("list_associated_route53_health_checks") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: Route53RecoveryControlConfigClient
- paginator: ListAssociatedRoute53HealthChecksPaginator
- item: ListAssociatedRoute53HealthChecksResponseTypeDef
paginate#
Type annotations and code completion for ListAssociatedRoute53HealthChecksPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
RoutingControlArn: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListAssociatedRoute53HealthChecksResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListAssociatedRoute53HealthChecksRequestListAssociatedRoute53HealthChecksPaginateTypeDef = { # (1)
"RoutingControlArn": ...,
}
parent.paginate(**kwargs)
ListClustersPaginator#
Type annotations and code completion for boto3.client("route53-recovery-control-config").get_paginator("list_clusters")
.
boto3 documentation
# ListClustersPaginator usage example
from boto3.session import Session
from mypy_boto3_route53_recovery_control_config.paginator import ListClustersPaginator
def get_list_clusters_paginator() -> ListClustersPaginator:
return Session().client("route53-recovery-control-config").get_paginator("list_clusters")
# ListClustersPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_route53_recovery_control_config.paginator import ListClustersPaginator
session = Session()
client = Session().client("route53-recovery-control-config") # (1)
paginator: ListClustersPaginator = client.get_paginator("list_clusters") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: Route53RecoveryControlConfigClient
- paginator: ListClustersPaginator
- item: ListClustersResponseTypeDef
paginate#
Type annotations and code completion for ListClustersPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListClustersResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListClustersRequestListClustersPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
ListControlPanelsPaginator#
Type annotations and code completion for boto3.client("route53-recovery-control-config").get_paginator("list_control_panels")
.
boto3 documentation
# ListControlPanelsPaginator usage example
from boto3.session import Session
from mypy_boto3_route53_recovery_control_config.paginator import ListControlPanelsPaginator
def get_list_control_panels_paginator() -> ListControlPanelsPaginator:
return Session().client("route53-recovery-control-config").get_paginator("list_control_panels")
# ListControlPanelsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_route53_recovery_control_config.paginator import ListControlPanelsPaginator
session = Session()
client = Session().client("route53-recovery-control-config") # (1)
paginator: ListControlPanelsPaginator = client.get_paginator("list_control_panels") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: Route53RecoveryControlConfigClient
- paginator: ListControlPanelsPaginator
- item: ListControlPanelsResponseTypeDef
paginate#
Type annotations and code completion for ListControlPanelsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
ClusterArn: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListControlPanelsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListControlPanelsRequestListControlPanelsPaginateTypeDef = { # (1)
"ClusterArn": ...,
}
parent.paginate(**kwargs)
ListRoutingControlsPaginator#
Type annotations and code completion for boto3.client("route53-recovery-control-config").get_paginator("list_routing_controls")
.
boto3 documentation
# ListRoutingControlsPaginator usage example
from boto3.session import Session
from mypy_boto3_route53_recovery_control_config.paginator import ListRoutingControlsPaginator
def get_list_routing_controls_paginator() -> ListRoutingControlsPaginator:
return Session().client("route53-recovery-control-config").get_paginator("list_routing_controls")
# ListRoutingControlsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_route53_recovery_control_config.paginator import ListRoutingControlsPaginator
session = Session()
client = Session().client("route53-recovery-control-config") # (1)
paginator: ListRoutingControlsPaginator = client.get_paginator("list_routing_controls") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: Route53RecoveryControlConfigClient
- paginator: ListRoutingControlsPaginator
- item: ListRoutingControlsResponseTypeDef
paginate#
Type annotations and code completion for ListRoutingControlsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
ControlPanelArn: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListRoutingControlsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListRoutingControlsRequestListRoutingControlsPaginateTypeDef = { # (1)
"ControlPanelArn": ...,
}
parent.paginate(**kwargs)
ListSafetyRulesPaginator#
Type annotations and code completion for boto3.client("route53-recovery-control-config").get_paginator("list_safety_rules")
.
boto3 documentation
# ListSafetyRulesPaginator usage example
from boto3.session import Session
from mypy_boto3_route53_recovery_control_config.paginator import ListSafetyRulesPaginator
def get_list_safety_rules_paginator() -> ListSafetyRulesPaginator:
return Session().client("route53-recovery-control-config").get_paginator("list_safety_rules")
# ListSafetyRulesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_route53_recovery_control_config.paginator import ListSafetyRulesPaginator
session = Session()
client = Session().client("route53-recovery-control-config") # (1)
paginator: ListSafetyRulesPaginator = client.get_paginator("list_safety_rules") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: Route53RecoveryControlConfigClient
- paginator: ListSafetyRulesPaginator
- item: ListSafetyRulesResponseTypeDef
paginate#
Type annotations and code completion for ListSafetyRulesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
ControlPanelArn: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListSafetyRulesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListSafetyRulesRequestListSafetyRulesPaginateTypeDef = { # (1)
"ControlPanelArn": ...,
}
parent.paginate(**kwargs)