listAssets method

Future<ListAssetsResponse> listAssets({
  1. int? maxResults,
  2. String? nextToken,
  3. String? packagingGroupId,
})

Returns a collection of MediaPackage VOD Asset 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.

Parameter packagingGroupId : Returns Assets associated with the specified PackagingGroup.

Implementation

Future<ListAssetsResponse> listAssets({
  int? maxResults,
  String? nextToken,
  String? packagingGroupId,
}) async {
  _s.validateNumRange(
    'maxResults',
    maxResults,
    1,
    1000,
  );
  final $query = <String, List<String>>{
    if (maxResults != null) 'maxResults': [maxResults.toString()],
    if (nextToken != null) 'nextToken': [nextToken],
    if (packagingGroupId != null) 'packagingGroupId': [packagingGroupId],
  };
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/assets',
    queryParams: $query,
    exceptionFnMap: _exceptionFns,
  );
  return ListAssetsResponse.fromJson(response);
}