aws_sdk_mediaconnect/waiters/
input_active.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `input_active` 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 InputActiveFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::get_router_input::builders::GetRouterInputInputBuilder,
18}
19impl InputActiveFluentBuilder {
20    /// Creates a new `InputActiveFluentBuilder`.
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 GetRouterInput as a reference.
28    pub fn as_input(&self) -> &crate::operation::get_router_input::builders::GetRouterInputInputBuilder {
29        &self.inner
30    }
31    /// Wait until the Input is ACTIVE
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<crate::waiters::input_active::InputActiveFinalPoll, crate::waiters::input_active::WaitUntilInputActiveError> {
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_router_input::GetRouterInput::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::get_router_input::GetRouterInputOutput,
56            &crate::operation::get_router_input::GetRouterInputError,
57        >| {
58            // Matches: {"output":{"path":"RouterInput.State","expected":"ACTIVE","comparator":"stringEquals"}}
59            if crate::waiters::matchers::match_get_router_input_f23fc9dd921da7fbc(result) {
60                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
61            }
62            // Matches: {"output":{"path":"RouterInput.State","expected":"STARTING","comparator":"stringEquals"}}
63            if crate::waiters::matchers::match_get_router_input_0223b7a37a8de1d45(result) {
64                return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
65            }
66            // Matches: {"output":{"path":"RouterInput.State","expected":"UPDATING","comparator":"stringEquals"}}
67            if crate::waiters::matchers::match_get_router_input_eb00a4469dfee9c67(result) {
68                return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
69            }
70            // Matches: {"errorType":"InternalServerErrorException"}
71            if crate::waiters::matchers::match_get_router_input_23a4ee68df28eed70(result) {
72                return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
73            }
74            // Matches: {"errorType":"ServiceUnavailableException"}
75            if crate::waiters::matchers::match_get_router_input_370bdfc8b90a93f70(result) {
76                return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
77            }
78            // Matches: {"output":{"path":"RouterInput.State","expected":"ERROR","comparator":"stringEquals"}}
79            if crate::waiters::matchers::match_get_router_input_50c992a3067eafa8a(result) {
80                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
81            }
82            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
83        };
84        let operation = move || {
85            let input = input.clone();
86            let runtime_plugins = runtime_plugins.clone();
87            async move { crate::operation::get_router_input::GetRouterInput::orchestrate(&runtime_plugins, input).await }
88        };
89        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
90            .min_delay(::std::time::Duration::from_secs(3))
91            .max_delay(::std::time::Duration::from_secs(120))
92            .max_wait(max_wait)
93            .time_source(time_source)
94            .sleep_impl(sleep_impl)
95            .acceptor(acceptor)
96            .operation(operation)
97            .build();
98        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
99    }
100    /// <p>The Amazon Resource Name (ARN) of the router input to retrieve information about.</p>
101    pub fn arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
102        self.inner = self.inner.arn(input.into());
103        self
104    }
105    /// <p>The Amazon Resource Name (ARN) of the router input to retrieve information about.</p>
106    pub fn set_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
107        self.inner = self.inner.set_arn(input);
108        self
109    }
110    /// <p>The Amazon Resource Name (ARN) of the router input to retrieve information about.</p>
111    pub fn get_arn(&self) -> &::std::option::Option<::std::string::String> {
112        self.inner.get_arn()
113    }
114}
115
116/// Successful return type for the `input_active` waiter.
117pub type InputActiveFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
118    crate::operation::get_router_input::GetRouterInputOutput,
119    ::aws_smithy_runtime_api::client::result::SdkError<
120        crate::operation::get_router_input::GetRouterInputError,
121        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
122    >,
123>;
124
125/// Error type for the `input_active` waiter.
126pub type WaitUntilInputActiveError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
127    crate::operation::get_router_input::GetRouterInputOutput,
128    crate::operation::get_router_input::GetRouterInputError,
129>;