getSequenceStore method
Retrieves metadata for a sequence store using its ID and returns it in JSON format.
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<GetSequenceStoreResponse> getSequenceStore({
required String id,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/sequencestore/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
return GetSequenceStoreResponse.fromJson(response);
}