aws_sdk_mediapackagev2/waiters/
harvest_job_finished.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `harvest_job_finished` 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 HarvestJobFinishedFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::get_harvest_job::builders::GetHarvestJobInputBuilder,
18}
19impl HarvestJobFinishedFluentBuilder {
20    /// Creates a new `HarvestJobFinishedFluentBuilder`.
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 GetHarvestJob as a reference.
28    pub fn as_input(&self) -> &crate::operation::get_harvest_job::builders::GetHarvestJobInputBuilder {
29        &self.inner
30    }
31    /// Wait for `harvest_job_finished`
32    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            // Matches: {"output":{"path":"Status","expected":"COMPLETED","comparator":"stringEquals"}}
62            if crate::waiters::matchers::match_get_harvest_job_15807fbf6e605d5d7(result) {
63                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64            }
65            // Matches: {"output":{"path":"Status","expected":"CANCELLED","comparator":"stringEquals"}}
66            if crate::waiters::matchers::match_get_harvest_job_091cfd390a9a36b62(result) {
67                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
68            }
69            // Matches: {"output":{"path":"Status","expected":"FAILED","comparator":"stringEquals"}}
70            if crate::waiters::matchers::match_get_harvest_job_1aa0d045cead4e63b(result) {
71                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
72            }
73            // Matches: {"output":{"path":"Status","expected":"QUEUED","comparator":"stringEquals"}}
74            if crate::waiters::matchers::match_get_harvest_job_c435a581ce078b62d(result) {
75                return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
76            }
77            // Matches: {"output":{"path":"Status","expected":"IN_PROGRESS","comparator":"stringEquals"}}
78            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    /// <p>The name of the channel group containing the channel associated with the harvest job.</p>
100    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    /// <p>The name of the channel group containing the channel associated with the harvest job.</p>
105    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    /// <p>The name of the channel group containing the channel associated with the harvest job.</p>
110    pub fn get_channel_group_name(&self) -> &::std::option::Option<::std::string::String> {
111        self.inner.get_channel_group_name()
112    }
113    /// <p>The name of the channel associated with the harvest job.</p>
114    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    /// <p>The name of the channel associated with the harvest job.</p>
119    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    /// <p>The name of the channel associated with the harvest job.</p>
124    pub fn get_channel_name(&self) -> &::std::option::Option<::std::string::String> {
125        self.inner.get_channel_name()
126    }
127    /// <p>The name of the origin endpoint associated with the harvest job.</p>
128    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    /// <p>The name of the origin endpoint associated with the harvest job.</p>
133    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    /// <p>The name of the origin endpoint associated with the harvest job.</p>
138    pub fn get_origin_endpoint_name(&self) -> &::std::option::Option<::std::string::String> {
139        self.inner.get_origin_endpoint_name()
140    }
141    /// <p>The name of the harvest job to retrieve.</p>
142    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    /// <p>The name of the harvest job to retrieve.</p>
147    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    /// <p>The name of the harvest job to retrieve.</p>
152    pub fn get_harvest_job_name(&self) -> &::std::option::Option<::std::string::String> {
153        self.inner.get_harvest_job_name()
154    }
155}
156
157/// Successful return type for the `harvest_job_finished` waiter.
158pub 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
166/// Error type for the `harvest_job_finished` waiter.
167pub 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>;