aws_sdk_backupsearch/client/
stop_search_job.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StopSearchJob`](crate::operation::stop_search_job::builders::StopSearchJobFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`search_job_identifier(impl Into<String>)`](crate::operation::stop_search_job::builders::StopSearchJobFluentBuilder::search_job_identifier) / [`set_search_job_identifier(Option<String>)`](crate::operation::stop_search_job::builders::StopSearchJobFluentBuilder::set_search_job_identifier):<br>required: **true**<br><p>The unique string that specifies the search job.</p><br>
    /// - On success, responds with [`StopSearchJobOutput`](crate::operation::stop_search_job::StopSearchJobOutput)
    /// - On failure, responds with [`SdkError<StopSearchJobError>`](crate::operation::stop_search_job::StopSearchJobError)
    pub fn stop_search_job(&self) -> crate::operation::stop_search_job::builders::StopSearchJobFluentBuilder {
        crate::operation::stop_search_job::builders::StopSearchJobFluentBuilder::new(self.handle.clone())
    }
}