deleteProject method

Future<DeleteProjectResponse> deleteProject({
  1. required String name,
})

Deletes an existing DataBrew project.

May throw ConflictException. May throw ResourceNotFoundException. May throw ValidationException.

Parameter name : The name of the project to be deleted.

Implementation

Future<DeleteProjectResponse> deleteProject({
  required String name,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/projects/${Uri.encodeComponent(name)}',
    exceptionFnMap: _exceptionFns,
  );
  return DeleteProjectResponse.fromJson(response);
}