aws_sdk_elastictranscoder/waiters/
job_complete.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `job_complete` 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 JobCompleteFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::read_job::builders::ReadJobInputBuilder,
18}
19impl JobCompleteFluentBuilder {
20    /// Creates a new `JobCompleteFluentBuilder`.
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 ReadJob as a reference.
28    pub fn as_input(&self) -> &crate::operation::read_job::builders::ReadJobInputBuilder {
29        &self.inner
30    }
31    /// Wait for `job_complete`
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<crate::waiters::job_complete::JobCompleteFinalPoll, crate::waiters::job_complete::WaitUntilJobCompleteError> {
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::read_job::ReadJob::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<&crate::operation::read_job::ReadJobOutput, &crate::operation::read_job::ReadJobError>| {
55            // Matches: {"output":{"path":"Job.Status","expected":"Complete","comparator":"stringEquals"}}
56            if crate::waiters::matchers::match_read_job_e9ad157648f804454(result) {
57                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
58            }
59            // Matches: {"output":{"path":"Job.Status","expected":"Canceled","comparator":"stringEquals"}}
60            if crate::waiters::matchers::match_read_job_777d5cd68417b7f62(result) {
61                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
62            }
63            // Matches: {"output":{"path":"Job.Status","expected":"Error","comparator":"stringEquals"}}
64            if crate::waiters::matchers::match_read_job_aaf4764932a1f5572(result) {
65                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
66            }
67            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
68        };
69        let operation = move || {
70            let input = input.clone();
71            let runtime_plugins = runtime_plugins.clone();
72            async move { crate::operation::read_job::ReadJob::orchestrate(&runtime_plugins, input).await }
73        };
74        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
75            .min_delay(::std::time::Duration::from_secs(30))
76            .max_delay(::std::time::Duration::from_secs(120))
77            .max_wait(max_wait)
78            .time_source(time_source)
79            .sleep_impl(sleep_impl)
80            .acceptor(acceptor)
81            .operation(operation)
82            .build();
83        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
84    }
85    /// <p>The identifier of the job for which you want to get detailed information.</p>
86    pub fn id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
87        self.inner = self.inner.id(input.into());
88        self
89    }
90    /// <p>The identifier of the job for which you want to get detailed information.</p>
91    pub fn set_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
92        self.inner = self.inner.set_id(input);
93        self
94    }
95    /// <p>The identifier of the job for which you want to get detailed information.</p>
96    pub fn get_id(&self) -> &::std::option::Option<::std::string::String> {
97        self.inner.get_id()
98    }
99}
100
101/// Successful return type for the `job_complete` waiter.
102pub type JobCompleteFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
103    crate::operation::read_job::ReadJobOutput,
104    ::aws_smithy_runtime_api::client::result::SdkError<
105        crate::operation::read_job::ReadJobError,
106        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
107    >,
108>;
109
110/// Error type for the `job_complete` waiter.
111pub type WaitUntilJobCompleteError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
112    crate::operation::read_job::ReadJobOutput,
113    crate::operation::read_job::ReadJobError,
114>;