deleteVectorEnrichmentJob method
Use this operation to delete a Vector Enrichment 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 Vector Enrichment job being deleted.
Implementation
Future<void> deleteVectorEnrichmentJob({
required String arn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/vector-enrichment-jobs/${Uri.encodeComponent(arn)}',
exceptionFnMap: _exceptionFns,
);
}