aws_sdk_ecs/waiters/
services_inactive.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `services_inactive` 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 ServicesInactiveFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::describe_services::builders::DescribeServicesInputBuilder,
18}
19impl ServicesInactiveFluentBuilder {
20    /// Creates a new `ServicesInactiveFluentBuilder`.
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 DescribeServices as a reference.
28    pub fn as_input(&self) -> &crate::operation::describe_services::builders::DescribeServicesInputBuilder {
29        &self.inner
30    }
31    /// Wait for `services_inactive`
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<
36        crate::waiters::services_inactive::ServicesInactiveFinalPoll,
37        crate::waiters::services_inactive::WaitUntilServicesInactiveError,
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_services::DescribeServices::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_services::DescribeServicesOutput,
59            &crate::operation::describe_services::DescribeServicesError,
60        >| {
61            // Matches: {"output":{"path":"failures[].reason","expected":"MISSING","comparator":"anyStringEquals"}}
62            if crate::waiters::matchers::match_describe_services_499ce94a3ac316e04(result) {
63                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
64            }
65            // Matches: {"output":{"path":"services[].status","expected":"INACTIVE","comparator":"anyStringEquals"}}
66            if crate::waiters::matchers::match_describe_services_8f2b7a2837e52f740(result) {
67                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
68            }
69            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
70        };
71        let operation = move || {
72            let input = input.clone();
73            let runtime_plugins = runtime_plugins.clone();
74            async move { crate::operation::describe_services::DescribeServices::orchestrate(&runtime_plugins, input).await }
75        };
76        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
77            .min_delay(::std::time::Duration::from_secs(15))
78            .max_delay(::std::time::Duration::from_secs(120))
79            .max_wait(max_wait)
80            .time_source(time_source)
81            .sleep_impl(sleep_impl)
82            .acceptor(acceptor)
83            .operation(operation)
84            .build();
85        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
86    }
87    /// <p>The short name or full Amazon Resource Name (ARN)the cluster that hosts the service to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the service or services you are describing were launched in any cluster other than the default cluster.</p>
88    pub fn cluster(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
89        self.inner = self.inner.cluster(input.into());
90        self
91    }
92    /// <p>The short name or full Amazon Resource Name (ARN)the cluster that hosts the service to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the service or services you are describing were launched in any cluster other than the default cluster.</p>
93    pub fn set_cluster(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
94        self.inner = self.inner.set_cluster(input);
95        self
96    }
97    /// <p>The short name or full Amazon Resource Name (ARN)the cluster that hosts the service to describe. If you do not specify a cluster, the default cluster is assumed. This parameter is required if the service or services you are describing were launched in any cluster other than the default cluster.</p>
98    pub fn get_cluster(&self) -> &::std::option::Option<::std::string::String> {
99        self.inner.get_cluster()
100    }
101    ///
102    /// Appends an item to `services`.
103    ///
104    /// To override the contents of this collection use [`set_services`](Self::set_services).
105    ///
106    /// <p>A list of services to describe. You may specify up to 10 services to describe in a single operation.</p>
107    pub fn services(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
108        self.inner = self.inner.services(input.into());
109        self
110    }
111    /// <p>A list of services to describe. You may specify up to 10 services to describe in a single operation.</p>
112    pub fn set_services(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
113        self.inner = self.inner.set_services(input);
114        self
115    }
116    /// <p>A list of services to describe. You may specify up to 10 services to describe in a single operation.</p>
117    pub fn get_services(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
118        self.inner.get_services()
119    }
120    ///
121    /// Appends an item to `include`.
122    ///
123    /// To override the contents of this collection use [`set_include`](Self::set_include).
124    ///
125    /// <p>Determines whether you want to see the resource tags for the service. If <code>TAGS</code> is specified, the tags are included in the response. If this field is omitted, tags aren't included in the response.</p>
126    pub fn include(mut self, input: crate::types::ServiceField) -> Self {
127        self.inner = self.inner.include(input);
128        self
129    }
130    /// <p>Determines whether you want to see the resource tags for the service. If <code>TAGS</code> is specified, the tags are included in the response. If this field is omitted, tags aren't included in the response.</p>
131    pub fn set_include(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::ServiceField>>) -> Self {
132        self.inner = self.inner.set_include(input);
133        self
134    }
135    /// <p>Determines whether you want to see the resource tags for the service. If <code>TAGS</code> is specified, the tags are included in the response. If this field is omitted, tags aren't included in the response.</p>
136    pub fn get_include(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::ServiceField>> {
137        self.inner.get_include()
138    }
139}
140
141/// Successful return type for the `services_inactive` waiter.
142pub type ServicesInactiveFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
143    crate::operation::describe_services::DescribeServicesOutput,
144    ::aws_smithy_runtime_api::client::result::SdkError<
145        crate::operation::describe_services::DescribeServicesError,
146        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
147    >,
148>;
149
150/// Error type for the `services_inactive` waiter.
151pub type WaitUntilServicesInactiveError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
152    crate::operation::describe_services::DescribeServicesOutput,
153    crate::operation::describe_services::DescribeServicesError,
154>;