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