1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StopProcessingJob`](crate::operation::stop_processing_job::builders::StopProcessingJobFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`processing_job_name(impl Into<String>)`](crate::operation::stop_processing_job::builders::StopProcessingJobFluentBuilder::processing_job_name) / [`set_processing_job_name(Option<String>)`](crate::operation::stop_processing_job::builders::StopProcessingJobFluentBuilder::set_processing_job_name): <p>The name of the processing job to stop.</p>
    /// - On success, responds with [`StopProcessingJobOutput`](crate::operation::stop_processing_job::StopProcessingJobOutput)
    /// - On failure, responds with [`SdkError<StopProcessingJobError>`](crate::operation::stop_processing_job::StopProcessingJobError)
    pub fn stop_processing_job(
        &self,
    ) -> crate::operation::stop_processing_job::builders::StopProcessingJobFluentBuilder {
        crate::operation::stop_processing_job::builders::StopProcessingJobFluentBuilder::new(
            self.handle.clone(),
        )
    }
}