aws_sdk_proton/waiters/
environment_deployed.rs1#[deprecated(note = "AWS Proton is not accepting new customers.", since = "10/07/2025")]
15#[derive(::std::clone::Clone, ::std::fmt::Debug)]
16pub struct EnvironmentDeployedFluentBuilder {
17 handle: ::std::sync::Arc<crate::client::Handle>,
18 inner: crate::operation::get_environment::builders::GetEnvironmentInputBuilder,
19}
20impl EnvironmentDeployedFluentBuilder {
21 pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
23 Self {
24 handle,
25 inner: ::std::default::Default::default(),
26 }
27 }
28 pub fn as_input(&self) -> &crate::operation::get_environment::builders::GetEnvironmentInputBuilder {
30 &self.inner
31 }
32 pub async fn wait(
34 self,
35 max_wait: ::std::time::Duration,
36 ) -> ::std::result::Result<
37 crate::waiters::environment_deployed::EnvironmentDeployedFinalPoll,
38 crate::waiters::environment_deployed::WaitUntilEnvironmentDeployedError,
39 > {
40 let input = self
41 .inner
42 .build()
43 .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
44 let runtime_plugins = crate::operation::get_environment::GetEnvironment::operation_runtime_plugins(
45 self.handle.runtime_plugins.clone(),
46 &self.handle.conf,
47 ::std::option::Option::None,
48 )
49 .with_operation_plugin(crate::sdk_feature_tracker::waiter::WaiterFeatureTrackerRuntimePlugin::new());
50 let mut cfg = ::aws_smithy_types::config_bag::ConfigBag::base();
51 let runtime_components_builder = runtime_plugins
52 .apply_client_configuration(&mut cfg)
53 .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
54 let time_components = runtime_components_builder.into_time_components();
55 let sleep_impl = time_components.sleep_impl().expect("a sleep impl is required by waiters");
56 let time_source = time_components.time_source().expect("a time source is required by waiters");
57
58 let acceptor = move |result: ::std::result::Result<
59 &crate::operation::get_environment::GetEnvironmentOutput,
60 &crate::operation::get_environment::GetEnvironmentError,
61 >| {
62 if crate::waiters::matchers::match_get_environment_3d3356d2c794d423b(result) {
64 return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
65 }
66 if crate::waiters::matchers::match_get_environment_8a03af5064b23745e(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::get_environment::GetEnvironment::orchestrate(&runtime_plugins, input).await }
76 };
77 let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
78 .min_delay(::std::time::Duration::from_secs(5))
79 .max_delay(::std::time::Duration::from_secs(4999))
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 name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
90 self.inner = self.inner.name(input.into());
91 self
92 }
93 pub fn set_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
95 self.inner = self.inner.set_name(input);
96 self
97 }
98 pub fn get_name(&self) -> &::std::option::Option<::std::string::String> {
100 self.inner.get_name()
101 }
102}
103
104pub type EnvironmentDeployedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
106 crate::operation::get_environment::GetEnvironmentOutput,
107 ::aws_smithy_runtime_api::client::result::SdkError<
108 crate::operation::get_environment::GetEnvironmentError,
109 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
110 >,
111>;
112
113pub type WaitUntilEnvironmentDeployedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
115 crate::operation::get_environment::GetEnvironmentOutput,
116 crate::operation::get_environment::GetEnvironmentError,
117>;