aws_sdk_neptunegraph/waiters/
graph_stopped.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `graph_stopped` 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 GraphStoppedFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::get_graph::builders::GetGraphInputBuilder,
18}
19impl GraphStoppedFluentBuilder {
20    /// Creates a new `GraphStoppedFluentBuilder`.
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 Stopped
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<crate::waiters::graph_stopped::GraphStoppedFinalPoll, crate::waiters::graph_stopped::WaitUntilGraphStoppedError> {
36        let input = self
37            .inner
38            .build()
39            .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
40        let runtime_plugins = crate::operation::get_graph::GetGraph::operation_runtime_plugins(
41            self.handle.runtime_plugins.clone(),
42            &self.handle.conf,
43            ::std::option::Option::None,
44        )
45        .with_operation_plugin(crate::sdk_feature_tracker::waiter::WaiterFeatureTrackerRuntimePlugin::new());
46        let mut cfg = ::aws_smithy_types::config_bag::ConfigBag::base();
47        let runtime_components_builder = runtime_plugins
48            .apply_client_configuration(&mut cfg)
49            .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
50        let time_components = runtime_components_builder.into_time_components();
51        let sleep_impl = time_components.sleep_impl().expect("a sleep impl is required by waiters");
52        let time_source = time_components.time_source().expect("a time source is required by waiters");
53
54        let acceptor =
55            move |result: ::std::result::Result<&crate::operation::get_graph::GetGraphOutput, &crate::operation::get_graph::GetGraphError>| {
56                // Matches: {"output":{"path":"status","expected":"STOPPED","comparator":"stringEquals"}}
57                if crate::waiters::matchers::match_get_graph_752e7f99f3bc7dc47(result) {
58                    return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
59                }
60                // Matches: {"output":{"path":"status != 'STOPPING'","expected":"true","comparator":"booleanEquals"}}
61                if crate::waiters::matchers::match_get_graph_51e3423ce4acc8538(result) {
62                    return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
63                }
64                ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
65            };
66        let operation = move || {
67            let input = input.clone();
68            let runtime_plugins = runtime_plugins.clone();
69            async move { crate::operation::get_graph::GetGraph::orchestrate(&runtime_plugins, input).await }
70        };
71        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
72            .min_delay(::std::time::Duration::from_secs(20))
73            .max_delay(::std::time::Duration::from_secs(1800))
74            .max_wait(max_wait)
75            .time_source(time_source)
76            .sleep_impl(sleep_impl)
77            .acceptor(acceptor)
78            .operation(operation)
79            .build();
80        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
81    }
82    /// <p>The unique identifier of the Neptune Analytics graph.</p>
83    pub fn graph_identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
84        self.inner = self.inner.graph_identifier(input.into());
85        self
86    }
87    /// <p>The unique identifier of the Neptune Analytics graph.</p>
88    pub fn set_graph_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
89        self.inner = self.inner.set_graph_identifier(input);
90        self
91    }
92    /// <p>The unique identifier of the Neptune Analytics graph.</p>
93    pub fn get_graph_identifier(&self) -> &::std::option::Option<::std::string::String> {
94        self.inner.get_graph_identifier()
95    }
96}
97
98/// Successful return type for the `graph_stopped` waiter.
99pub type GraphStoppedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
100    crate::operation::get_graph::GetGraphOutput,
101    ::aws_smithy_runtime_api::client::result::SdkError<
102        crate::operation::get_graph::GetGraphError,
103        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
104    >,
105>;
106
107/// Error type for the `graph_stopped` waiter.
108pub type WaitUntilGraphStoppedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
109    crate::operation::get_graph::GetGraphOutput,
110    crate::operation::get_graph::GetGraphError,
111>;