aws_sdk_elasticache/waiters/
cache_cluster_available.rs1#[derive(::std::clone::Clone, ::std::fmt::Debug)]
15pub struct CacheClusterAvailableFluentBuilder {
16 handle: ::std::sync::Arc<crate::client::Handle>,
17 inner: crate::operation::describe_cache_clusters::builders::DescribeCacheClustersInputBuilder,
18}
19impl CacheClusterAvailableFluentBuilder {
20 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 pub fn as_input(&self) -> &crate::operation::describe_cache_clusters::builders::DescribeCacheClustersInputBuilder {
29 &self.inner
30 }
31 pub async fn wait(
33 self,
34 max_wait: ::std::time::Duration,
35 ) -> ::std::result::Result<
36 crate::waiters::cache_cluster_available::CacheClusterAvailableFinalPoll,
37 crate::waiters::cache_cluster_available::WaitUntilCacheClusterAvailableError,
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_cache_clusters::DescribeCacheClusters::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_cache_clusters::DescribeCacheClustersOutput,
59 &crate::operation::describe_cache_clusters::DescribeCacheClustersError,
60 >| {
61 if crate::waiters::matchers::match_describe_cache_clusters_a9fc40b8034e15559(result) {
63 return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64 }
65 if crate::waiters::matchers::match_describe_cache_clusters_c8c67f1604362d6d1(result) {
67 return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
68 }
69 if crate::waiters::matchers::match_describe_cache_clusters_bca147da1a8d059ec(result) {
71 return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
72 }
73 if crate::waiters::matchers::match_describe_cache_clusters_6ff5fd2b4d5851182(result) {
75 return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
76 }
77 if crate::waiters::matchers::match_describe_cache_clusters_723593c7b9870d199(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_cache_clusters::DescribeCacheClusters::orchestrate(&runtime_plugins, input).await }
87 };
88 let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
89 .min_delay(::std::time::Duration::from_secs(15))
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 pub fn cache_cluster_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
101 self.inner = self.inner.cache_cluster_id(input.into());
102 self
103 }
104 pub fn set_cache_cluster_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
106 self.inner = self.inner.set_cache_cluster_id(input);
107 self
108 }
109 pub fn get_cache_cluster_id(&self) -> &::std::option::Option<::std::string::String> {
111 self.inner.get_cache_cluster_id()
112 }
113 pub fn max_records(mut self, input: i32) -> Self {
117 self.inner = self.inner.max_records(input);
118 self
119 }
120 pub fn set_max_records(mut self, input: ::std::option::Option<i32>) -> Self {
124 self.inner = self.inner.set_max_records(input);
125 self
126 }
127 pub fn get_max_records(&self) -> &::std::option::Option<i32> {
131 self.inner.get_max_records()
132 }
133 pub fn marker(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
135 self.inner = self.inner.marker(input.into());
136 self
137 }
138 pub fn set_marker(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
140 self.inner = self.inner.set_marker(input);
141 self
142 }
143 pub fn get_marker(&self) -> &::std::option::Option<::std::string::String> {
145 self.inner.get_marker()
146 }
147 pub fn show_cache_node_info(mut self, input: bool) -> Self {
149 self.inner = self.inner.show_cache_node_info(input);
150 self
151 }
152 pub fn set_show_cache_node_info(mut self, input: ::std::option::Option<bool>) -> Self {
154 self.inner = self.inner.set_show_cache_node_info(input);
155 self
156 }
157 pub fn get_show_cache_node_info(&self) -> &::std::option::Option<bool> {
159 self.inner.get_show_cache_node_info()
160 }
161 pub fn show_cache_clusters_not_in_replication_groups(mut self, input: bool) -> Self {
163 self.inner = self.inner.show_cache_clusters_not_in_replication_groups(input);
164 self
165 }
166 pub fn set_show_cache_clusters_not_in_replication_groups(mut self, input: ::std::option::Option<bool>) -> Self {
168 self.inner = self.inner.set_show_cache_clusters_not_in_replication_groups(input);
169 self
170 }
171 pub fn get_show_cache_clusters_not_in_replication_groups(&self) -> &::std::option::Option<bool> {
173 self.inner.get_show_cache_clusters_not_in_replication_groups()
174 }
175}
176
177pub type CacheClusterAvailableFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
179 crate::operation::describe_cache_clusters::DescribeCacheClustersOutput,
180 ::aws_smithy_runtime_api::client::result::SdkError<
181 crate::operation::describe_cache_clusters::DescribeCacheClustersError,
182 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
183 >,
184>;
185
186pub type WaitUntilCacheClusterAvailableError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
188 crate::operation::describe_cache_clusters::DescribeCacheClustersOutput,
189 crate::operation::describe_cache_clusters::DescribeCacheClustersError,
190>;