getVariantStore method

Future<GetVariantStoreResponse> getVariantStore({
  1. required String name,
})
Gets information about a variant store.

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

Parameter name : The store's name.

Implementation

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