getEarthObservationJob method

Future<GetEarthObservationJobOutput> getEarthObservationJob({
  1. required String arn,
})

Get the details for a previously initiated Earth Observation job.

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

Parameter arn : The Amazon Resource Name (ARN) of the Earth Observation job.

Implementation

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