aws_sdk_ec2/waiters/
snapshot_imported.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `snapshot_imported` 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 SnapshotImportedFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::describe_import_snapshot_tasks::builders::DescribeImportSnapshotTasksInputBuilder,
18}
19impl SnapshotImportedFluentBuilder {
20    /// Creates a new `SnapshotImportedFluentBuilder`.
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 DescribeImportSnapshotTasks as a reference.
28    pub fn as_input(&self) -> &crate::operation::describe_import_snapshot_tasks::builders::DescribeImportSnapshotTasksInputBuilder {
29        &self.inner
30    }
31    /// Wait for `snapshot_imported`
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<
36        crate::waiters::snapshot_imported::SnapshotImportedFinalPoll,
37        crate::waiters::snapshot_imported::WaitUntilSnapshotImportedError,
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_import_snapshot_tasks::DescribeImportSnapshotTasks::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_import_snapshot_tasks::DescribeImportSnapshotTasksOutput,
59            &crate::operation::describe_import_snapshot_tasks::DescribeImportSnapshotTasksError,
60        >| {
61            // Matches: {"output":{"path":"ImportSnapshotTasks[].SnapshotTaskDetail.Status","expected":"completed","comparator":"allStringEquals"}}
62            if crate::waiters::matchers::match_describe_import_snapshot_tasks_48f4f251081a266e0(result) {
63                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64            }
65            // Matches: {"output":{"path":"ImportSnapshotTasks[].SnapshotTaskDetail.Status","expected":"error","comparator":"anyStringEquals"}}
66            if crate::waiters::matchers::match_describe_import_snapshot_tasks_6cd4957a19b889087(result) {
67                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
68            }
69            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
70        };
71        let operation = move || {
72            let input = input.clone();
73            let runtime_plugins = runtime_plugins.clone();
74            async move { crate::operation::describe_import_snapshot_tasks::DescribeImportSnapshotTasks::orchestrate(&runtime_plugins, input).await }
75        };
76        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
77            .min_delay(::std::time::Duration::from_secs(15))
78            .max_delay(::std::time::Duration::from_secs(120))
79            .max_wait(max_wait)
80            .time_source(time_source)
81            .sleep_impl(sleep_impl)
82            .acceptor(acceptor)
83            .operation(operation)
84            .build();
85        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
86    }
87    /// <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
88    pub fn dry_run(mut self, input: bool) -> Self {
89        self.inner = self.inner.dry_run(input);
90        self
91    }
92    /// <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
93    pub fn set_dry_run(mut self, input: ::std::option::Option<bool>) -> Self {
94        self.inner = self.inner.set_dry_run(input);
95        self
96    }
97    /// <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
98    pub fn get_dry_run(&self) -> &::std::option::Option<bool> {
99        self.inner.get_dry_run()
100    }
101    ///
102    /// Appends an item to `Filters`.
103    ///
104    /// To override the contents of this collection use [`set_filters`](Self::set_filters).
105    ///
106    /// <p>The filters.</p>
107    pub fn filters(mut self, input: crate::types::Filter) -> Self {
108        self.inner = self.inner.filters(input);
109        self
110    }
111    /// <p>The filters.</p>
112    pub fn set_filters(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Filter>>) -> Self {
113        self.inner = self.inner.set_filters(input);
114        self
115    }
116    /// <p>The filters.</p>
117    pub fn get_filters(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Filter>> {
118        self.inner.get_filters()
119    }
120    ///
121    /// Appends an item to `ImportTaskIds`.
122    ///
123    /// To override the contents of this collection use [`set_import_task_ids`](Self::set_import_task_ids).
124    ///
125    /// <p>A list of import snapshot task IDs.</p>
126    pub fn import_task_ids(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
127        self.inner = self.inner.import_task_ids(input.into());
128        self
129    }
130    /// <p>A list of import snapshot task IDs.</p>
131    pub fn set_import_task_ids(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
132        self.inner = self.inner.set_import_task_ids(input);
133        self
134    }
135    /// <p>A list of import snapshot task IDs.</p>
136    pub fn get_import_task_ids(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
137        self.inner.get_import_task_ids()
138    }
139    /// <p>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned <code>NextToken</code> value.</p>
140    pub fn max_results(mut self, input: i32) -> Self {
141        self.inner = self.inner.max_results(input);
142        self
143    }
144    /// <p>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned <code>NextToken</code> value.</p>
145    pub fn set_max_results(mut self, input: ::std::option::Option<i32>) -> Self {
146        self.inner = self.inner.set_max_results(input);
147        self
148    }
149    /// <p>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned <code>NextToken</code> value.</p>
150    pub fn get_max_results(&self) -> &::std::option::Option<i32> {
151        self.inner.get_max_results()
152    }
153    /// <p>A token that indicates the next page of results.</p>
154    pub fn next_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
155        self.inner = self.inner.next_token(input.into());
156        self
157    }
158    /// <p>A token that indicates the next page of results.</p>
159    pub fn set_next_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
160        self.inner = self.inner.set_next_token(input);
161        self
162    }
163    /// <p>A token that indicates the next page of results.</p>
164    pub fn get_next_token(&self) -> &::std::option::Option<::std::string::String> {
165        self.inner.get_next_token()
166    }
167}
168
169/// Successful return type for the `snapshot_imported` waiter.
170pub type SnapshotImportedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
171    crate::operation::describe_import_snapshot_tasks::DescribeImportSnapshotTasksOutput,
172    ::aws_smithy_runtime_api::client::result::SdkError<
173        crate::operation::describe_import_snapshot_tasks::DescribeImportSnapshotTasksError,
174        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
175    >,
176>;
177
178/// Error type for the `snapshot_imported` waiter.
179pub type WaitUntilSnapshotImportedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
180    crate::operation::describe_import_snapshot_tasks::DescribeImportSnapshotTasksOutput,
181    crate::operation::describe_import_snapshot_tasks::DescribeImportSnapshotTasksError,
182>;