aws_sdk_frauddetector/client/delete_batch_prediction_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 [`DeleteBatchPredictionJob`](crate::operation::delete_batch_prediction_job::builders::DeleteBatchPredictionJobFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`job_id(impl Into<String>)`](crate::operation::delete_batch_prediction_job::builders::DeleteBatchPredictionJobFluentBuilder::job_id) / [`set_job_id(Option<String>)`](crate::operation::delete_batch_prediction_job::builders::DeleteBatchPredictionJobFluentBuilder::set_job_id):<br>required: **true**<br><p>The ID of the batch prediction job to delete.</p><br>
7 /// - On success, responds with [`DeleteBatchPredictionJobOutput`](crate::operation::delete_batch_prediction_job::DeleteBatchPredictionJobOutput)
8 /// - On failure, responds with [`SdkError<DeleteBatchPredictionJobError>`](crate::operation::delete_batch_prediction_job::DeleteBatchPredictionJobError)
9 pub fn delete_batch_prediction_job(&self) -> crate::operation::delete_batch_prediction_job::builders::DeleteBatchPredictionJobFluentBuilder {
10 crate::operation::delete_batch_prediction_job::builders::DeleteBatchPredictionJobFluentBuilder::new(self.handle.clone())
11 }
12}