aws_sdk_databasemigration/waiters/
replication_instance_available.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `replication_instance_available` 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 ReplicationInstanceAvailableFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::describe_replication_instances::builders::DescribeReplicationInstancesInputBuilder,
18}
19impl ReplicationInstanceAvailableFluentBuilder {
20    /// Creates a new `ReplicationInstanceAvailableFluentBuilder`.
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 DescribeReplicationInstances as a reference.
28    pub fn as_input(&self) -> &crate::operation::describe_replication_instances::builders::DescribeReplicationInstancesInputBuilder {
29        &self.inner
30    }
31    /// Wait until DMS replication instance is available.
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<
36        crate::waiters::replication_instance_available::ReplicationInstanceAvailableFinalPoll,
37        crate::waiters::replication_instance_available::WaitUntilReplicationInstanceAvailableError,
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_replication_instances::DescribeReplicationInstances::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_replication_instances::DescribeReplicationInstancesOutput,
59            &crate::operation::describe_replication_instances::DescribeReplicationInstancesError,
60        >| {
61            // Matches: {"output":{"path":"ReplicationInstances[].ReplicationInstanceStatus","expected":"available","comparator":"allStringEquals"}}
62            if crate::waiters::matchers::match_describe_replication_instances_20a54ff083e35d6a3(result) {
63                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64            }
65            // Matches: {"output":{"path":"ReplicationInstances[].ReplicationInstanceStatus","expected":"deleting","comparator":"anyStringEquals"}}
66            if crate::waiters::matchers::match_describe_replication_instances_4326e39c5fff20596(result) {
67                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
68            }
69            // Matches: {"output":{"path":"ReplicationInstances[].ReplicationInstanceStatus","expected":"incompatible-credentials","comparator":"anyStringEquals"}}
70            if crate::waiters::matchers::match_describe_replication_instances_48abcccf06a3b1fe2(result) {
71                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
72            }
73            // Matches: {"output":{"path":"ReplicationInstances[].ReplicationInstanceStatus","expected":"incompatible-network","comparator":"anyStringEquals"}}
74            if crate::waiters::matchers::match_describe_replication_instances_ab9e5aa710c524992(result) {
75                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
76            }
77            // Matches: {"output":{"path":"ReplicationInstances[].ReplicationInstanceStatus","expected":"inaccessible-encryption-credentials","comparator":"anyStringEquals"}}
78            if crate::waiters::matchers::match_describe_replication_instances_d810f8b90356e5dad(result) {
79                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
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::describe_replication_instances::DescribeReplicationInstances::orchestrate(&runtime_plugins, input).await }
87        };
88        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
89            .min_delay(::std::time::Duration::from_secs(60))
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    ///
100    /// Appends an item to `Filters`.
101    ///
102    /// To override the contents of this collection use [`set_filters`](Self::set_filters).
103    ///
104    /// <p>Filters applied to replication instances.</p>
105    /// <p>Valid filter names: replication-instance-arn | replication-instance-id | replication-instance-class | engine-version</p>
106    pub fn filters(mut self, input: crate::types::Filter) -> Self {
107        self.inner = self.inner.filters(input);
108        self
109    }
110    /// <p>Filters applied to replication instances.</p>
111    /// <p>Valid filter names: replication-instance-arn | replication-instance-id | replication-instance-class | engine-version</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>Filters applied to replication instances.</p>
117    /// <p>Valid filter names: replication-instance-arn | replication-instance-id | replication-instance-class | engine-version</p>
118    pub fn get_filters(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Filter>> {
119        self.inner.get_filters()
120    }
121    /// <p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.</p>
122    /// <p>Default: 100</p>
123    /// <p>Constraints: Minimum 20, maximum 100.</p>
124    pub fn max_records(mut self, input: i32) -> Self {
125        self.inner = self.inner.max_records(input);
126        self
127    }
128    /// <p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.</p>
129    /// <p>Default: 100</p>
130    /// <p>Constraints: Minimum 20, maximum 100.</p>
131    pub fn set_max_records(mut self, input: ::std::option::Option<i32>) -> Self {
132        self.inner = self.inner.set_max_records(input);
133        self
134    }
135    /// <p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.</p>
136    /// <p>Default: 100</p>
137    /// <p>Constraints: Minimum 20, maximum 100.</p>
138    pub fn get_max_records(&self) -> &::std::option::Option<i32> {
139        self.inner.get_max_records()
140    }
141    /// <p>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
142    pub fn marker(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
143        self.inner = self.inner.marker(input.into());
144        self
145    }
146    /// <p>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
147    pub fn set_marker(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
148        self.inner = self.inner.set_marker(input);
149        self
150    }
151    /// <p>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
152    pub fn get_marker(&self) -> &::std::option::Option<::std::string::String> {
153        self.inner.get_marker()
154    }
155}
156
157/// Successful return type for the `replication_instance_available` waiter.
158pub type ReplicationInstanceAvailableFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
159    crate::operation::describe_replication_instances::DescribeReplicationInstancesOutput,
160    ::aws_smithy_runtime_api::client::result::SdkError<
161        crate::operation::describe_replication_instances::DescribeReplicationInstancesError,
162        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
163    >,
164>;
165
166/// Error type for the `replication_instance_available` waiter.
167pub type WaitUntilReplicationInstanceAvailableError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
168    crate::operation::describe_replication_instances::DescribeReplicationInstancesOutput,
169    crate::operation::describe_replication_instances::DescribeReplicationInstancesError,
170>;