getVectorEnrichmentJob method

Future<GetVectorEnrichmentJobOutput> getVectorEnrichmentJob({
  1. required String arn,
})

Retrieves details of a Vector Enrichment Job for a given job Amazon Resource Name (ARN).

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

Parameter arn : The Amazon Resource Name (ARN) of the Vector Enrichment job.

Implementation

Future<GetVectorEnrichmentJobOutput> getVectorEnrichmentJob({
  required String arn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/vector-enrichment-jobs/${Uri.encodeComponent(arn)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetVectorEnrichmentJobOutput.fromJson(response);
}