aws_sdk_mediapackagev2/waiters/
harvest_job_finished.rs1#[derive(::std::clone::Clone, ::std::fmt::Debug)]
15pub struct HarvestJobFinishedFluentBuilder {
16 handle: ::std::sync::Arc<crate::client::Handle>,
17 inner: crate::operation::get_harvest_job::builders::GetHarvestJobInputBuilder,
18}
19impl HarvestJobFinishedFluentBuilder {
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::get_harvest_job::builders::GetHarvestJobInputBuilder {
29 &self.inner
30 }
31 pub async fn wait(
33 self,
34 max_wait: ::std::time::Duration,
35 ) -> ::std::result::Result<
36 crate::waiters::harvest_job_finished::HarvestJobFinishedFinalPoll,
37 crate::waiters::harvest_job_finished::WaitUntilHarvestJobFinishedError,
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::get_harvest_job::GetHarvestJob::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::get_harvest_job::GetHarvestJobOutput,
59 &crate::operation::get_harvest_job::GetHarvestJobError,
60 >| {
61 if crate::waiters::matchers::match_get_harvest_job_15807fbf6e605d5d7(result) {
63 return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64 }
65 if crate::waiters::matchers::match_get_harvest_job_091cfd390a9a36b62(result) {
67 return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
68 }
69 if crate::waiters::matchers::match_get_harvest_job_1aa0d045cead4e63b(result) {
71 return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
72 }
73 if crate::waiters::matchers::match_get_harvest_job_c435a581ce078b62d(result) {
75 return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
76 }
77 if crate::waiters::matchers::match_get_harvest_job_14536e2b02c100091(result) {
79 return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
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::get_harvest_job::GetHarvestJob::orchestrate(&runtime_plugins, input).await }
87 };
88 let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
89 .min_delay(::std::time::Duration::from_secs(2))
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 pub fn channel_group_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
101 self.inner = self.inner.channel_group_name(input.into());
102 self
103 }
104 pub fn set_channel_group_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
106 self.inner = self.inner.set_channel_group_name(input);
107 self
108 }
109 pub fn get_channel_group_name(&self) -> &::std::option::Option<::std::string::String> {
111 self.inner.get_channel_group_name()
112 }
113 pub fn channel_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
115 self.inner = self.inner.channel_name(input.into());
116 self
117 }
118 pub fn set_channel_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
120 self.inner = self.inner.set_channel_name(input);
121 self
122 }
123 pub fn get_channel_name(&self) -> &::std::option::Option<::std::string::String> {
125 self.inner.get_channel_name()
126 }
127 pub fn origin_endpoint_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
129 self.inner = self.inner.origin_endpoint_name(input.into());
130 self
131 }
132 pub fn set_origin_endpoint_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
134 self.inner = self.inner.set_origin_endpoint_name(input);
135 self
136 }
137 pub fn get_origin_endpoint_name(&self) -> &::std::option::Option<::std::string::String> {
139 self.inner.get_origin_endpoint_name()
140 }
141 pub fn harvest_job_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
143 self.inner = self.inner.harvest_job_name(input.into());
144 self
145 }
146 pub fn set_harvest_job_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
148 self.inner = self.inner.set_harvest_job_name(input);
149 self
150 }
151 pub fn get_harvest_job_name(&self) -> &::std::option::Option<::std::string::String> {
153 self.inner.get_harvest_job_name()
154 }
155}
156
157pub type HarvestJobFinishedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
159 crate::operation::get_harvest_job::GetHarvestJobOutput,
160 ::aws_smithy_runtime_api::client::result::SdkError<
161 crate::operation::get_harvest_job::GetHarvestJobError,
162 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
163 >,
164>;
165
166pub type WaitUntilHarvestJobFinishedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
168 crate::operation::get_harvest_job::GetHarvestJobOutput,
169 crate::operation::get_harvest_job::GetHarvestJobError,
170>;