aws_sdk_bedrockagentcorecontrol/waiters/
policy_deleted.rs1#[derive(::std::clone::Clone, ::std::fmt::Debug)]
15pub struct PolicyDeletedFluentBuilder {
16 handle: ::std::sync::Arc<crate::client::Handle>,
17 inner: crate::operation::get_policy::builders::GetPolicyInputBuilder,
18}
19impl PolicyDeletedFluentBuilder {
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_policy::builders::GetPolicyInputBuilder {
29 &self.inner
30 }
31 pub async fn wait(
33 self,
34 max_wait: ::std::time::Duration,
35 ) -> ::std::result::Result<crate::waiters::policy_deleted::PolicyDeletedFinalPoll, crate::waiters::policy_deleted::WaitUntilPolicyDeletedError>
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_policy::GetPolicy::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 =
56 move |result: ::std::result::Result<&crate::operation::get_policy::GetPolicyOutput, &crate::operation::get_policy::GetPolicyError>| {
57 if crate::waiters::matchers::match_get_policy_1cce2c05524fb92d4(result) {
59 return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
60 }
61 if crate::waiters::matchers::match_get_policy_ac9cf40eec4f10ab5(result) {
63 return ::aws_smithy_runtime::client::waiters::AcceptorState::Retry;
64 }
65 if crate::waiters::matchers::match_get_policy_184758db81b6271a8(result) {
67 return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
68 }
69 ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
70 };
71 let operation = move || {
72 let input = input.clone();
73 let runtime_plugins = runtime_plugins.clone();
74 async move { crate::operation::get_policy::GetPolicy::orchestrate(&runtime_plugins, input).await }
75 };
76 let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
77 .min_delay(::std::time::Duration::from_secs(2))
78 .max_delay(::std::time::Duration::from_secs(120))
79 .max_wait(max_wait)
80 .time_source(time_source)
81 .sleep_impl(sleep_impl)
82 .acceptor(acceptor)
83 .operation(operation)
84 .build();
85 ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
86 }
87 pub fn policy_engine_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
89 self.inner = self.inner.policy_engine_id(input.into());
90 self
91 }
92 pub fn set_policy_engine_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
94 self.inner = self.inner.set_policy_engine_id(input);
95 self
96 }
97 pub fn get_policy_engine_id(&self) -> &::std::option::Option<::std::string::String> {
99 self.inner.get_policy_engine_id()
100 }
101 pub fn policy_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
103 self.inner = self.inner.policy_id(input.into());
104 self
105 }
106 pub fn set_policy_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
108 self.inner = self.inner.set_policy_id(input);
109 self
110 }
111 pub fn get_policy_id(&self) -> &::std::option::Option<::std::string::String> {
113 self.inner.get_policy_id()
114 }
115}
116
117pub type PolicyDeletedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
119 crate::operation::get_policy::GetPolicyOutput,
120 ::aws_smithy_runtime_api::client::result::SdkError<
121 crate::operation::get_policy::GetPolicyError,
122 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
123 >,
124>;
125
126pub type WaitUntilPolicyDeletedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
128 crate::operation::get_policy::GetPolicyOutput,
129 crate::operation::get_policy::GetPolicyError,
130>;