aws_sdk_elasticloadbalancingv2/waiters/
load_balancer_available.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `load_balancer_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 LoadBalancerAvailableFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::describe_load_balancers::builders::DescribeLoadBalancersInputBuilder,
18}
19impl LoadBalancerAvailableFluentBuilder {
20    /// Creates a new `LoadBalancerAvailableFluentBuilder`.
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 DescribeLoadBalancers as a reference.
28    pub fn as_input(&self) -> &crate::operation::describe_load_balancers::builders::DescribeLoadBalancersInputBuilder {
29        &self.inner
30    }
31    /// Wait for `load_balancer_available`
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<
36        crate::waiters::load_balancer_available::LoadBalancerAvailableFinalPoll,
37        crate::waiters::load_balancer_available::WaitUntilLoadBalancerAvailableError,
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::describe_load_balancers::DescribeLoadBalancers::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::describe_load_balancers::DescribeLoadBalancersOutput,
59            &crate::operation::describe_load_balancers::DescribeLoadBalancersError,
60        >| {
61            // Matches: {"output":{"path":"LoadBalancers[].State.Code","expected":"active","comparator":"allStringEquals"}}
62            if crate::waiters::matchers::match_describe_load_balancers_c74fe109e496dabfe(result) {
63                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64            }
65            // Matches: {"output":{"path":"LoadBalancers[].State.Code","expected":"provisioning","comparator":"anyStringEquals"}}
66            if crate::waiters::matchers::match_describe_load_balancers_6a8c1dde616c542f3(result) {
67                return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
68            }
69            // Matches: {"errorType":"LoadBalancerNotFound"}
70            if crate::waiters::matchers::match_describe_load_balancers_5d8e90ea6f1c3cb8d(result) {
71                return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
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::describe_load_balancers::DescribeLoadBalancers::orchestrate(&runtime_plugins, input).await }
79        };
80        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
81            .min_delay(::std::time::Duration::from_secs(15))
82            .max_delay(::std::time::Duration::from_secs(120))
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    ///
92    /// Appends an item to `LoadBalancerArns`.
93    ///
94    /// To override the contents of this collection use [`set_load_balancer_arns`](Self::set_load_balancer_arns).
95    ///
96    /// <p>The Amazon Resource Names (ARN) of the load balancers. You can specify up to 20 load balancers in a single call.</p>
97    pub fn load_balancer_arns(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
98        self.inner = self.inner.load_balancer_arns(input.into());
99        self
100    }
101    /// <p>The Amazon Resource Names (ARN) of the load balancers. You can specify up to 20 load balancers in a single call.</p>
102    pub fn set_load_balancer_arns(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
103        self.inner = self.inner.set_load_balancer_arns(input);
104        self
105    }
106    /// <p>The Amazon Resource Names (ARN) of the load balancers. You can specify up to 20 load balancers in a single call.</p>
107    pub fn get_load_balancer_arns(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
108        self.inner.get_load_balancer_arns()
109    }
110    ///
111    /// Appends an item to `Names`.
112    ///
113    /// To override the contents of this collection use [`set_names`](Self::set_names).
114    ///
115    /// <p>The names of the load balancers.</p>
116    pub fn names(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
117        self.inner = self.inner.names(input.into());
118        self
119    }
120    /// <p>The names of the load balancers.</p>
121    pub fn set_names(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
122        self.inner = self.inner.set_names(input);
123        self
124    }
125    /// <p>The names of the load balancers.</p>
126    pub fn get_names(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
127        self.inner.get_names()
128    }
129    /// <p>The marker for the next set of results. (You received this marker from a previous call.)</p>
130    pub fn marker(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
131        self.inner = self.inner.marker(input.into());
132        self
133    }
134    /// <p>The marker for the next set of results. (You received this marker from a previous call.)</p>
135    pub fn set_marker(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
136        self.inner = self.inner.set_marker(input);
137        self
138    }
139    /// <p>The marker for the next set of results. (You received this marker from a previous call.)</p>
140    pub fn get_marker(&self) -> &::std::option::Option<::std::string::String> {
141        self.inner.get_marker()
142    }
143    /// <p>The maximum number of results to return with this call.</p>
144    pub fn page_size(mut self, input: i32) -> Self {
145        self.inner = self.inner.page_size(input);
146        self
147    }
148    /// <p>The maximum number of results to return with this call.</p>
149    pub fn set_page_size(mut self, input: ::std::option::Option<i32>) -> Self {
150        self.inner = self.inner.set_page_size(input);
151        self
152    }
153    /// <p>The maximum number of results to return with this call.</p>
154    pub fn get_page_size(&self) -> &::std::option::Option<i32> {
155        self.inner.get_page_size()
156    }
157}
158
159/// Successful return type for the `load_balancer_available` waiter.
160pub type LoadBalancerAvailableFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
161    crate::operation::describe_load_balancers::DescribeLoadBalancersOutput,
162    ::aws_smithy_runtime_api::client::result::SdkError<
163        crate::operation::describe_load_balancers::DescribeLoadBalancersError,
164        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
165    >,
166>;
167
168/// Error type for the `load_balancer_available` waiter.
169pub type WaitUntilLoadBalancerAvailableError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
170    crate::operation::describe_load_balancers::DescribeLoadBalancersOutput,
171    crate::operation::describe_load_balancers::DescribeLoadBalancersError,
172>;