aws_sdk_omics/waiters/
task_running.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `task_running` 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 TaskRunningFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::get_run_task::builders::GetRunTaskInputBuilder,
18}
19impl TaskRunningFluentBuilder {
20    /// Creates a new `TaskRunningFluentBuilder`.
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 GetRunTask as a reference.
28    pub fn as_input(&self) -> &crate::operation::get_run_task::builders::GetRunTaskInputBuilder {
29        &self.inner
30    }
31    /// Wait until a task is running.
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<crate::waiters::task_running::TaskRunningFinalPoll, crate::waiters::task_running::WaitUntilTaskRunningError> {
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_run_task::GetRunTask::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_run_task::GetRunTaskOutput,
56            &crate::operation::get_run_task::GetRunTaskError,
57        >| {
58            // Matches: {"output":{"path":"status","expected":"RUNNING","comparator":"stringEquals"}}
59            if crate::waiters::matchers::match_get_run_task_7943b3b995e719e2c(result) {
60                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
61            }
62            // Matches: {"output":{"path":"status","expected":"PENDING","comparator":"stringEquals"}}
63            if crate::waiters::matchers::match_get_run_task_cf7012a6288344f38(result) {
64                return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
65            }
66            // Matches: {"output":{"path":"status","expected":"STARTING","comparator":"stringEquals"}}
67            if crate::waiters::matchers::match_get_run_task_52681d39a0a9cabe6(result) {
68                return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
69            }
70            // Matches: {"output":{"path":"status","expected":"FAILED","comparator":"stringEquals"}}
71            if crate::waiters::matchers::match_get_run_task_f9c483f08ce8cb218(result) {
72                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
73            }
74            // Matches: {"output":{"path":"status","expected":"CANCELLED","comparator":"stringEquals"}}
75            if crate::waiters::matchers::match_get_run_task_4ddbeb25cc5547dc0(result) {
76                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
77            }
78            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
79        };
80        let operation = move || {
81            let input = input.clone();
82            let runtime_plugins = runtime_plugins.clone();
83            async move { crate::operation::get_run_task::GetRunTask::orchestrate(&runtime_plugins, input).await }
84        };
85        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
86            .min_delay(::std::time::Duration::from_secs(30))
87            .max_delay(::std::time::Duration::from_secs(600))
88            .max_wait(max_wait)
89            .time_source(time_source)
90            .sleep_impl(sleep_impl)
91            .acceptor(acceptor)
92            .operation(operation)
93            .build();
94        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
95    }
96    /// <p>The workflow run ID.</p>
97    pub fn id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
98        self.inner = self.inner.id(input.into());
99        self
100    }
101    /// <p>The workflow run ID.</p>
102    pub fn set_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
103        self.inner = self.inner.set_id(input);
104        self
105    }
106    /// <p>The workflow run ID.</p>
107    pub fn get_id(&self) -> &::std::option::Option<::std::string::String> {
108        self.inner.get_id()
109    }
110    /// <p>The task's ID.</p>
111    pub fn task_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
112        self.inner = self.inner.task_id(input.into());
113        self
114    }
115    /// <p>The task's ID.</p>
116    pub fn set_task_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
117        self.inner = self.inner.set_task_id(input);
118        self
119    }
120    /// <p>The task's ID.</p>
121    pub fn get_task_id(&self) -> &::std::option::Option<::std::string::String> {
122        self.inner.get_task_id()
123    }
124}
125
126/// Successful return type for the `task_running` waiter.
127pub type TaskRunningFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
128    crate::operation::get_run_task::GetRunTaskOutput,
129    ::aws_smithy_runtime_api::client::result::SdkError<
130        crate::operation::get_run_task::GetRunTaskError,
131        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
132    >,
133>;
134
135/// Error type for the `task_running` waiter.
136pub type WaitUntilTaskRunningError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
137    crate::operation::get_run_task::GetRunTaskOutput,
138    crate::operation::get_run_task::GetRunTaskError,
139>;