1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteJob`](crate::operation::delete_job::builders::DeleteJobFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`job_name(impl Into<String>)`](crate::operation::delete_job::builders::DeleteJobFluentBuilder::job_name) / [`set_job_name(Option<String>)`](crate::operation::delete_job::builders::DeleteJobFluentBuilder::set_job_name):<br>required: **true**<br><p>The name of the job definition to delete.</p><br>
    /// - On success, responds with [`DeleteJobOutput`](crate::operation::delete_job::DeleteJobOutput) with field(s):
    ///   - [`job_name(Option<String>)`](crate::operation::delete_job::DeleteJobOutput::job_name): <p>The name of the job definition that was deleted.</p>
    /// - On failure, responds with [`SdkError<DeleteJobError>`](crate::operation::delete_job::DeleteJobError)
    pub fn delete_job(&self) -> crate::operation::delete_job::builders::DeleteJobFluentBuilder {
        crate::operation::delete_job::builders::DeleteJobFluentBuilder::new(self.handle.clone())
    }
}