deleteDataSet method
This operation deletes a data set.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter dataSetId :
The unique identifier for a data set.
Implementation
Future<void> deleteDataSet({
required String dataSetId,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/v1/data-sets/${Uri.encodeComponent(dataSetId)}',
exceptionFnMap: _exceptionFns,
);
}