aws_sdk_lexmodelsv2/waiters/
bot_locale_express_testing_available.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `bot_locale_express_testing_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 BotLocaleExpressTestingAvailableFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::describe_bot_locale::builders::DescribeBotLocaleInputBuilder,
18}
19impl BotLocaleExpressTestingAvailableFluentBuilder {
20    /// Creates a new `BotLocaleExpressTestingAvailableFluentBuilder`.
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 DescribeBotLocale as a reference.
28    pub fn as_input(&self) -> &crate::operation::describe_bot_locale::builders::DescribeBotLocaleInputBuilder {
29        &self.inner
30    }
31    /// Wait until a bot locale build is ready for express testing
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<
36        crate::waiters::bot_locale_express_testing_available::BotLocaleExpressTestingAvailableFinalPoll,
37        crate::waiters::bot_locale_express_testing_available::WaitUntilBotLocaleExpressTestingAvailableError,
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_bot_locale::DescribeBotLocale::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_bot_locale::DescribeBotLocaleOutput,
59            &crate::operation::describe_bot_locale::DescribeBotLocaleError,
60        >| {
61            // Matches: {"output":{"path":"botLocaleStatus","expected":"Built","comparator":"stringEquals"}}
62            if crate::waiters::matchers::match_describe_bot_locale_8ae807cb857c585fd(result) {
63                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64            }
65            // Matches: {"output":{"path":"botLocaleStatus","expected":"ReadyExpressTesting","comparator":"stringEquals"}}
66            if crate::waiters::matchers::match_describe_bot_locale_47b08019c6b65b97a(result) {
67                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
68            }
69            // Matches: {"output":{"path":"botLocaleStatus","expected":"Deleting","comparator":"stringEquals"}}
70            if crate::waiters::matchers::match_describe_bot_locale_42575f9e2ecd93849(result) {
71                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
72            }
73            // Matches: {"output":{"path":"botLocaleStatus","expected":"Failed","comparator":"stringEquals"}}
74            if crate::waiters::matchers::match_describe_bot_locale_48fa8bbe7816af579(result) {
75                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
76            }
77            // Matches: {"output":{"path":"botLocaleStatus","expected":"NotBuilt","comparator":"stringEquals"}}
78            if crate::waiters::matchers::match_describe_bot_locale_b8322e8fa2e87daa4(result) {
79                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
80            }
81            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
82        };
83        let operation = move || {
84            let input = input.clone();
85            let runtime_plugins = runtime_plugins.clone();
86            async move { crate::operation::describe_bot_locale::DescribeBotLocale::orchestrate(&runtime_plugins, input).await }
87        };
88        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
89            .min_delay(::std::time::Duration::from_secs(10))
90            .max_delay(::std::time::Duration::from_secs(120))
91            .max_wait(max_wait)
92            .time_source(time_source)
93            .sleep_impl(sleep_impl)
94            .acceptor(acceptor)
95            .operation(operation)
96            .build();
97        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
98    }
99    /// <p>The identifier of the bot associated with the locale.</p>
100    pub fn bot_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
101        self.inner = self.inner.bot_id(input.into());
102        self
103    }
104    /// <p>The identifier of the bot associated with the locale.</p>
105    pub fn set_bot_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
106        self.inner = self.inner.set_bot_id(input);
107        self
108    }
109    /// <p>The identifier of the bot associated with the locale.</p>
110    pub fn get_bot_id(&self) -> &::std::option::Option<::std::string::String> {
111        self.inner.get_bot_id()
112    }
113    /// <p>The version of the bot associated with the locale.</p>
114    pub fn bot_version(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
115        self.inner = self.inner.bot_version(input.into());
116        self
117    }
118    /// <p>The version of the bot associated with the locale.</p>
119    pub fn set_bot_version(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
120        self.inner = self.inner.set_bot_version(input);
121        self
122    }
123    /// <p>The version of the bot associated with the locale.</p>
124    pub fn get_bot_version(&self) -> &::std::option::Option<::std::string::String> {
125        self.inner.get_bot_version()
126    }
127    /// <p>The unique identifier of the locale to describe. The string must match one of the supported locales. For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html">Supported languages</a>.</p>
128    pub fn locale_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
129        self.inner = self.inner.locale_id(input.into());
130        self
131    }
132    /// <p>The unique identifier of the locale to describe. The string must match one of the supported locales. For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html">Supported languages</a>.</p>
133    pub fn set_locale_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
134        self.inner = self.inner.set_locale_id(input);
135        self
136    }
137    /// <p>The unique identifier of the locale to describe. The string must match one of the supported locales. For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html">Supported languages</a>.</p>
138    pub fn get_locale_id(&self) -> &::std::option::Option<::std::string::String> {
139        self.inner.get_locale_id()
140    }
141}
142
143/// Successful return type for the `bot_locale_express_testing_available` waiter.
144pub type BotLocaleExpressTestingAvailableFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
145    crate::operation::describe_bot_locale::DescribeBotLocaleOutput,
146    ::aws_smithy_runtime_api::client::result::SdkError<
147        crate::operation::describe_bot_locale::DescribeBotLocaleError,
148        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
149    >,
150>;
151
152/// Error type for the `bot_locale_express_testing_available` waiter.
153pub type WaitUntilBotLocaleExpressTestingAvailableError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
154    crate::operation::describe_bot_locale::DescribeBotLocaleOutput,
155    crate::operation::describe_bot_locale::DescribeBotLocaleError,
156>;