getDatastore method
Get data store properties.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter datastoreId :
The data store identifier.
Implementation
Future<GetDatastoreResponse> getDatastore({
required String datastoreId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/datastore/${Uri.encodeComponent(datastoreId)}',
exceptionFnMap: _exceptionFns,
);
return GetDatastoreResponse.fromJson(response);
}