deleteRoutingControl method

Future<void> deleteRoutingControl({
  1. required String routingControlArn,
})

Deletes a routing control.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter routingControlArn : The Amazon Resource Name (ARN) of the routing control that you're deleting.

Implementation

Future<void> deleteRoutingControl({
  required String routingControlArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/routingcontrol/${Uri.encodeComponent(routingControlArn)}',
    exceptionFnMap: _exceptionFns,
  );
}