getReferenceStore method

Future<GetReferenceStoreResponse> getReferenceStore({
  1. required String id,
})

Gets information about a reference store.

May throw AccessDeniedException. May throw InternalServerException. May throw RequestTimeoutException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter id : The store's ID.

Implementation

Future<GetReferenceStoreResponse> getReferenceStore({
  required String id,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/referencestore/${Uri.encodeComponent(id)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetReferenceStoreResponse.fromJson(response);
}