deleteEarthObservationJob method
Use this operation to delete an Earth Observation job.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter arn :
The Amazon Resource Name (ARN) of the Earth Observation job being deleted.
Implementation
Future<void> deleteEarthObservationJob({
required String arn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/earth-observation-jobs/${Uri.encodeComponent(arn)}',
exceptionFnMap: _exceptionFns,
);
}