listCustomRoutingListeners method

Future<ListCustomRoutingListenersResponse> listCustomRoutingListeners({
  1. required String acceleratorArn,
  2. int? maxResults,
  3. String? nextToken,
})

List the listeners for a custom routing accelerator.

May throw InvalidArgumentException. May throw AcceleratorNotFoundException. May throw InvalidNextTokenException. May throw InternalServiceErrorException.

Parameter acceleratorArn : The Amazon Resource Name (ARN) of the accelerator to list listeners for.

Parameter maxResults : The number of listener objects that you want to return with this call. The default value is 10.

Parameter nextToken : The token for the next set of results. You receive this token from a previous call.

Implementation

Future<ListCustomRoutingListenersResponse> listCustomRoutingListeners({
  required String acceleratorArn,
  int? maxResults,
  String? nextToken,
}) async {
  ArgumentError.checkNotNull(acceleratorArn, 'acceleratorArn');
  _s.validateStringLength(
    'acceleratorArn',
    acceleratorArn,
    0,
    255,
    isRequired: true,
  );
  _s.validateNumRange(
    'maxResults',
    maxResults,
    1,
    100,
  );
  _s.validateStringLength(
    'nextToken',
    nextToken,
    0,
    255,
  );
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'GlobalAccelerator_V20180706.ListCustomRoutingListeners'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'AcceleratorArn': acceleratorArn,
      if (maxResults != null) 'MaxResults': maxResults,
      if (nextToken != null) 'NextToken': nextToken,
    },
  );

  return ListCustomRoutingListenersResponse.fromJson(jsonResponse.body);
}