Skip to content

Examples#

Index > Route53RecoveryControlConfig > Examples

Auto-generated documentation for Route53RecoveryControlConfig type annotations stubs module types-aiobotocore-route53-recovery-control-config.

Client#

Implicit type annotations#

Can be used with types-aioboto3[route53-recovery-control-config] package installed.

Write your Route53RecoveryControlConfig code as usual, type checking and code completion should work out of the box.

# Route53RecoveryControlConfigClient usage example

from aioboto3.session import Session


session = Session()

async with session.client("route53-recovery-control-config") as client:  # (1)
    result = await client.create_cluster()  # (2)
  1. client: Route53RecoveryControlConfigClient
  2. result: CreateClusterResponseTypeDef
# ListAssociatedRoute53HealthChecksPaginator usage example

from aioboto3.session import Session


session = Session()

async with session.client("route53-recovery-control-config") as client:  # (1)
    paginator = client.get_paginator("list_associated_route53_health_checks")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: Route53RecoveryControlConfigClient
  2. paginator: ListAssociatedRoute53HealthChecksPaginator
  3. item: ListAssociatedRoute53HealthChecksResponseTypeDef
# ClusterCreatedWaiter usage example

from aioboto3.session import Session


session = Session()

async with session.client("route53-recovery-control-config") as client:  # (1)
    waiter = client.get_waiter("cluster_created")  # (2)
    await waiter.wait()
  1. client: Route53RecoveryControlConfigClient
  2. waiter: ClusterCreatedWaiter

Explicit type annotations#

With types-aioboto3-lite[route53-recovery-control-config] or a standalone types_aiobotocore_route53_recovery_control_config package, you have to explicitly specify client: Route53RecoveryControlConfigClient type annotation.

All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.

# Route53RecoveryControlConfigClient usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_route53_recovery_control_config.client import Route53RecoveryControlConfigClient
from types_aiobotocore_route53_recovery_control_config.type_defs import CreateClusterResponseTypeDef
from types_aiobotocore_route53_recovery_control_config.type_defs import CreateClusterRequestRequestTypeDef


session = Session()

client: Route53RecoveryControlConfigClient
async with session.client("route53-recovery-control-config") as client:  # (1)
    kwargs: CreateClusterRequestRequestTypeDef = {...}  # (2)
    result: CreateClusterResponseTypeDef = await client.create_cluster(**kwargs)  # (3)
  1. client: Route53RecoveryControlConfigClient
  2. kwargs: CreateClusterRequestRequestTypeDef
  3. result: CreateClusterResponseTypeDef
# ListAssociatedRoute53HealthChecksPaginator usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_route53_recovery_control_config.client import Route53RecoveryControlConfigClient
from types_aiobotocore_route53_recovery_control_config.paginator import ListAssociatedRoute53HealthChecksPaginator
from types_aiobotocore_route53_recovery_control_config.type_defs import ListAssociatedRoute53HealthChecksResponseTypeDef


session = Session()

client: Route53RecoveryControlConfigClient
async with session.client("route53-recovery-control-config") as client:  # (1)
    paginator: ListAssociatedRoute53HealthChecksPaginator = client.get_paginator("list_associated_route53_health_checks")  # (2)
    async for item in paginator.paginate(...):
        item: ListAssociatedRoute53HealthChecksResponseTypeDef
        print(item)  # (3)
  1. client: Route53RecoveryControlConfigClient
  2. paginator: ListAssociatedRoute53HealthChecksPaginator
  3. item: ListAssociatedRoute53HealthChecksResponseTypeDef
# ClusterCreatedWaiter usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_route53_recovery_control_config.client import Route53RecoveryControlConfigClient
from types_aiobotocore_route53_recovery_control_config.waiter import ClusterCreatedWaiter


session = Session()

async with session.client("route53-recovery-control-config") as client:  # (1)
    waiter = client.get_waiter("cluster_created")  # (2)
    await waiter.wait()
  1. client: Route53RecoveryControlConfigClient
  2. waiter: ClusterCreatedWaiter