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
# Route53RecoveryClusterClient 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.
# Exceptions.exceptions usage example
client = boto3.client("route53-recovery-cluster")
try:
do_something(client)
except (
client.exceptions.AccessDeniedException,
client.exceptions.ClientError,
client.exceptions.ConflictException,
client.exceptions.EndpointTemporarilyUnavailableException,
client.exceptions.InternalServerException,
client.exceptions.ResourceNotFoundException,
client.exceptions.ServiceLimitExceededException,
client.exceptions.ThrottlingException,
client.exceptions.ValidationException,
) as e:
print(e)
# Exceptions.exceptions 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
# can_paginate 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
# close 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
# generate_presigned_url 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
# get_routing_control_state method definition
def get_routing_control_state(
self,
*,
RoutingControlArn: str,
) -> GetRoutingControlStateResponseTypeDef: # (1)
...
# get_routing_control_state method usage example with argument unpacking
kwargs: GetRoutingControlStateRequestRequestTypeDef = { # (1)
"RoutingControlArn": ...,
}
parent.get_routing_control_state(**kwargs)
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
# list_routing_controls method definition
def list_routing_controls(
self,
*,
ControlPanelArn: str = ...,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListRoutingControlsResponseTypeDef: # (1)
...
# list_routing_controls method usage example with argument unpacking
kwargs: ListRoutingControlsRequestRequestTypeDef = { # (1)
"ControlPanelArn": ...,
}
parent.list_routing_controls(**kwargs)
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
# update_routing_control_state method definition
def update_routing_control_state(
self,
*,
RoutingControlArn: str,
RoutingControlState: RoutingControlStateType, # (1)
SafetyRulesToOverride: Sequence[str] = ...,
) -> Dict[str, Any]:
...
# update_routing_control_state method usage example with argument unpacking
kwargs: UpdateRoutingControlStateRequestRequestTypeDef = { # (1)
"RoutingControlArn": ...,
"RoutingControlState": ...,
}
parent.update_routing_control_state(**kwargs)
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
# update_routing_control_states method definition
def update_routing_control_states(
self,
*,
UpdateRoutingControlStateEntries: Sequence[UpdateRoutingControlStateEntryTypeDef], # (1)
SafetyRulesToOverride: Sequence[str] = ...,
) -> Dict[str, Any]:
...
# update_routing_control_states method usage example with argument unpacking
kwargs: UpdateRoutingControlStatesRequestRequestTypeDef = { # (1)
"UpdateRoutingControlStateEntries": ...,
}
parent.update_routing_control_states(**kwargs)
get_paginator#
Type annotations and code completion for boto3.client("route53-recovery-cluster").get_paginator
method with overloads.
client.get_paginator("list_routing_controls")
-> ListRoutingControlsPaginator