aws_sdk_neptunegraph/waiters/
graph_available.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `graph_available` waiter.
5///
6/// This builder is intended to be used similar to the other fluent builders for
7/// normal operations on the client. However, instead of a `send` method, it has
8/// a `wait` method that takes a maximum amount of time to wait.
9///
10/// Construct this fluent builder using the client by importing the
11/// [`Waiters`](crate::client::Waiters) trait and calling the methods
12/// prefixed with `wait_until`.
13///
14#[derive(::std::clone::Clone, ::std::fmt::Debug)]
15pub struct GraphAvailableFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::get_graph::builders::GetGraphInputBuilder,
18}
19impl GraphAvailableFluentBuilder {
20    /// Creates a new `GraphAvailableFluentBuilder`.
21    pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
22        Self {
23            handle,
24            inner: ::std::default::Default::default(),
25        }
26    }
27    /// Access the GetGraph as a reference.
28    pub fn as_input(&self) -> &crate::operation::get_graph::builders::GetGraphInputBuilder {
29        &self.inner
30    }
31    /// Wait until Graph is Available
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<crate::waiters::graph_available::GraphAvailableFinalPoll, crate::waiters::graph_available::WaitUntilGraphAvailableError>
36    {
37        let input = self
38            .inner
39            .build()
40            .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
41        let runtime_plugins = crate::operation::get_graph::GetGraph::operation_runtime_plugins(
42            self.handle.runtime_plugins.clone(),
43            &self.handle.conf,
44            ::std::option::Option::None,
45        )
46        .with_operation_plugin(crate::sdk_feature_tracker::waiter::WaiterFeatureTrackerRuntimePlugin::new());
47        let mut cfg = ::aws_smithy_types::config_bag::ConfigBag::base();
48        let runtime_components_builder = runtime_plugins
49            .apply_client_configuration(&mut cfg)
50            .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
51        let time_components = runtime_components_builder.into_time_components();
52        let sleep_impl = time_components.sleep_impl().expect("a sleep impl is required by waiters");
53        let time_source = time_components.time_source().expect("a time source is required by waiters");
54
55        let acceptor =
56            move |result: ::std::result::Result<&crate::operation::get_graph::GetGraphOutput, &crate::operation::get_graph::GetGraphError>| {
57                // Matches: {"output":{"path":"status","expected":"DELETING","comparator":"stringEquals"}}
58                if crate::waiters::matchers::match_get_graph_ac9cf40eec4f10ab5(result) {
59                    return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
60                }
61                // Matches: {"output":{"path":"status","expected":"FAILED","comparator":"stringEquals"}}
62                if crate::waiters::matchers::match_get_graph_f9c483f08ce8cb218(result) {
63                    return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
64                }
65                // Matches: {"output":{"path":"status","expected":"AVAILABLE","comparator":"stringEquals"}}
66                if crate::waiters::matchers::match_get_graph_c07d78a200bcd8560(result) {
67                    return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
68                }
69                ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
70            };
71        let operation = move || {
72            let input = input.clone();
73            let runtime_plugins = runtime_plugins.clone();
74            async move { crate::operation::get_graph::GetGraph::orchestrate(&runtime_plugins, input).await }
75        };
76        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
77            .min_delay(::std::time::Duration::from_secs(60))
78            .max_delay(::std::time::Duration::from_secs(28800))
79            .max_wait(max_wait)
80            .time_source(time_source)
81            .sleep_impl(sleep_impl)
82            .acceptor(acceptor)
83            .operation(operation)
84            .build();
85        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
86    }
87    /// <p>The unique identifier of the Neptune Analytics graph.</p>
88    pub fn graph_identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
89        self.inner = self.inner.graph_identifier(input.into());
90        self
91    }
92    /// <p>The unique identifier of the Neptune Analytics graph.</p>
93    pub fn set_graph_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
94        self.inner = self.inner.set_graph_identifier(input);
95        self
96    }
97    /// <p>The unique identifier of the Neptune Analytics graph.</p>
98    pub fn get_graph_identifier(&self) -> &::std::option::Option<::std::string::String> {
99        self.inner.get_graph_identifier()
100    }
101}
102
103/// Successful return type for the `graph_available` waiter.
104pub type GraphAvailableFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
105    crate::operation::get_graph::GetGraphOutput,
106    ::aws_smithy_runtime_api::client::result::SdkError<
107        crate::operation::get_graph::GetGraphError,
108        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
109    >,
110>;
111
112/// Error type for the `graph_available` waiter.
113pub type WaitUntilGraphAvailableError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
114    crate::operation::get_graph::GetGraphOutput,
115    crate::operation::get_graph::GetGraphError,
116>;