describeTracker method
Retrieves the tracker resource details.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter trackerName :
The name of the tracker resource.
Implementation
Future<DescribeTrackerResponse> describeTracker({
required String trackerName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/tracking/v0/trackers/${Uri.encodeComponent(trackerName)}',
exceptionFnMap: _exceptionFns,
);
return DescribeTrackerResponse.fromJson(response);
}