aws_sdk_ecs/waiters/
tasks_stopped.rs1#[derive(::std::clone::Clone, ::std::fmt::Debug)]
15pub struct TasksStoppedFluentBuilder {
16 handle: ::std::sync::Arc<crate::client::Handle>,
17 inner: crate::operation::describe_tasks::builders::DescribeTasksInputBuilder,
18}
19impl TasksStoppedFluentBuilder {
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_tasks::builders::DescribeTasksInputBuilder {
29 &self.inner
30 }
31 pub async fn wait(
33 self,
34 max_wait: ::std::time::Duration,
35 ) -> ::std::result::Result<crate::waiters::tasks_stopped::TasksStoppedFinalPoll, crate::waiters::tasks_stopped::WaitUntilTasksStoppedError> {
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_tasks::DescribeTasks::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_tasks::DescribeTasksOutput,
56 &crate::operation::describe_tasks::DescribeTasksError,
57 >| {
58 if crate::waiters::matchers::match_describe_tasks_2f43971f90a3d02d9(result) {
60 return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
61 }
62 ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
63 };
64 let operation = move || {
65 let input = input.clone();
66 let runtime_plugins = runtime_plugins.clone();
67 async move { crate::operation::describe_tasks::DescribeTasks::orchestrate(&runtime_plugins, input).await }
68 };
69 let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
70 .min_delay(::std::time::Duration::from_secs(6))
71 .max_delay(::std::time::Duration::from_secs(120))
72 .max_wait(max_wait)
73 .time_source(time_source)
74 .sleep_impl(sleep_impl)
75 .acceptor(acceptor)
76 .operation(operation)
77 .build();
78 ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
79 }
80 pub fn cluster(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
82 self.inner = self.inner.cluster(input.into());
83 self
84 }
85 pub fn set_cluster(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
87 self.inner = self.inner.set_cluster(input);
88 self
89 }
90 pub fn get_cluster(&self) -> &::std::option::Option<::std::string::String> {
92 self.inner.get_cluster()
93 }
94 pub fn tasks(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
101 self.inner = self.inner.tasks(input.into());
102 self
103 }
104 pub fn set_tasks(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
106 self.inner = self.inner.set_tasks(input);
107 self
108 }
109 pub fn get_tasks(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
111 self.inner.get_tasks()
112 }
113 pub fn include(mut self, input: crate::types::TaskField) -> Self {
120 self.inner = self.inner.include(input);
121 self
122 }
123 pub fn set_include(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::TaskField>>) -> Self {
125 self.inner = self.inner.set_include(input);
126 self
127 }
128 pub fn get_include(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::TaskField>> {
130 self.inner.get_include()
131 }
132}
133
134pub type TasksStoppedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
136 crate::operation::describe_tasks::DescribeTasksOutput,
137 ::aws_smithy_runtime_api::client::result::SdkError<
138 crate::operation::describe_tasks::DescribeTasksError,
139 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
140 >,
141>;
142
143pub type WaitUntilTasksStoppedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
145 crate::operation::describe_tasks::DescribeTasksOutput,
146 crate::operation::describe_tasks::DescribeTasksError,
147>;