describeSigningJob method

Future<DescribeSigningJobResponse> describeSigningJob({
  1. required String jobId,
})

Returns information about a specific code signing job. You specify the job by using the jobId value that is returned by the StartSigningJob operation.

May throw ResourceNotFoundException. May throw AccessDeniedException. May throw TooManyRequestsException. May throw InternalServiceErrorException.

Parameter jobId : The ID of the signing job on input.

Implementation

Future<DescribeSigningJobResponse> describeSigningJob({
  required String jobId,
}) async {
  ArgumentError.checkNotNull(jobId, 'jobId');
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/signing-jobs/${Uri.encodeComponent(jobId)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeSigningJobResponse.fromJson(response);
}