1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ExecuteOpenCypherExplainQuery`](crate::operation::execute_open_cypher_explain_query::builders::ExecuteOpenCypherExplainQueryFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`open_cypher_query(impl Into<String>)`](crate::operation::execute_open_cypher_explain_query::builders::ExecuteOpenCypherExplainQueryFluentBuilder::open_cypher_query) / [`set_open_cypher_query(Option<String>)`](crate::operation::execute_open_cypher_explain_query::builders::ExecuteOpenCypherExplainQueryFluentBuilder::set_open_cypher_query):<br>required: **true**<br><p>The openCypher query string.</p><br>
    ///   - [`parameters(impl Into<String>)`](crate::operation::execute_open_cypher_explain_query::builders::ExecuteOpenCypherExplainQueryFluentBuilder::parameters) / [`set_parameters(Option<String>)`](crate::operation::execute_open_cypher_explain_query::builders::ExecuteOpenCypherExplainQueryFluentBuilder::set_parameters):<br>required: **false**<br><p>The openCypher query parameters.</p><br>
    ///   - [`explain_mode(OpenCypherExplainMode)`](crate::operation::execute_open_cypher_explain_query::builders::ExecuteOpenCypherExplainQueryFluentBuilder::explain_mode) / [`set_explain_mode(Option<OpenCypherExplainMode>)`](crate::operation::execute_open_cypher_explain_query::builders::ExecuteOpenCypherExplainQueryFluentBuilder::set_explain_mode):<br>required: **true**<br><p>The openCypher <code>explain</code> mode. Can be one of: <code>static</code>, <code>dynamic</code>, or <code>details</code>.</p><br>
    /// - On success, responds with [`ExecuteOpenCypherExplainQueryOutput`](crate::operation::execute_open_cypher_explain_query::ExecuteOpenCypherExplainQueryOutput) with field(s):
    ///   - [`results(Blob)`](crate::operation::execute_open_cypher_explain_query::ExecuteOpenCypherExplainQueryOutput::results): <p>A text blob containing the openCypher <code>explain</code> results.</p>
    /// - On failure, responds with [`SdkError<ExecuteOpenCypherExplainQueryError>`](crate::operation::execute_open_cypher_explain_query::ExecuteOpenCypherExplainQueryError)
    pub fn execute_open_cypher_explain_query(
        &self,
    ) -> crate::operation::execute_open_cypher_explain_query::builders::ExecuteOpenCypherExplainQueryFluentBuilder {
        crate::operation::execute_open_cypher_explain_query::builders::ExecuteOpenCypherExplainQueryFluentBuilder::new(self.handle.clone())
    }
}