1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ExecuteOpenCypherQuery`](crate::operation::execute_open_cypher_query::builders::ExecuteOpenCypherQueryFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`open_cypher_query(impl Into<String>)`](crate::operation::execute_open_cypher_query::builders::ExecuteOpenCypherQueryFluentBuilder::open_cypher_query) / [`set_open_cypher_query(Option<String>)`](crate::operation::execute_open_cypher_query::builders::ExecuteOpenCypherQueryFluentBuilder::set_open_cypher_query):<br>required: **true**<br><p>The openCypher query string to be executed.</p><br>
    ///   - [`parameters(impl Into<String>)`](crate::operation::execute_open_cypher_query::builders::ExecuteOpenCypherQueryFluentBuilder::parameters) / [`set_parameters(Option<String>)`](crate::operation::execute_open_cypher_query::builders::ExecuteOpenCypherQueryFluentBuilder::set_parameters):<br>required: **false**<br><p>The openCypher query parameters for query execution. See <a href="https://docs.aws.amazon.com/neptune/latest/userguide/opencypher-parameterized-queries.html">Examples of openCypher parameterized queries</a> for more information.</p><br>
    /// - On success, responds with [`ExecuteOpenCypherQueryOutput`](crate::operation::execute_open_cypher_query::ExecuteOpenCypherQueryOutput) with field(s):
    ///   - [`results(Document)`](crate::operation::execute_open_cypher_query::ExecuteOpenCypherQueryOutput::results): <p>The openCypherquery results.</p>
    /// - On failure, responds with [`SdkError<ExecuteOpenCypherQueryError>`](crate::operation::execute_open_cypher_query::ExecuteOpenCypherQueryError)
    pub fn execute_open_cypher_query(&self) -> crate::operation::execute_open_cypher_query::builders::ExecuteOpenCypherQueryFluentBuilder {
        crate::operation::execute_open_cypher_query::builders::ExecuteOpenCypherQueryFluentBuilder::new(self.handle.clone())
    }
}