deleteDataset method
Deletes a dataset from DataBrew.
May throw ConflictException.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter name :
The name of the dataset to be deleted.
Implementation
Future<DeleteDatasetResponse> deleteDataset({
required String name,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/datasets/${Uri.encodeComponent(name)}',
exceptionFnMap: _exceptionFns,
);
return DeleteDatasetResponse.fromJson(response);
}