aws_sdk_repostspace/waiters/
channel_created.rs1#[derive(::std::clone::Clone, ::std::fmt::Debug)]
15pub struct ChannelCreatedFluentBuilder {
16 handle: ::std::sync::Arc<crate::client::Handle>,
17 inner: crate::operation::get_channel::builders::GetChannelInputBuilder,
18}
19impl ChannelCreatedFluentBuilder {
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::get_channel::builders::GetChannelInputBuilder {
29 &self.inner
30 }
31 pub async fn wait(
33 self,
34 max_wait: ::std::time::Duration,
35 ) -> ::std::result::Result<crate::waiters::channel_created::ChannelCreatedFinalPoll, crate::waiters::channel_created::WaitUntilChannelCreatedError>
36 {
37 let input = self
38 .inner
39 .build()
40 .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
41 let runtime_plugins = crate::operation::get_channel::GetChannel::operation_runtime_plugins(
42 self.handle.runtime_plugins.clone(),
43 &self.handle.conf,
44 ::std::option::Option::None,
45 )
46 .with_operation_plugin(crate::sdk_feature_tracker::waiter::WaiterFeatureTrackerRuntimePlugin::new());
47 let mut cfg = ::aws_smithy_types::config_bag::ConfigBag::base();
48 let runtime_components_builder = runtime_plugins
49 .apply_client_configuration(&mut cfg)
50 .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
51 let time_components = runtime_components_builder.into_time_components();
52 let sleep_impl = time_components.sleep_impl().expect("a sleep impl is required by waiters");
53 let time_source = time_components.time_source().expect("a time source is required by waiters");
54
55 let acceptor = move |result: ::std::result::Result<
56 &crate::operation::get_channel::GetChannelOutput,
57 &crate::operation::get_channel::GetChannelError,
58 >| {
59 if crate::waiters::matchers::match_get_channel_e8b5d995c3c3ce357(result) {
61 return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
62 }
63 if crate::waiters::matchers::match_get_channel_6ffac86663d1811db(result) {
65 return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
66 }
67 if crate::waiters::matchers::match_get_channel_63429972c1ba2a686(result) {
69 return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
70 }
71 ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
72 };
73 let operation = move || {
74 let input = input.clone();
75 let runtime_plugins = runtime_plugins.clone();
76 async move { crate::operation::get_channel::GetChannel::orchestrate(&runtime_plugins, input).await }
77 };
78 let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
79 .min_delay(::std::time::Duration::from_secs(2))
80 .max_delay(::std::time::Duration::from_secs(120))
81 .max_wait(max_wait)
82 .time_source(time_source)
83 .sleep_impl(sleep_impl)
84 .acceptor(acceptor)
85 .operation(operation)
86 .build();
87 ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
88 }
89 pub fn space_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
91 self.inner = self.inner.space_id(input.into());
92 self
93 }
94 pub fn set_space_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
96 self.inner = self.inner.set_space_id(input);
97 self
98 }
99 pub fn get_space_id(&self) -> &::std::option::Option<::std::string::String> {
101 self.inner.get_space_id()
102 }
103 pub fn channel_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
105 self.inner = self.inner.channel_id(input.into());
106 self
107 }
108 pub fn set_channel_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
110 self.inner = self.inner.set_channel_id(input);
111 self
112 }
113 pub fn get_channel_id(&self) -> &::std::option::Option<::std::string::String> {
115 self.inner.get_channel_id()
116 }
117}
118
119pub type ChannelCreatedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
121 crate::operation::get_channel::GetChannelOutput,
122 ::aws_smithy_runtime_api::client::result::SdkError<
123 crate::operation::get_channel::GetChannelError,
124 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
125 >,
126>;
127
128pub type WaitUntilChannelCreatedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
130 crate::operation::get_channel::GetChannelOutput,
131 crate::operation::get_channel::GetChannelError,
132>;