getDataSet method
This operation returns information about a data set.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter dataSetId :
The unique identifier for a data set.
Implementation
Future<GetDataSetResponse> getDataSet({
required String dataSetId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/v1/data-sets/${Uri.encodeComponent(dataSetId)}',
exceptionFnMap: _exceptionFns,
);
return GetDataSetResponse.fromJson(response);
}