getDataSetDetails method

Future<GetDataSetDetailsResponse> getDataSetDetails({
  1. required String applicationId,
  2. required String dataSetName,
})

Gets the details of a specific data set.

May throw AccessDeniedException. May throw ConflictException. May throw ExecutionTimeoutException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ServiceUnavailableException. May throw ThrottlingException. May throw ValidationException.

Parameter applicationId : The unique identifier of the application that this data set is associated with.

Parameter dataSetName : The name of the data set.

Implementation

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