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