aws_sdk_elastictranscoder/waiters/
job_complete.rs1#[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 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 pub fn as_input(&self) -> &crate::operation::read_job::builders::ReadJobInputBuilder {
29 &self.inner
30 }
31 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 if crate::waiters::matchers::match_read_job_e9ad157648f804454(result) {
57 return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
58 }
59 if crate::waiters::matchers::match_read_job_777d5cd68417b7f62(result) {
61 return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
62 }
63 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 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 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 pub fn get_id(&self) -> &::std::option::Option<::std::string::String> {
97 self.inner.get_id()
98 }
99}
100
101pub 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
110pub type WaitUntilJobCompleteError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
112 crate::operation::read_job::ReadJobOutput,
113 crate::operation::read_job::ReadJobError,
114>;