stopVectorEnrichmentJob method

Future<void> stopVectorEnrichmentJob({
  1. required String arn,
})

Stops the Vector Enrichment job for a given job ARN.

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.

Implementation

Future<void> stopVectorEnrichmentJob({
  required String arn,
}) async {
  final $payload = <String, dynamic>{
    'Arn': arn,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/vector-enrichment-jobs/stop',
    exceptionFnMap: _exceptionFns,
  );
}