1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetWorkflows`](crate::operation::batch_get_workflows::builders::BatchGetWorkflowsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`BatchGetWorkflowsOutput`](crate::operation::batch_get_workflows::BatchGetWorkflowsOutput) with field(s):
    ///   - [`workflows(Option<Vec::<Workflow>>)`](crate::operation::batch_get_workflows::BatchGetWorkflowsOutput::workflows): <p>A list of workflow resource metadata.</p>
    ///   - [`missing_workflows(Option<Vec::<String>>)`](crate::operation::batch_get_workflows::BatchGetWorkflowsOutput::missing_workflows): <p>A list of names of workflows not found.</p>
    /// - On failure, responds with [`SdkError<BatchGetWorkflowsError>`](crate::operation::batch_get_workflows::BatchGetWorkflowsError)
    pub fn batch_get_workflows(&self) -> crate::operation::batch_get_workflows::builders::BatchGetWorkflowsFluentBuilder {
        crate::operation::batch_get_workflows::builders::BatchGetWorkflowsFluentBuilder::new(self.handle.clone())
    }
}