aws_sdk_glue/client/batch_get_workflows.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 [`BatchGetWorkflows`](crate::operation::batch_get_workflows::builders::BatchGetWorkflowsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`names(impl Into<String>)`](crate::operation::batch_get_workflows::builders::BatchGetWorkflowsFluentBuilder::names) / [`set_names(Option<Vec::<String>>)`](crate::operation::batch_get_workflows::builders::BatchGetWorkflowsFluentBuilder::set_names):<br>required: **true**<br><p>A list of workflow names, which may be the names returned from the <code>ListWorkflows</code> operation.</p><br>
7 /// - [`include_graph(bool)`](crate::operation::batch_get_workflows::builders::BatchGetWorkflowsFluentBuilder::include_graph) / [`set_include_graph(Option<bool>)`](crate::operation::batch_get_workflows::builders::BatchGetWorkflowsFluentBuilder::set_include_graph):<br>required: **false**<br><p>Specifies whether to include a graph when returning the workflow resource metadata.</p><br>
8 /// - On success, responds with [`BatchGetWorkflowsOutput`](crate::operation::batch_get_workflows::BatchGetWorkflowsOutput) with field(s):
9 /// - [`workflows(Option<Vec::<Workflow>>)`](crate::operation::batch_get_workflows::BatchGetWorkflowsOutput::workflows): <p>A list of workflow resource metadata.</p>
10 /// - [`missing_workflows(Option<Vec::<String>>)`](crate::operation::batch_get_workflows::BatchGetWorkflowsOutput::missing_workflows): <p>A list of names of workflows not found.</p>
11 /// - On failure, responds with [`SdkError<BatchGetWorkflowsError>`](crate::operation::batch_get_workflows::BatchGetWorkflowsError)
12 pub fn batch_get_workflows(&self) -> crate::operation::batch_get_workflows::builders::BatchGetWorkflowsFluentBuilder {
13 crate::operation::batch_get_workflows::builders::BatchGetWorkflowsFluentBuilder::new(self.handle.clone())
14 }
15}