getAnnotationStore method
Gets information about an annotation store.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter name :
The store's name.
Implementation
Future<GetAnnotationStoreResponse> getAnnotationStore({
required String name,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/annotationStore/${Uri.encodeComponent(name)}',
exceptionFnMap: _exceptionFns,
);
return GetAnnotationStoreResponse.fromJson(response);
}