Skip to content

Route53RecoveryClusterClient

Index > Route53RecoveryCluster > Route53RecoveryClusterClient

Auto-generated documentation for Route53RecoveryCluster type annotations stubs module types-aiobotocore-route53-recovery-cluster.

Route53RecoveryClusterClient

Type annotations and code completion for session.client("route53-recovery-cluster") boto3 documentation

Usage example
from aioboto3.session import Session
from types_aiobotocore_route53_recovery_cluster.client import Route53RecoveryClusterClient

session = Session()
async with session.client("route53-recovery-cluster") as client:
    client: Route53RecoveryClusterClient

Exceptions

aioboto3 client exceptions are generated in runtime. This class provides code completion for session.client("route53-recovery-cluster").exceptions structure.

Usage example
async with session.client("route53-recovery-cluster") as client:
    try:
        do_something(client)
    except (
            client.AccessDeniedException,
        client.ClientError,
        client.ConflictException,
        client.EndpointTemporarilyUnavailableException,
        client.InternalServerException,
        client.ResourceNotFoundException,
        client.ServiceLimitExceededException,
        client.ThrottlingException,
        client.ValidationException,
    ) as e:
        print(e)
Type checking example
from types_aiobotocore_route53_recovery_cluster.client import Exceptions

def handle_error(exc: Exceptions.AccessDeniedException) -> None:
    ...

Methods

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for session.client("route53-recovery-cluster").can_paginate method. boto3 documentation

Method definition
def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close

Closes underlying endpoint connections.

Type annotations and code completion for session.client("route53-recovery-cluster").close method. boto3 documentation

Method definition
await def close(
    self,
) -> None:
    ...

generate_presigned_url

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for session.client("route53-recovery-cluster").generate_presigned_url method. boto3 documentation

Method definition
await def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_routing_control_state

Get the state for a routing control.

Type annotations and code completion for session.client("route53-recovery-cluster").get_routing_control_state method. boto3 documentation

Method definition
await def get_routing_control_state(
    self,
    *,
    RoutingControlArn: str,
) -> GetRoutingControlStateResponseTypeDef:  # (1)
    ...
  1. See GetRoutingControlStateResponseTypeDef
Usage example with kwargs
kwargs: GetRoutingControlStateRequestRequestTypeDef = {  # (1)
    "RoutingControlArn": ...,
}

parent.get_routing_control_state(**kwargs)
  1. See GetRoutingControlStateRequestRequestTypeDef

list_routing_controls

List routing control names and Amazon Resource Names (ARNs), as well as the routing control state for each routing control, along with the control panel name and control panel ARN for the routing controls.

Type annotations and code completion for session.client("route53-recovery-cluster").list_routing_controls method. boto3 documentation

Method definition
await def list_routing_controls(
    self,
    *,
    ControlPanelArn: str = ...,
    NextToken: str = ...,
    MaxResults: int = ...,
) -> ListRoutingControlsResponseTypeDef:  # (1)
    ...
  1. See ListRoutingControlsResponseTypeDef
Usage example with kwargs
kwargs: ListRoutingControlsRequestRequestTypeDef = {  # (1)
    "ControlPanelArn": ...,
}

parent.list_routing_controls(**kwargs)
  1. See ListRoutingControlsRequestRequestTypeDef

update_routing_control_state

Set the state of the routing control to reroute traffic.

Type annotations and code completion for session.client("route53-recovery-cluster").update_routing_control_state method. boto3 documentation

Method definition
await def update_routing_control_state(
    self,
    *,
    RoutingControlArn: str,
    RoutingControlState: RoutingControlStateType,  # (1)
    SafetyRulesToOverride: Sequence[str] = ...,
) -> Dict[str, Any]:
    ...
  1. See RoutingControlStateType
Usage example with kwargs
kwargs: UpdateRoutingControlStateRequestRequestTypeDef = {  # (1)
    "RoutingControlArn": ...,
    "RoutingControlState": ...,
}

parent.update_routing_control_state(**kwargs)
  1. See UpdateRoutingControlStateRequestRequestTypeDef

update_routing_control_states

Set multiple routing control states.

Type annotations and code completion for session.client("route53-recovery-cluster").update_routing_control_states method. boto3 documentation

Method definition
await def update_routing_control_states(
    self,
    *,
    UpdateRoutingControlStateEntries: Sequence[UpdateRoutingControlStateEntryTypeDef],  # (1)
    SafetyRulesToOverride: Sequence[str] = ...,
) -> Dict[str, Any]:
    ...
  1. See UpdateRoutingControlStateEntryTypeDef
Usage example with kwargs
kwargs: UpdateRoutingControlStatesRequestRequestTypeDef = {  # (1)
    "UpdateRoutingControlStateEntries": ...,
}

parent.update_routing_control_states(**kwargs)
  1. See UpdateRoutingControlStatesRequestRequestTypeDef

__aenter__

Type annotations and code completion for session.client("route53-recovery-cluster").__aenter__ method. boto3 documentation

Method definition
await def __aenter__(
    self,
) -> Route53RecoveryClusterClient:
    ...

__aexit__

Type annotations and code completion for session.client("route53-recovery-cluster").__aexit__ method. boto3 documentation

Method definition
await def __aexit__(
    self,
    exc_type: Any,
    exc_val: Any,
    exc_tb: Any,
) -> Any:
    ...

get_paginator

Type annotations and code completion for session.client("route53-recovery-cluster").get_paginator method with overloads.