aws_sdk_lexmodelsv2/waiters/
bot_available.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `bot_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 BotAvailableFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::describe_bot::builders::DescribeBotInputBuilder,
18}
19impl BotAvailableFluentBuilder {
20    /// Creates a new `BotAvailableFluentBuilder`.
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 DescribeBot as a reference.
28    pub fn as_input(&self) -> &crate::operation::describe_bot::builders::DescribeBotInputBuilder {
29        &self.inner
30    }
31    /// Wait until a bot is available
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<crate::waiters::bot_available::BotAvailableFinalPoll, crate::waiters::bot_available::WaitUntilBotAvailableError> {
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::describe_bot::DescribeBot::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 = move |result: ::std::result::Result<
55            &crate::operation::describe_bot::DescribeBotOutput,
56            &crate::operation::describe_bot::DescribeBotError,
57        >| {
58            // Matches: {"output":{"path":"botStatus","expected":"Available","comparator":"stringEquals"}}
59            if crate::waiters::matchers::match_describe_bot_b02179601eb168096(result) {
60                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
61            }
62            // Matches: {"output":{"path":"botStatus","expected":"Deleting","comparator":"stringEquals"}}
63            if crate::waiters::matchers::match_describe_bot_43ee2b959d4054721(result) {
64                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
65            }
66            // Matches: {"output":{"path":"botStatus","expected":"Failed","comparator":"stringEquals"}}
67            if crate::waiters::matchers::match_describe_bot_3af10a50de73812c2(result) {
68                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
69            }
70            // Matches: {"output":{"path":"botStatus","expected":"Inactive","comparator":"stringEquals"}}
71            if crate::waiters::matchers::match_describe_bot_0043338155d244480(result) {
72                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
73            }
74            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
75        };
76        let operation = move || {
77            let input = input.clone();
78            let runtime_plugins = runtime_plugins.clone();
79            async move { crate::operation::describe_bot::DescribeBot::orchestrate(&runtime_plugins, input).await }
80        };
81        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
82            .min_delay(::std::time::Duration::from_secs(10))
83            .max_delay(::std::time::Duration::from_secs(120))
84            .max_wait(max_wait)
85            .time_source(time_source)
86            .sleep_impl(sleep_impl)
87            .acceptor(acceptor)
88            .operation(operation)
89            .build();
90        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
91    }
92    /// <p>The unique identifier of the bot to describe.</p>
93    pub fn bot_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
94        self.inner = self.inner.bot_id(input.into());
95        self
96    }
97    /// <p>The unique identifier of the bot to describe.</p>
98    pub fn set_bot_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
99        self.inner = self.inner.set_bot_id(input);
100        self
101    }
102    /// <p>The unique identifier of the bot to describe.</p>
103    pub fn get_bot_id(&self) -> &::std::option::Option<::std::string::String> {
104        self.inner.get_bot_id()
105    }
106}
107
108/// Successful return type for the `bot_available` waiter.
109pub type BotAvailableFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
110    crate::operation::describe_bot::DescribeBotOutput,
111    ::aws_smithy_runtime_api::client::result::SdkError<
112        crate::operation::describe_bot::DescribeBotError,
113        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
114    >,
115>;
116
117/// Error type for the `bot_available` waiter.
118pub type WaitUntilBotAvailableError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
119    crate::operation::describe_bot::DescribeBotOutput,
120    crate::operation::describe_bot::DescribeBotError,
121>;