aws_sdk_glue/client/batch_get_crawlers.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 [`BatchGetCrawlers`](crate::operation::batch_get_crawlers::builders::BatchGetCrawlersFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`crawler_names(impl Into<String>)`](crate::operation::batch_get_crawlers::builders::BatchGetCrawlersFluentBuilder::crawler_names) / [`set_crawler_names(Option<Vec::<String>>)`](crate::operation::batch_get_crawlers::builders::BatchGetCrawlersFluentBuilder::set_crawler_names):<br>required: **true**<br><p>A list of crawler names, which might be the names returned from the <code>ListCrawlers</code> operation.</p><br>
7 /// - On success, responds with [`BatchGetCrawlersOutput`](crate::operation::batch_get_crawlers::BatchGetCrawlersOutput) with field(s):
8 /// - [`crawlers(Option<Vec::<Crawler>>)`](crate::operation::batch_get_crawlers::BatchGetCrawlersOutput::crawlers): <p>A list of crawler definitions.</p>
9 /// - [`crawlers_not_found(Option<Vec::<String>>)`](crate::operation::batch_get_crawlers::BatchGetCrawlersOutput::crawlers_not_found): <p>A list of names of crawlers that were not found.</p>
10 /// - On failure, responds with [`SdkError<BatchGetCrawlersError>`](crate::operation::batch_get_crawlers::BatchGetCrawlersError)
11 pub fn batch_get_crawlers(&self) -> crate::operation::batch_get_crawlers::builders::BatchGetCrawlersFluentBuilder {
12 crate::operation::batch_get_crawlers::builders::BatchGetCrawlersFluentBuilder::new(self.handle.clone())
13 }
14}