deleteAudienceGenerationJob method
Deletes the specified audience generation job, and removes all data associated with the job.
May throw AccessDeniedException.
May throw ConflictException.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter audienceGenerationJobArn :
The Amazon Resource Name (ARN) of the audience generation job that you
want to delete.
Implementation
Future<void> deleteAudienceGenerationJob({
required String audienceGenerationJobArn,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/audience-generation-job/${Uri.encodeComponent(audienceGenerationJobArn)}',
exceptionFnMap: _exceptionFns,
);
}