aws_sdk_mediaconnect/waiters/
flow_active.rs1#[derive(::std::clone::Clone, ::std::fmt::Debug)]
15pub struct FlowActiveFluentBuilder {
16 handle: ::std::sync::Arc<crate::client::Handle>,
17 inner: crate::operation::describe_flow::builders::DescribeFlowInputBuilder,
18}
19impl FlowActiveFluentBuilder {
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_flow::builders::DescribeFlowInputBuilder {
29 &self.inner
30 }
31 pub async fn wait(
33 self,
34 max_wait: ::std::time::Duration,
35 ) -> ::std::result::Result<crate::waiters::flow_active::FlowActiveFinalPoll, crate::waiters::flow_active::WaitUntilFlowActiveError> {
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_flow::DescribeFlow::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_flow::DescribeFlowOutput,
56 &crate::operation::describe_flow::DescribeFlowError,
57 >| {
58 if crate::waiters::matchers::match_describe_flow_c101e51f836c37ad0(result) {
60 return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
61 }
62 if crate::waiters::matchers::match_describe_flow_007e0c27ad477bfa3(result) {
64 return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
65 }
66 if crate::waiters::matchers::match_describe_flow_ed940df20c9b33b76(result) {
68 return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
69 }
70 if crate::waiters::matchers::match_describe_flow_23a4ee68df28eed70(result) {
72 return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
73 }
74 if crate::waiters::matchers::match_describe_flow_370bdfc8b90a93f70(result) {
76 return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
77 }
78 if crate::waiters::matchers::match_describe_flow_50041433fc24a447b(result) {
80 return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
81 }
82 if crate::waiters::matchers::match_describe_flow_4eb5bd3e59f68831d(result) {
84 return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
85 }
86 ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
87 };
88 let operation = move || {
89 let input = input.clone();
90 let runtime_plugins = runtime_plugins.clone();
91 async move { crate::operation::describe_flow::DescribeFlow::orchestrate(&runtime_plugins, input).await }
92 };
93 let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
94 .min_delay(::std::time::Duration::from_secs(3))
95 .max_delay(::std::time::Duration::from_secs(120))
96 .max_wait(max_wait)
97 .time_source(time_source)
98 .sleep_impl(sleep_impl)
99 .acceptor(acceptor)
100 .operation(operation)
101 .build();
102 ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
103 }
104 pub fn flow_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
106 self.inner = self.inner.flow_arn(input.into());
107 self
108 }
109 pub fn set_flow_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
111 self.inner = self.inner.set_flow_arn(input);
112 self
113 }
114 pub fn get_flow_arn(&self) -> &::std::option::Option<::std::string::String> {
116 self.inner.get_flow_arn()
117 }
118}
119
120pub type FlowActiveFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
122 crate::operation::describe_flow::DescribeFlowOutput,
123 ::aws_smithy_runtime_api::client::result::SdkError<
124 crate::operation::describe_flow::DescribeFlowError,
125 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
126 >,
127>;
128
129pub type WaitUntilFlowActiveError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
131 crate::operation::describe_flow::DescribeFlowOutput,
132 crate::operation::describe_flow::DescribeFlowError,
133>;