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 [`ExecuteGremlinExplainQuery`](crate::operation::execute_gremlin_explain_query::builders::ExecuteGremlinExplainQueryFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`gremlin_query(impl Into<String>)`](crate::operation::execute_gremlin_explain_query::builders::ExecuteGremlinExplainQueryFluentBuilder::gremlin_query) / [`set_gremlin_query(Option<String>)`](crate::operation::execute_gremlin_explain_query::builders::ExecuteGremlinExplainQueryFluentBuilder::set_gremlin_query):<br>required: **true**<br><p>The Gremlin explain query string.</p><br>
    /// - On success, responds with [`ExecuteGremlinExplainQueryOutput`](crate::operation::execute_gremlin_explain_query::ExecuteGremlinExplainQueryOutput) with field(s):
    ///   - [`output(Option<Blob>)`](crate::operation::execute_gremlin_explain_query::ExecuteGremlinExplainQueryOutput::output): <p>A text blob containing the Gremlin explain result, as described in <a href="https://docs.aws.amazon.com/neptune/latest/userguide/gremlin-traversal-tuning.html">Tuning Gremlin queries</a>.</p>
    /// - On failure, responds with [`SdkError<ExecuteGremlinExplainQueryError>`](crate::operation::execute_gremlin_explain_query::ExecuteGremlinExplainQueryError)
    pub fn execute_gremlin_explain_query(
        &self,
    ) -> crate::operation::execute_gremlin_explain_query::builders::ExecuteGremlinExplainQueryFluentBuilder {
        crate::operation::execute_gremlin_explain_query::builders::ExecuteGremlinExplainQueryFluentBuilder::new(self.handle.clone())
    }
}