aws_sdk_frauddetector/client/delete_batch_import_job.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteBatchImportJob`](crate::operation::delete_batch_import_job::builders::DeleteBatchImportJobFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`job_id(impl Into<String>)`](crate::operation::delete_batch_import_job::builders::DeleteBatchImportJobFluentBuilder::job_id) / [`set_job_id(Option<String>)`](crate::operation::delete_batch_import_job::builders::DeleteBatchImportJobFluentBuilder::set_job_id):<br>required: **true**<br><p>The ID of the batch import job to delete.</p><br>
7 /// - On success, responds with [`DeleteBatchImportJobOutput`](crate::operation::delete_batch_import_job::DeleteBatchImportJobOutput)
8 /// - On failure, responds with [`SdkError<DeleteBatchImportJobError>`](crate::operation::delete_batch_import_job::DeleteBatchImportJobError)
9 pub fn delete_batch_import_job(&self) -> crate::operation::delete_batch_import_job::builders::DeleteBatchImportJobFluentBuilder {
10 crate::operation::delete_batch_import_job::builders::DeleteBatchImportJobFluentBuilder::new(self.handle.clone())
11 }
12}