deleteBatchImportJob method
Deletes the specified batch import job ID record. This action does not delete the data that was batch imported.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter jobId :
The ID of the batch import job to delete.
Implementation
Future<void> deleteBatchImportJob({
required String jobId,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'AWSHawksNestServiceFacade.DeleteBatchImportJob'
};
await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'jobId': jobId,
},
);
}