listPackagingGroups method
Returns a collection of MediaPackage VOD PackagingGroup resources.
May throw UnprocessableEntityException. May throw InternalServerErrorException. May throw ForbiddenException. May throw NotFoundException. May throw ServiceUnavailableException. May throw TooManyRequestsException.
Parameter maxResults
:
Upper bound on number of records to return.
Parameter nextToken
:
A token used to resume pagination from the end of a previous request.
Implementation
Future<ListPackagingGroupsResponse> listPackagingGroups({
int? maxResults,
String? nextToken,
}) async {
_s.validateNumRange(
'maxResults',
maxResults,
1,
1000,
);
final $query = <String, List<String>>{
if (maxResults != null) 'maxResults': [maxResults.toString()],
if (nextToken != null) 'nextToken': [nextToken],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/packaging_groups',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return ListPackagingGroupsResponse.fromJson(response);
}