getModelInvocationJob method

Future<GetModelInvocationJobResponse> getModelInvocationJob({
  1. required String jobIdentifier,
})

Gets details about a batch inference job. For more information, see Monitor batch inference jobs

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter jobIdentifier : The Amazon Resource Name (ARN) of the batch inference job.

Implementation

Future<GetModelInvocationJobResponse> getModelInvocationJob({
  required String jobIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/model-invocation-job/${Uri.encodeComponent(jobIdentifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetModelInvocationJobResponse.fromJson(response);
}