aws_sdk_eks/waiters/
addon_deleted.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `addon_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 AddonDeletedFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::describe_addon::builders::DescribeAddonInputBuilder,
18}
19impl AddonDeletedFluentBuilder {
20    /// Creates a new `AddonDeletedFluentBuilder`.
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 DescribeAddon as a reference.
28    pub fn as_input(&self) -> &crate::operation::describe_addon::builders::DescribeAddonInputBuilder {
29        &self.inner
30    }
31    /// Wait for `addon_deleted`
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<crate::waiters::addon_deleted::AddonDeletedFinalPoll, crate::waiters::addon_deleted::WaitUntilAddonDeletedError> {
36        let input = self
37            .inner
38            .build()
39            .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
40        let runtime_plugins = crate::operation::describe_addon::DescribeAddon::operation_runtime_plugins(
41            self.handle.runtime_plugins.clone(),
42            &self.handle.conf,
43            ::std::option::Option::None,
44        )
45        .with_operation_plugin(crate::sdk_feature_tracker::waiter::WaiterFeatureTrackerRuntimePlugin::new());
46        let mut cfg = ::aws_smithy_types::config_bag::ConfigBag::base();
47        let runtime_components_builder = runtime_plugins
48            .apply_client_configuration(&mut cfg)
49            .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
50        let time_components = runtime_components_builder.into_time_components();
51        let sleep_impl = time_components.sleep_impl().expect("a sleep impl is required by waiters");
52        let time_source = time_components.time_source().expect("a time source is required by waiters");
53
54        let acceptor = move |result: ::std::result::Result<
55            &crate::operation::describe_addon::DescribeAddonOutput,
56            &crate::operation::describe_addon::DescribeAddonError,
57        >| {
58            // Matches: {"output":{"path":"addon.status","expected":"DELETE_FAILED","comparator":"stringEquals"}}
59            if crate::waiters::matchers::match_describe_addon_f140b77ae2af62414(result) {
60                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
61            }
62            // Matches: {"errorType":"ResourceNotFoundException"}
63            if crate::waiters::matchers::match_describe_addon_1cce2c05524fb92d4(result) {
64                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
65            }
66            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
67        };
68        let operation = move || {
69            let input = input.clone();
70            let runtime_plugins = runtime_plugins.clone();
71            async move { crate::operation::describe_addon::DescribeAddon::orchestrate(&runtime_plugins, input).await }
72        };
73        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
74            .min_delay(::std::time::Duration::from_secs(10))
75            .max_delay(::std::time::Duration::from_secs(120))
76            .max_wait(max_wait)
77            .time_source(time_source)
78            .sleep_impl(sleep_impl)
79            .acceptor(acceptor)
80            .operation(operation)
81            .build();
82        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
83    }
84    /// <p>The name of your cluster.</p>
85    pub fn cluster_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
86        self.inner = self.inner.cluster_name(input.into());
87        self
88    }
89    /// <p>The name of your cluster.</p>
90    pub fn set_cluster_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
91        self.inner = self.inner.set_cluster_name(input);
92        self
93    }
94    /// <p>The name of your cluster.</p>
95    pub fn get_cluster_name(&self) -> &::std::option::Option<::std::string::String> {
96        self.inner.get_cluster_name()
97    }
98    /// <p>The name of the add-on. The name must match one of the names returned by <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html"> <code>ListAddons</code> </a>.</p>
99    pub fn addon_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
100        self.inner = self.inner.addon_name(input.into());
101        self
102    }
103    /// <p>The name of the add-on. The name must match one of the names returned by <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html"> <code>ListAddons</code> </a>.</p>
104    pub fn set_addon_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
105        self.inner = self.inner.set_addon_name(input);
106        self
107    }
108    /// <p>The name of the add-on. The name must match one of the names returned by <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html"> <code>ListAddons</code> </a>.</p>
109    pub fn get_addon_name(&self) -> &::std::option::Option<::std::string::String> {
110        self.inner.get_addon_name()
111    }
112}
113
114/// Successful return type for the `addon_deleted` waiter.
115pub type AddonDeletedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
116    crate::operation::describe_addon::DescribeAddonOutput,
117    ::aws_smithy_runtime_api::client::result::SdkError<
118        crate::operation::describe_addon::DescribeAddonError,
119        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
120    >,
121>;
122
123/// Error type for the `addon_deleted` waiter.
124pub type WaitUntilAddonDeletedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
125    crate::operation::describe_addon::DescribeAddonOutput,
126    crate::operation::describe_addon::DescribeAddonError,
127>;