aws_sdk_elasticache/waiters/
replication_group_deleted.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `replication_group_deleted` 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 ReplicationGroupDeletedFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::describe_replication_groups::builders::DescribeReplicationGroupsInputBuilder,
18}
19impl ReplicationGroupDeletedFluentBuilder {
20    /// Creates a new `ReplicationGroupDeletedFluentBuilder`.
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 DescribeReplicationGroups as a reference.
28    pub fn as_input(&self) -> &crate::operation::describe_replication_groups::builders::DescribeReplicationGroupsInputBuilder {
29        &self.inner
30    }
31    /// Wait until ElastiCache replication group is deleted.
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<
36        crate::waiters::replication_group_deleted::ReplicationGroupDeletedFinalPoll,
37        crate::waiters::replication_group_deleted::WaitUntilReplicationGroupDeletedError,
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_groups::DescribeReplicationGroups::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_groups::DescribeReplicationGroupsOutput,
59            &crate::operation::describe_replication_groups::DescribeReplicationGroupsError,
60        >| {
61            // Matches: {"output":{"path":"ReplicationGroups[].Status","expected":"deleted","comparator":"allStringEquals"}}
62            if crate::waiters::matchers::match_describe_replication_groups_700c41c947ca044e6(result) {
63                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64            }
65            // Matches: {"output":{"path":"ReplicationGroups[].Status","expected":"available","comparator":"anyStringEquals"}}
66            if crate::waiters::matchers::match_describe_replication_groups_2a2f28b3d31b54908(result) {
67                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
68            }
69            // Matches: {"errorType":"ReplicationGroupNotFoundFault"}
70            if crate::waiters::matchers::match_describe_replication_groups_45d927441d5ac69a7(result) {
71                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
72            }
73            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
74        };
75        let operation = move || {
76            let input = input.clone();
77            let runtime_plugins = runtime_plugins.clone();
78            async move { crate::operation::describe_replication_groups::DescribeReplicationGroups::orchestrate(&runtime_plugins, input).await }
79        };
80        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
81            .min_delay(::std::time::Duration::from_secs(15))
82            .max_delay(::std::time::Duration::from_secs(120))
83            .max_wait(max_wait)
84            .time_source(time_source)
85            .sleep_impl(sleep_impl)
86            .acceptor(acceptor)
87            .operation(operation)
88            .build();
89        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
90    }
91    /// <p>The identifier for the replication group to be described. This parameter is not case sensitive.</p>
92    /// <p>If you do not specify this parameter, information about all replication groups is returned.</p>
93    pub fn replication_group_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
94        self.inner = self.inner.replication_group_id(input.into());
95        self
96    }
97    /// <p>The identifier for the replication group to be described. This parameter is not case sensitive.</p>
98    /// <p>If you do not specify this parameter, information about all replication groups is returned.</p>
99    pub fn set_replication_group_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
100        self.inner = self.inner.set_replication_group_id(input);
101        self
102    }
103    /// <p>The identifier for the replication group to be described. This parameter is not case sensitive.</p>
104    /// <p>If you do not specify this parameter, information about all replication groups is returned.</p>
105    pub fn get_replication_group_id(&self) -> &::std::option::Option<::std::string::String> {
106        self.inner.get_replication_group_id()
107    }
108    /// <p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p>
109    /// <p>Default: 100</p>
110    /// <p>Constraints: minimum 20; maximum 100.</p>
111    pub fn max_records(mut self, input: i32) -> Self {
112        self.inner = self.inner.max_records(input);
113        self
114    }
115    /// <p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p>
116    /// <p>Default: 100</p>
117    /// <p>Constraints: minimum 20; maximum 100.</p>
118    pub fn set_max_records(mut self, input: ::std::option::Option<i32>) -> Self {
119        self.inner = self.inner.set_max_records(input);
120        self
121    }
122    /// <p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a marker is included in the response so that the remaining results can be retrieved.</p>
123    /// <p>Default: 100</p>
124    /// <p>Constraints: minimum 20; maximum 100.</p>
125    pub fn get_max_records(&self) -> &::std::option::Option<i32> {
126        self.inner.get_max_records()
127    }
128    /// <p>An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
129    pub fn marker(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
130        self.inner = self.inner.marker(input.into());
131        self
132    }
133    /// <p>An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
134    pub fn set_marker(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
135        self.inner = self.inner.set_marker(input);
136        self
137    }
138    /// <p>An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
139    pub fn get_marker(&self) -> &::std::option::Option<::std::string::String> {
140        self.inner.get_marker()
141    }
142}
143
144/// Successful return type for the `replication_group_deleted` waiter.
145pub type ReplicationGroupDeletedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
146    crate::operation::describe_replication_groups::DescribeReplicationGroupsOutput,
147    ::aws_smithy_runtime_api::client::result::SdkError<
148        crate::operation::describe_replication_groups::DescribeReplicationGroupsError,
149        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
150    >,
151>;
152
153/// Error type for the `replication_group_deleted` waiter.
154pub type WaitUntilReplicationGroupDeletedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
155    crate::operation::describe_replication_groups::DescribeReplicationGroupsOutput,
156    crate::operation::describe_replication_groups::DescribeReplicationGroupsError,
157>;