getApiMappings method

Future<GetApiMappingsResponse> getApiMappings({
  1. required String domainName,
  2. String? maxResults,
  3. String? nextToken,
})

Gets API mappings.

May throw NotFoundException. May throw TooManyRequestsException. May throw BadRequestException.

Parameter domainName : The domain name.

Parameter maxResults : The maximum number of elements to be returned for this resource.

Parameter nextToken : The next page of elements from this collection. Not valid for the last element of the collection.

Implementation

Future<GetApiMappingsResponse> getApiMappings({
  required String domainName,
  String? maxResults,
  String? nextToken,
}) async {
  ArgumentError.checkNotNull(domainName, 'domainName');
  final $query = <String, List<String>>{
    if (maxResults != null) 'maxResults': [maxResults],
    if (nextToken != null) 'nextToken': [nextToken],
  };
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/v2/domainnames/${Uri.encodeComponent(domainName)}/apimappings',
    queryParams: $query,
    exceptionFnMap: _exceptionFns,
  );
  return GetApiMappingsResponse.fromJson(response);
}