aws_sdk_neptunedata/client/
get_gremlin_query_status.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 [`GetGremlinQueryStatus`](crate::operation::get_gremlin_query_status::builders::GetGremlinQueryStatusFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`query_id(impl Into<String>)`](crate::operation::get_gremlin_query_status::builders::GetGremlinQueryStatusFluentBuilder::query_id) / [`set_query_id(Option<String>)`](crate::operation::get_gremlin_query_status::builders::GetGremlinQueryStatusFluentBuilder::set_query_id):<br>required: **true**<br><p>The unique identifier that identifies the Gremlin query.</p><br>
7    /// - On success, responds with [`GetGremlinQueryStatusOutput`](crate::operation::get_gremlin_query_status::GetGremlinQueryStatusOutput) with field(s):
8    ///   - [`query_id(Option<String>)`](crate::operation::get_gremlin_query_status::GetGremlinQueryStatusOutput::query_id): <p>The ID of the query for which status is being returned.</p>
9    ///   - [`query_string(Option<String>)`](crate::operation::get_gremlin_query_status::GetGremlinQueryStatusOutput::query_string): <p>The Gremlin query string.</p>
10    ///   - [`query_eval_stats(Option<QueryEvalStats>)`](crate::operation::get_gremlin_query_status::GetGremlinQueryStatusOutput::query_eval_stats): <p>The evaluation status of the Gremlin query.</p>
11    /// - On failure, responds with [`SdkError<GetGremlinQueryStatusError>`](crate::operation::get_gremlin_query_status::GetGremlinQueryStatusError)
12    pub fn get_gremlin_query_status(&self) -> crate::operation::get_gremlin_query_status::builders::GetGremlinQueryStatusFluentBuilder {
13        crate::operation::get_gremlin_query_status::builders::GetGremlinQueryStatusFluentBuilder::new(self.handle.clone())
14    }
15}