aws_sdk_glue/client/
start_crawler.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 [`StartCrawler`](crate::operation::start_crawler::builders::StartCrawlerFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`name(impl Into<String>)`](crate::operation::start_crawler::builders::StartCrawlerFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::start_crawler::builders::StartCrawlerFluentBuilder::set_name):<br>required: **true**<br><p>Name of the crawler to start.</p><br>
7    /// - On success, responds with [`StartCrawlerOutput`](crate::operation::start_crawler::StartCrawlerOutput)
8    /// - On failure, responds with [`SdkError<StartCrawlerError>`](crate::operation::start_crawler::StartCrawlerError)
9    pub fn start_crawler(&self) -> crate::operation::start_crawler::builders::StartCrawlerFluentBuilder {
10        crate::operation::start_crawler::builders::StartCrawlerFluentBuilder::new(self.handle.clone())
11    }
12}