listSipMediaApplications method

Future<ListSipMediaApplicationsResponse> listSipMediaApplications({
  1. int? maxResults,
  2. String? nextToken,
})

Lists the SIP media applications under the administrator's AWS account.

May throw UnauthorizedClientException. May throw ForbiddenException. May throw BadRequestException. May throw ThrottledClientException. May throw ServiceUnavailableException. May throw ServiceFailureException.

Parameter maxResults : The maximum number of results to return in a single call. Defaults to 100.

Parameter nextToken : The token to use to retrieve the next page of results.

Implementation

Future<ListSipMediaApplicationsResponse> listSipMediaApplications({
  int? maxResults,
  String? nextToken,
}) async {
  _s.validateNumRange(
    'maxResults',
    maxResults,
    1,
    99,
  );
  _s.validateStringLength(
    'nextToken',
    nextToken,
    0,
    65535,
  );
  final $query = <String, List<String>>{
    if (maxResults != null) 'max-results': [maxResults.toString()],
    if (nextToken != null) 'next-token': [nextToken],
  };
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/sip-media-applications',
    queryParams: $query,
    exceptionFnMap: _exceptionFns,
  );
  return ListSipMediaApplicationsResponse.fromJson(response);
}