aws_sdk_backupsearch/client/stop_search_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 [`StopSearchJob`](crate::operation::stop_search_job::builders::StopSearchJobFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`StopSearchJobOutput`](crate::operation::stop_search_job::StopSearchJobOutput)
8 /// - On failure, responds with [`SdkError<StopSearchJobError>`](crate::operation::stop_search_job::StopSearchJobError)
9 pub fn stop_search_job(&self) -> crate::operation::stop_search_job::builders::StopSearchJobFluentBuilder {
10 crate::operation::stop_search_job::builders::StopSearchJobFluentBuilder::new(self.handle.clone())
11 }
12}