listOriginEndpoints method
Returns a collection of OriginEndpoint records.
May throw UnprocessableEntityException. May throw InternalServerErrorException. May throw ForbiddenException. May throw NotFoundException. May throw ServiceUnavailableException. May throw TooManyRequestsException.
Parameter channelId
:
When specified, the request will return only OriginEndpoints associated
with the given Channel ID.
Parameter maxResults
:
The upper bound on the number of records to return.
Parameter nextToken
:
A token used to resume pagination from the end of a previous request.
Implementation
Future<ListOriginEndpointsResponse> listOriginEndpoints({
String? channelId,
int? maxResults,
String? nextToken,
}) async {
_s.validateNumRange(
'maxResults',
maxResults,
1,
1000,
);
final $query = <String, List<String>>{
if (channelId != null) 'channelId': [channelId],
if (maxResults != null) 'maxResults': [maxResults.toString()],
if (nextToken != null) 'nextToken': [nextToken],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/origin_endpoints',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return ListOriginEndpointsResponse.fromJson(response);
}