aws_sdk_ec2/waiters/
export_task_cancelled.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `export_task_cancelled` 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 ExportTaskCancelledFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::describe_export_tasks::builders::DescribeExportTasksInputBuilder,
18}
19impl ExportTaskCancelledFluentBuilder {
20    /// Creates a new `ExportTaskCancelledFluentBuilder`.
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 DescribeExportTasks as a reference.
28    pub fn as_input(&self) -> &crate::operation::describe_export_tasks::builders::DescribeExportTasksInputBuilder {
29        &self.inner
30    }
31    /// Wait for `export_task_cancelled`
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<
36        crate::waiters::export_task_cancelled::ExportTaskCancelledFinalPoll,
37        crate::waiters::export_task_cancelled::WaitUntilExportTaskCancelledError,
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::describe_export_tasks::DescribeExportTasks::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::describe_export_tasks::DescribeExportTasksOutput,
59            &crate::operation::describe_export_tasks::DescribeExportTasksError,
60        >| {
61            // Matches: {"output":{"path":"ExportTasks[].State","expected":"cancelled","comparator":"allStringEquals"}}
62            if crate::waiters::matchers::match_describe_export_tasks_41e11dd6f30c1b624(result) {
63                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64            }
65            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
66        };
67        let operation = move || {
68            let input = input.clone();
69            let runtime_plugins = runtime_plugins.clone();
70            async move { crate::operation::describe_export_tasks::DescribeExportTasks::orchestrate(&runtime_plugins, input).await }
71        };
72        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
73            .min_delay(::std::time::Duration::from_secs(15))
74            .max_delay(::std::time::Duration::from_secs(120))
75            .max_wait(max_wait)
76            .time_source(time_source)
77            .sleep_impl(sleep_impl)
78            .acceptor(acceptor)
79            .operation(operation)
80            .build();
81        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
82    }
83    ///
84    /// Appends an item to `Filters`.
85    ///
86    /// To override the contents of this collection use [`set_filters`](Self::set_filters).
87    ///
88    /// <p>the filters for the export tasks.</p>
89    pub fn filters(mut self, input: crate::types::Filter) -> Self {
90        self.inner = self.inner.filters(input);
91        self
92    }
93    /// <p>the filters for the export tasks.</p>
94    pub fn set_filters(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Filter>>) -> Self {
95        self.inner = self.inner.set_filters(input);
96        self
97    }
98    /// <p>the filters for the export tasks.</p>
99    pub fn get_filters(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Filter>> {
100        self.inner.get_filters()
101    }
102    ///
103    /// Appends an item to `ExportTaskIds`.
104    ///
105    /// To override the contents of this collection use [`set_export_task_ids`](Self::set_export_task_ids).
106    ///
107    /// <p>The export task IDs.</p>
108    pub fn export_task_ids(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
109        self.inner = self.inner.export_task_ids(input.into());
110        self
111    }
112    /// <p>The export task IDs.</p>
113    pub fn set_export_task_ids(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
114        self.inner = self.inner.set_export_task_ids(input);
115        self
116    }
117    /// <p>The export task IDs.</p>
118    pub fn get_export_task_ids(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
119        self.inner.get_export_task_ids()
120    }
121}
122
123/// Successful return type for the `export_task_cancelled` waiter.
124pub type ExportTaskCancelledFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
125    crate::operation::describe_export_tasks::DescribeExportTasksOutput,
126    ::aws_smithy_runtime_api::client::result::SdkError<
127        crate::operation::describe_export_tasks::DescribeExportTasksError,
128        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
129    >,
130>;
131
132/// Error type for the `export_task_cancelled` waiter.
133pub type WaitUntilExportTaskCancelledError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
134    crate::operation::describe_export_tasks::DescribeExportTasksOutput,
135    crate::operation::describe_export_tasks::DescribeExportTasksError,
136>;