deleteReadinessCheck method
Deletes a readiness check.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter readinessCheckName :
Name of a readiness check.
Implementation
Future<void> deleteReadinessCheck({
required String readinessCheckName,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/readinesschecks/${Uri.encodeComponent(readinessCheckName)}',
exceptionFnMap: _exceptionFns,
);
}