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 [`GetGremlinQueryStatus`](crate::operation::get_gremlin_query_status::builders::GetGremlinQueryStatusFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    /// - On success, responds with [`GetGremlinQueryStatusOutput`](crate::operation::get_gremlin_query_status::GetGremlinQueryStatusOutput) with field(s):
    ///   - [`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>
    ///   - [`query_string(Option<String>)`](crate::operation::get_gremlin_query_status::GetGremlinQueryStatusOutput::query_string): <p>The Gremlin query string.</p>
    ///   - [`query_eval_stats(Option<QueryEvalStats>)`](crate::operation::get_gremlin_query_status::GetGremlinQueryStatusOutput::query_eval_stats): <p>The evaluation status of the Gremlin query.</p>
    /// - On failure, responds with [`SdkError<GetGremlinQueryStatusError>`](crate::operation::get_gremlin_query_status::GetGremlinQueryStatusError)
    pub fn get_gremlin_query_status(&self) -> crate::operation::get_gremlin_query_status::builders::GetGremlinQueryStatusFluentBuilder {
        crate::operation::get_gremlin_query_status::builders::GetGremlinQueryStatusFluentBuilder::new(self.handle.clone())
    }
}