listSipRules method
Lists the SIP rules 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.
Parameter sipMediaApplicationId
:
The SIP media application ID.
Implementation
Future<ListSipRulesResponse> listSipRules({
int? maxResults,
String? nextToken,
String? sipMediaApplicationId,
}) 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],
if (sipMediaApplicationId != null)
'sip-media-application': [sipMediaApplicationId],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/sip-rules',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return ListSipRulesResponse.fromJson(response);
}