Skip to content

Paginators#

Index > ARCRegionswitch > Paginators

Auto-generated documentation for ARCRegionswitch type annotations stubs module mypy-boto3-arc-region-switch.

GetPlanEvaluationStatusPaginator#

Type annotations and code completion for boto3.client("arc-region-switch").get_paginator("get_plan_evaluation_status"). boto3 documentation

# GetPlanEvaluationStatusPaginator usage example

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import GetPlanEvaluationStatusPaginator

def get_get_plan_evaluation_status_paginator() -> GetPlanEvaluationStatusPaginator:
    return Session().client("arc-region-switch").get_paginator("get_plan_evaluation_status")
# GetPlanEvaluationStatusPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import GetPlanEvaluationStatusPaginator

session = Session()

client = Session().client("arc-region-switch")  # (1)
paginator: GetPlanEvaluationStatusPaginator = client.get_paginator("get_plan_evaluation_status")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ARCRegionswitchClient
  2. paginator: GetPlanEvaluationStatusPaginator
  3. item: PageIterator[GetPlanEvaluationStatusResponseTypeDef]

paginate#

Type annotations and code completion for GetPlanEvaluationStatusPaginator.paginate method.

# paginate method definition

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

kwargs: GetPlanEvaluationStatusRequestPaginateTypeDef = {  # (1)
    "planArn": ...,
}

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

GetPlanExecutionPaginator#

Type annotations and code completion for boto3.client("arc-region-switch").get_paginator("get_plan_execution"). boto3 documentation

# GetPlanExecutionPaginator usage example

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import GetPlanExecutionPaginator

def get_get_plan_execution_paginator() -> GetPlanExecutionPaginator:
    return Session().client("arc-region-switch").get_paginator("get_plan_execution")
# GetPlanExecutionPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import GetPlanExecutionPaginator

session = Session()

client = Session().client("arc-region-switch")  # (1)
paginator: GetPlanExecutionPaginator = client.get_paginator("get_plan_execution")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ARCRegionswitchClient
  2. paginator: GetPlanExecutionPaginator
  3. item: PageIterator[GetPlanExecutionResponsePaginatorTypeDef]

paginate#

Type annotations and code completion for GetPlanExecutionPaginator.paginate method.

# paginate method definition

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

kwargs: GetPlanExecutionRequestPaginateTypeDef = {  # (1)
    "planArn": ...,
    "executionId": ...,
}

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

ListPlanExecutionEventsPaginator#

Type annotations and code completion for boto3.client("arc-region-switch").get_paginator("list_plan_execution_events"). boto3 documentation

# ListPlanExecutionEventsPaginator usage example

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import ListPlanExecutionEventsPaginator

def get_list_plan_execution_events_paginator() -> ListPlanExecutionEventsPaginator:
    return Session().client("arc-region-switch").get_paginator("list_plan_execution_events")
# ListPlanExecutionEventsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import ListPlanExecutionEventsPaginator

session = Session()

client = Session().client("arc-region-switch")  # (1)
paginator: ListPlanExecutionEventsPaginator = client.get_paginator("list_plan_execution_events")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ARCRegionswitchClient
  2. paginator: ListPlanExecutionEventsPaginator
  3. item: PageIterator[ListPlanExecutionEventsResponseTypeDef]

paginate#

Type annotations and code completion for ListPlanExecutionEventsPaginator.paginate method.

# paginate method definition

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

kwargs: ListPlanExecutionEventsRequestPaginateTypeDef = {  # (1)
    "planArn": ...,
    "executionId": ...,
}

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

ListPlanExecutionsPaginator#

Type annotations and code completion for boto3.client("arc-region-switch").get_paginator("list_plan_executions"). boto3 documentation

# ListPlanExecutionsPaginator usage example

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import ListPlanExecutionsPaginator

def get_list_plan_executions_paginator() -> ListPlanExecutionsPaginator:
    return Session().client("arc-region-switch").get_paginator("list_plan_executions")
# ListPlanExecutionsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import ListPlanExecutionsPaginator

session = Session()

client = Session().client("arc-region-switch")  # (1)
paginator: ListPlanExecutionsPaginator = client.get_paginator("list_plan_executions")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ARCRegionswitchClient
  2. paginator: ListPlanExecutionsPaginator
  3. item: PageIterator[ListPlanExecutionsResponseTypeDef]

paginate#

Type annotations and code completion for ListPlanExecutionsPaginator.paginate method.

# paginate method definition

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

kwargs: ListPlanExecutionsRequestPaginateTypeDef = {  # (1)
    "planArn": ...,
}

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

ListPlansInRegionPaginator#

Type annotations and code completion for boto3.client("arc-region-switch").get_paginator("list_plans_in_region"). boto3 documentation

# ListPlansInRegionPaginator usage example

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import ListPlansInRegionPaginator

def get_list_plans_in_region_paginator() -> ListPlansInRegionPaginator:
    return Session().client("arc-region-switch").get_paginator("list_plans_in_region")
# ListPlansInRegionPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import ListPlansInRegionPaginator

session = Session()

client = Session().client("arc-region-switch")  # (1)
paginator: ListPlansInRegionPaginator = client.get_paginator("list_plans_in_region")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ARCRegionswitchClient
  2. paginator: ListPlansInRegionPaginator
  3. item: PageIterator[ListPlansInRegionResponseTypeDef]

paginate#

Type annotations and code completion for ListPlansInRegionPaginator.paginate method.

# paginate method definition

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

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

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

ListPlansPaginator#

Type annotations and code completion for boto3.client("arc-region-switch").get_paginator("list_plans"). boto3 documentation

# ListPlansPaginator usage example

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import ListPlansPaginator

def get_list_plans_paginator() -> ListPlansPaginator:
    return Session().client("arc-region-switch").get_paginator("list_plans")
# ListPlansPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import ListPlansPaginator

session = Session()

client = Session().client("arc-region-switch")  # (1)
paginator: ListPlansPaginator = client.get_paginator("list_plans")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ARCRegionswitchClient
  2. paginator: ListPlansPaginator
  3. item: PageIterator[ListPlansResponseTypeDef]

paginate#

Type annotations and code completion for ListPlansPaginator.paginate method.

# paginate method definition

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

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

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

ListRoute53HealthChecksPaginator#

Type annotations and code completion for boto3.client("arc-region-switch").get_paginator("list_route53_health_checks"). boto3 documentation

# ListRoute53HealthChecksPaginator usage example

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import ListRoute53HealthChecksPaginator

def get_list_route53_health_checks_paginator() -> ListRoute53HealthChecksPaginator:
    return Session().client("arc-region-switch").get_paginator("list_route53_health_checks")
# ListRoute53HealthChecksPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_arc_region_switch.paginator import ListRoute53HealthChecksPaginator

session = Session()

client = Session().client("arc-region-switch")  # (1)
paginator: ListRoute53HealthChecksPaginator = client.get_paginator("list_route53_health_checks")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ARCRegionswitchClient
  2. paginator: ListRoute53HealthChecksPaginator
  3. item: PageIterator[ListRoute53HealthChecksResponseTypeDef]

paginate#

Type annotations and code completion for ListRoute53HealthChecksPaginator.paginate method.

# paginate method definition

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

kwargs: ListRoute53HealthChecksRequestPaginateTypeDef = {  # (1)
    "arn": ...,
}

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