describeDataset method

Future<DescribeDatasetResponse> describeDataset({
  1. required String name,
})

Returns the definition of a specific DataBrew dataset.

May throw ResourceNotFoundException. May throw ValidationException.

Parameter name : The name of the dataset to be described.

Implementation

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