aws_sdk_glue/client/
get_dataflow_graph.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 [`GetDataflowGraph`](crate::operation::get_dataflow_graph::builders::GetDataflowGraphFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`python_script(impl Into<String>)`](crate::operation::get_dataflow_graph::builders::GetDataflowGraphFluentBuilder::python_script) / [`set_python_script(Option<String>)`](crate::operation::get_dataflow_graph::builders::GetDataflowGraphFluentBuilder::set_python_script):<br>required: **false**<br><p>The Python script to transform.</p><br>
7    /// - On success, responds with [`GetDataflowGraphOutput`](crate::operation::get_dataflow_graph::GetDataflowGraphOutput) with field(s):
8    ///   - [`dag_nodes(Option<Vec::<CodeGenNode>>)`](crate::operation::get_dataflow_graph::GetDataflowGraphOutput::dag_nodes): <p>A list of the nodes in the resulting DAG.</p>
9    ///   - [`dag_edges(Option<Vec::<CodeGenEdge>>)`](crate::operation::get_dataflow_graph::GetDataflowGraphOutput::dag_edges): <p>A list of the edges in the resulting DAG.</p>
10    /// - On failure, responds with [`SdkError<GetDataflowGraphError>`](crate::operation::get_dataflow_graph::GetDataflowGraphError)
11    pub fn get_dataflow_graph(&self) -> crate::operation::get_dataflow_graph::builders::GetDataflowGraphFluentBuilder {
12        crate::operation::get_dataflow_graph::builders::GetDataflowGraphFluentBuilder::new(self.handle.clone())
13    }
14}