aws_sdk_drs/client/delete_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 [`DeleteJob`](crate::operation::delete_job::builders::DeleteJobFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`job_id(impl Into<String>)`](crate::operation::delete_job::builders::DeleteJobFluentBuilder::job_id) / [`set_job_id(Option<String>)`](crate::operation::delete_job::builders::DeleteJobFluentBuilder::set_job_id):<br>required: **true**<br><p>The ID of the Job to be deleted.</p><br>
7 /// - On success, responds with [`DeleteJobOutput`](crate::operation::delete_job::DeleteJobOutput)
8 /// - On failure, responds with [`SdkError<DeleteJobError>`](crate::operation::delete_job::DeleteJobError)
9 pub fn delete_job(&self) -> crate::operation::delete_job::builders::DeleteJobFluentBuilder {
10 crate::operation::delete_job::builders::DeleteJobFluentBuilder::new(self.handle.clone())
11 }
12}