aws_sdk_eks/waiters/
cluster_deleted.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `cluster_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 ClusterDeletedFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::describe_cluster::builders::DescribeClusterInputBuilder,
18}
19impl ClusterDeletedFluentBuilder {
20    /// Creates a new `ClusterDeletedFluentBuilder`.
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 DescribeCluster as a reference.
28    pub fn as_input(&self) -> &crate::operation::describe_cluster::builders::DescribeClusterInputBuilder {
29        &self.inner
30    }
31    /// Wait for `cluster_deleted`
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<crate::waiters::cluster_deleted::ClusterDeletedFinalPoll, crate::waiters::cluster_deleted::WaitUntilClusterDeletedError>
36    {
37        let input = self
38            .inner
39            .build()
40            .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
41        let runtime_plugins = crate::operation::describe_cluster::DescribeCluster::operation_runtime_plugins(
42            self.handle.runtime_plugins.clone(),
43            &self.handle.conf,
44            ::std::option::Option::None,
45        )
46        .with_operation_plugin(crate::sdk_feature_tracker::waiter::WaiterFeatureTrackerRuntimePlugin::new());
47        let mut cfg = ::aws_smithy_types::config_bag::ConfigBag::base();
48        let runtime_components_builder = runtime_plugins
49            .apply_client_configuration(&mut cfg)
50            .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
51        let time_components = runtime_components_builder.into_time_components();
52        let sleep_impl = time_components.sleep_impl().expect("a sleep impl is required by waiters");
53        let time_source = time_components.time_source().expect("a time source is required by waiters");
54
55        let acceptor = move |result: ::std::result::Result<
56            &crate::operation::describe_cluster::DescribeClusterOutput,
57            &crate::operation::describe_cluster::DescribeClusterError,
58        >| {
59            // Matches: {"output":{"path":"cluster.status","expected":"ACTIVE","comparator":"stringEquals"}}
60            if crate::waiters::matchers::match_describe_cluster_8e9a63e8d6f5374c3(result) {
61                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
62            }
63            // Matches: {"output":{"path":"cluster.status","expected":"CREATING","comparator":"stringEquals"}}
64            if crate::waiters::matchers::match_describe_cluster_25fcb54f3dbca748d(result) {
65                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
66            }
67            // Matches: {"output":{"path":"cluster.status","expected":"PENDING","comparator":"stringEquals"}}
68            if crate::waiters::matchers::match_describe_cluster_79906cd838aa35428(result) {
69                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
70            }
71            // Matches: {"errorType":"ResourceNotFoundException"}
72            if crate::waiters::matchers::match_describe_cluster_1cce2c05524fb92d4(result) {
73                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
74            }
75            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
76        };
77        let operation = move || {
78            let input = input.clone();
79            let runtime_plugins = runtime_plugins.clone();
80            async move { crate::operation::describe_cluster::DescribeCluster::orchestrate(&runtime_plugins, input).await }
81        };
82        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
83            .min_delay(::std::time::Duration::from_secs(30))
84            .max_delay(::std::time::Duration::from_secs(120))
85            .max_wait(max_wait)
86            .time_source(time_source)
87            .sleep_impl(sleep_impl)
88            .acceptor(acceptor)
89            .operation(operation)
90            .build();
91        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
92    }
93    /// <p>The name of your cluster.</p>
94    pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
95        self.inner = self.inner.name(input.into());
96        self
97    }
98    /// <p>The name of your cluster.</p>
99    pub fn set_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
100        self.inner = self.inner.set_name(input);
101        self
102    }
103    /// <p>The name of your cluster.</p>
104    pub fn get_name(&self) -> &::std::option::Option<::std::string::String> {
105        self.inner.get_name()
106    }
107}
108
109/// Successful return type for the `cluster_deleted` waiter.
110pub type ClusterDeletedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
111    crate::operation::describe_cluster::DescribeClusterOutput,
112    ::aws_smithy_runtime_api::client::result::SdkError<
113        crate::operation::describe_cluster::DescribeClusterError,
114        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
115    >,
116>;
117
118/// Error type for the `cluster_deleted` waiter.
119pub type WaitUntilClusterDeletedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
120    crate::operation::describe_cluster::DescribeClusterOutput,
121    crate::operation::describe_cluster::DescribeClusterError,
122>;