aws_sdk_appstream/waiters/
fleet_started.rs1#[derive(::std::clone::Clone, ::std::fmt::Debug)]
15pub struct FleetStartedFluentBuilder {
16 handle: ::std::sync::Arc<crate::client::Handle>,
17 inner: crate::operation::describe_fleets::builders::DescribeFleetsInputBuilder,
18}
19impl FleetStartedFluentBuilder {
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_fleets::builders::DescribeFleetsInputBuilder {
29 &self.inner
30 }
31 pub async fn wait(
33 self,
34 max_wait: ::std::time::Duration,
35 ) -> ::std::result::Result<crate::waiters::fleet_started::FleetStartedFinalPoll, crate::waiters::fleet_started::WaitUntilFleetStartedError> {
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_fleets::DescribeFleets::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_fleets::DescribeFleetsOutput,
56 &crate::operation::describe_fleets::DescribeFleetsError,
57 >| {
58 if crate::waiters::matchers::match_describe_fleets_237cd0840475aef2b(result) {
60 return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
61 }
62 if crate::waiters::matchers::match_describe_fleets_2e777a91935e73369(result) {
64 return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
65 }
66 if crate::waiters::matchers::match_describe_fleets_1130b655dacd8714e(result) {
68 return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
69 }
70 ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
71 };
72 let operation = move || {
73 let input = input.clone();
74 let runtime_plugins = runtime_plugins.clone();
75 async move { crate::operation::describe_fleets::DescribeFleets::orchestrate(&runtime_plugins, input).await }
76 };
77 let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
78 .min_delay(::std::time::Duration::from_secs(30))
79 .max_delay(::std::time::Duration::from_secs(120))
80 .max_wait(max_wait)
81 .time_source(time_source)
82 .sleep_impl(sleep_impl)
83 .acceptor(acceptor)
84 .operation(operation)
85 .build();
86 ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
87 }
88 pub fn names(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
95 self.inner = self.inner.names(input.into());
96 self
97 }
98 pub fn set_names(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
100 self.inner = self.inner.set_names(input);
101 self
102 }
103 pub fn get_names(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
105 self.inner.get_names()
106 }
107 pub fn next_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
109 self.inner = self.inner.next_token(input.into());
110 self
111 }
112 pub fn set_next_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
114 self.inner = self.inner.set_next_token(input);
115 self
116 }
117 pub fn get_next_token(&self) -> &::std::option::Option<::std::string::String> {
119 self.inner.get_next_token()
120 }
121}
122
123pub type FleetStartedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
125 crate::operation::describe_fleets::DescribeFleetsOutput,
126 ::aws_smithy_runtime_api::client::result::SdkError<
127 crate::operation::describe_fleets::DescribeFleetsError,
128 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
129 >,
130>;
131
132pub type WaitUntilFleetStartedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
134 crate::operation::describe_fleets::DescribeFleetsOutput,
135 crate::operation::describe_fleets::DescribeFleetsError,
136>;