deleteRecoveryGroup method

Future<void> deleteRecoveryGroup({
  1. required String recoveryGroupName,
})

Deletes a recovery group.

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

Parameter recoveryGroupName : The name of a recovery group.

Implementation

Future<void> deleteRecoveryGroup({
  required String recoveryGroupName,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/recoverygroups/${Uri.encodeComponent(recoveryGroupName)}',
    exceptionFnMap: _exceptionFns,
  );
}