Skip to content

Route53RecoveryClusterClient

Index > Route53RecoveryCluster > Route53RecoveryClusterClient

Auto-generated documentation for Route53RecoveryCluster type annotations stubs module mypy-boto3-route53-recovery-cluster.

Route53RecoveryClusterClient

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

Usage example
from boto3.session import Session
from mypy_boto3_route53_recovery_cluster.client import Route53RecoveryClusterClient

def get_route53-recovery-cluster_client() -> Route53RecoveryClusterClient:
    return Session().client("route53-recovery-cluster")

Exceptions

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

Usage example
client = boto3.client("route53-recovery-cluster")

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 mypy_boto3_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 boto3.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 boto3.client("route53-recovery-cluster").close method. boto3 documentation

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

generate_presigned_url

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

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

Method definition
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 boto3.client("route53-recovery-cluster").get_routing_control_state method. boto3 documentation

Method definition
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 boto3.client("route53-recovery-cluster").list_routing_controls method. boto3 documentation

Method definition
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 boto3.client("route53-recovery-cluster").update_routing_control_state method. boto3 documentation

Method definition
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 boto3.client("route53-recovery-cluster").update_routing_control_states method. boto3 documentation

Method definition
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

get_paginator

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