aws_sdk_dynamodb/waiters/
import_completed.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `import_completed` 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 ImportCompletedFluentBuilder {
16                handle: ::std::sync::Arc<crate::client::Handle>,
17                inner: crate::operation::describe_import::builders::DescribeImportInputBuilder,
18            }
19impl ImportCompletedFluentBuilder {
20    /// Creates a new `ImportCompletedFluentBuilder`.
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 DescribeImport as a reference.
28                    pub fn as_input(&self) -> &crate::operation::describe_import::builders::DescribeImportInputBuilder {
29                        &self.inner
30                    }
31    /// Wait for `import_completed`
32    pub async fn wait(self, max_wait: ::std::time::Duration) -> ::std::result::Result<crate::waiters::import_completed::ImportCompletedFinalPoll, crate::waiters::import_completed::WaitUntilImportCompletedError> {
33                        let input = self.inner.build()
34                            .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
35                        let runtime_plugins = crate::operation::describe_import::DescribeImport::operation_runtime_plugins(
36                            self.handle.runtime_plugins.clone(),
37                            &self.handle.conf,
38                            ::std::option::Option::None,
39                        ).with_operation_plugin(crate::sdk_feature_tracker::waiter::WaiterFeatureTrackerRuntimePlugin::new());
40                        let mut cfg = ::aws_smithy_types::config_bag::ConfigBag::base();
41                        let runtime_components_builder = runtime_plugins.apply_client_configuration(&mut cfg)
42                            .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
43                        let time_components = runtime_components_builder.into_time_components();
44                        let sleep_impl = time_components.sleep_impl().expect("a sleep impl is required by waiters");
45                        let time_source = time_components.time_source().expect("a time source is required by waiters");
46
47                        let acceptor = move |result: ::std::result::Result<&crate::operation::describe_import::DescribeImportOutput, &crate::operation::describe_import::DescribeImportError>| {
48                    // Matches: {"output":{"path":"ImportTableDescription.ImportStatus","expected":"COMPLETED","comparator":"stringEquals"}}
49                                if crate::waiters::matchers::match_describe_import_6175a829c57972dc3(result) { return ::aws_smithy_runtime::client::waiters::AcceptorState::Success; }
50    // Matches: {"output":{"path":"ImportTableDescription.ImportStatus","expected":"FAILED","comparator":"stringEquals"}}
51                                if crate::waiters::matchers::match_describe_import_ba4301a7fe05a6956(result) { return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure; }
52    // Matches: {"output":{"path":"ImportTableDescription.ImportStatus","expected":"CANCELLED","comparator":"stringEquals"}}
53                                if crate::waiters::matchers::match_describe_import_b4c5c86bd60d42041(result) { return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure; }
54    ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
55                };
56                        let operation = move || {
57                            let input = input.clone();
58                            let runtime_plugins = runtime_plugins.clone();
59                            async move {
60                                crate::operation::describe_import::DescribeImport::orchestrate(&runtime_plugins, input).await
61                            }
62                        };
63                        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
64                            .min_delay(::std::time::Duration::from_secs(20))
65                            .max_delay(::std::time::Duration::from_secs(120))
66                            .max_wait(max_wait)
67                            .time_source(time_source)
68                            .sleep_impl(sleep_impl)
69                            .acceptor(acceptor)
70                            .operation(operation)
71                            .build();
72                        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
73                    }
74    /// <p>The Amazon Resource Name (ARN) associated with the table you're importing to.</p>
75    pub fn import_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
76                    self.inner = self.inner.import_arn(input.into());
77                    self
78                }
79    /// <p>The Amazon Resource Name (ARN) associated with the table you're importing to.</p>
80    pub fn set_import_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
81                    self.inner = self.inner.set_import_arn(input);
82                    self
83                }
84    /// <p>The Amazon Resource Name (ARN) associated with the table you're importing to.</p>
85    pub fn get_import_arn(&self) -> &::std::option::Option<::std::string::String> {
86                    self.inner.get_import_arn()
87                }
88}
89
90/// Successful return type for the `import_completed` waiter.
91pub type ImportCompletedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<crate::operation::describe_import::DescribeImportOutput, ::aws_smithy_runtime_api::client::result::SdkError<crate::operation::describe_import::DescribeImportError, ::aws_smithy_runtime_api::client::orchestrator::HttpResponse>>;
92
93/// Error type for the `import_completed` waiter.
94pub type WaitUntilImportCompletedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<crate::operation::describe_import::DescribeImportOutput, crate::operation::describe_import::DescribeImportError>;
95