listSigningPlatforms method

Future<ListSigningPlatformsResponse> listSigningPlatforms({
  1. String? category,
  2. int? maxResults,
  3. String? nextToken,
  4. String? partner,
  5. String? target,
})

Lists all signing platforms available in code signing that match the request parameters. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.

May throw ValidationException. May throw AccessDeniedException. May throw TooManyRequestsException. May throw InternalServiceErrorException.

Parameter category : The category type of a signing platform.

Parameter maxResults : The maximum number of results to be returned by this operation.

Parameter nextToken : Value for specifying the next set of paginated results to return. After you receive a response with truncated results, use this parameter in a subsequent request. Set it to the value of nextToken from the response that you just received.

Parameter partner : Any partner entities connected to a signing platform.

Parameter target : The validation template that is used by the target signing platform.

Implementation

Future<ListSigningPlatformsResponse> listSigningPlatforms({
  String? category,
  int? maxResults,
  String? nextToken,
  String? partner,
  String? target,
}) async {
  _s.validateNumRange(
    'maxResults',
    maxResults,
    1,
    25,
  );
  final $query = <String, List<String>>{
    if (category != null) 'category': [category],
    if (maxResults != null) 'maxResults': [maxResults.toString()],
    if (nextToken != null) 'nextToken': [nextToken],
    if (partner != null) 'partner': [partner],
    if (target != null) 'target': [target],
  };
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/signing-platforms',
    queryParams: $query,
    exceptionFnMap: _exceptionFns,
  );
  return ListSigningPlatformsResponse.fromJson(response);
}