aws_sdk_neptunegraph/waiters/
private_graph_endpoint_available.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `private_graph_endpoint_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 PrivateGraphEndpointAvailableFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::get_private_graph_endpoint::builders::GetPrivateGraphEndpointInputBuilder,
18}
19impl PrivateGraphEndpointAvailableFluentBuilder {
20    /// Creates a new `PrivateGraphEndpointAvailableFluentBuilder`.
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 GetPrivateGraphEndpoint as a reference.
28    pub fn as_input(&self) -> &crate::operation::get_private_graph_endpoint::builders::GetPrivateGraphEndpointInputBuilder {
29        &self.inner
30    }
31    /// Wait until PrivateGraphEndpoint is Available
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<
36        crate::waiters::private_graph_endpoint_available::PrivateGraphEndpointAvailableFinalPoll,
37        crate::waiters::private_graph_endpoint_available::WaitUntilPrivateGraphEndpointAvailableError,
38    > {
39        let input = self
40            .inner
41            .build()
42            .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
43        let runtime_plugins = crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpoint::operation_runtime_plugins(
44            self.handle.runtime_plugins.clone(),
45            &self.handle.conf,
46            ::std::option::Option::None,
47        )
48        .with_operation_plugin(crate::sdk_feature_tracker::waiter::WaiterFeatureTrackerRuntimePlugin::new());
49        let mut cfg = ::aws_smithy_types::config_bag::ConfigBag::base();
50        let runtime_components_builder = runtime_plugins
51            .apply_client_configuration(&mut cfg)
52            .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
53        let time_components = runtime_components_builder.into_time_components();
54        let sleep_impl = time_components.sleep_impl().expect("a sleep impl is required by waiters");
55        let time_source = time_components.time_source().expect("a time source is required by waiters");
56
57        let acceptor = move |result: ::std::result::Result<
58            &crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpointOutput,
59            &crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpointError,
60        >| {
61            // Matches: {"output":{"path":"status","expected":"DELETING","comparator":"stringEquals"}}
62            if crate::waiters::matchers::match_get_private_graph_endpoint_ac9cf40eec4f10ab5(result) {
63                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
64            }
65            // Matches: {"output":{"path":"status","expected":"FAILED","comparator":"stringEquals"}}
66            if crate::waiters::matchers::match_get_private_graph_endpoint_f9c483f08ce8cb218(result) {
67                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
68            }
69            // Matches: {"output":{"path":"status","expected":"AVAILABLE","comparator":"stringEquals"}}
70            if crate::waiters::matchers::match_get_private_graph_endpoint_c07d78a200bcd8560(result) {
71                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
72            }
73            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
74        };
75        let operation = move || {
76            let input = input.clone();
77            let runtime_plugins = runtime_plugins.clone();
78            async move { crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpoint::orchestrate(&runtime_plugins, input).await }
79        };
80        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
81            .min_delay(::std::time::Duration::from_secs(10))
82            .max_delay(::std::time::Duration::from_secs(1800))
83            .max_wait(max_wait)
84            .time_source(time_source)
85            .sleep_impl(sleep_impl)
86            .acceptor(acceptor)
87            .operation(operation)
88            .build();
89        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
90    }
91    /// <p>The unique identifier of the Neptune Analytics graph.</p>
92    pub fn graph_identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
93        self.inner = self.inner.graph_identifier(input.into());
94        self
95    }
96    /// <p>The unique identifier of the Neptune Analytics graph.</p>
97    pub fn set_graph_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
98        self.inner = self.inner.set_graph_identifier(input);
99        self
100    }
101    /// <p>The unique identifier of the Neptune Analytics graph.</p>
102    pub fn get_graph_identifier(&self) -> &::std::option::Option<::std::string::String> {
103        self.inner.get_graph_identifier()
104    }
105    /// <p>The ID of the VPC where the private endpoint is located.</p>
106    pub fn vpc_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
107        self.inner = self.inner.vpc_id(input.into());
108        self
109    }
110    /// <p>The ID of the VPC where the private endpoint is located.</p>
111    pub fn set_vpc_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
112        self.inner = self.inner.set_vpc_id(input);
113        self
114    }
115    /// <p>The ID of the VPC where the private endpoint is located.</p>
116    pub fn get_vpc_id(&self) -> &::std::option::Option<::std::string::String> {
117        self.inner.get_vpc_id()
118    }
119}
120
121/// Successful return type for the `private_graph_endpoint_available` waiter.
122pub type PrivateGraphEndpointAvailableFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
123    crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpointOutput,
124    ::aws_smithy_runtime_api::client::result::SdkError<
125        crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpointError,
126        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
127    >,
128>;
129
130/// Error type for the `private_graph_endpoint_available` waiter.
131pub type WaitUntilPrivateGraphEndpointAvailableError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
132    crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpointOutput,
133    crate::operation::get_private_graph_endpoint::GetPrivateGraphEndpointError,
134>;