aws_sdk_glue/client/stop_crawler_schedule.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 [`StopCrawlerSchedule`](crate::operation::stop_crawler_schedule::builders::StopCrawlerScheduleFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`crawler_name(impl Into<String>)`](crate::operation::stop_crawler_schedule::builders::StopCrawlerScheduleFluentBuilder::crawler_name) / [`set_crawler_name(Option<String>)`](crate::operation::stop_crawler_schedule::builders::StopCrawlerScheduleFluentBuilder::set_crawler_name):<br>required: **true**<br><p>Name of the crawler whose schedule state to set.</p><br>
7 /// - On success, responds with [`StopCrawlerScheduleOutput`](crate::operation::stop_crawler_schedule::StopCrawlerScheduleOutput)
8 /// - On failure, responds with [`SdkError<StopCrawlerScheduleError>`](crate::operation::stop_crawler_schedule::StopCrawlerScheduleError)
9 pub fn stop_crawler_schedule(&self) -> crate::operation::stop_crawler_schedule::builders::StopCrawlerScheduleFluentBuilder {
10 crate::operation::stop_crawler_schedule::builders::StopCrawlerScheduleFluentBuilder::new(self.handle.clone())
11 }
12}