aws_sdk_sagemaker/waiters/
endpoint_deleted.rs1#[derive(::std::clone::Clone, ::std::fmt::Debug)]
15pub struct EndpointDeletedFluentBuilder {
16 handle: ::std::sync::Arc<crate::client::Handle>,
17 inner: crate::operation::describe_endpoint::builders::DescribeEndpointInputBuilder,
18}
19impl EndpointDeletedFluentBuilder {
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_endpoint::builders::DescribeEndpointInputBuilder {
29 &self.inner
30 }
31 pub async fn wait(
33 self,
34 max_wait: ::std::time::Duration,
35 ) -> ::std::result::Result<
36 crate::waiters::endpoint_deleted::EndpointDeletedFinalPoll,
37 crate::waiters::endpoint_deleted::WaitUntilEndpointDeletedError,
38 > {
39 let input = self
40 .inner
41 .build()
42 .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
43 let runtime_plugins = crate::operation::describe_endpoint::DescribeEndpoint::operation_runtime_plugins(
44 self.handle.runtime_plugins.clone(),
45 &self.handle.conf,
46 ::std::option::Option::None,
47 )
48 .with_operation_plugin(crate::sdk_feature_tracker::waiter::WaiterFeatureTrackerRuntimePlugin::new());
49 let mut cfg = ::aws_smithy_types::config_bag::ConfigBag::base();
50 let runtime_components_builder = runtime_plugins
51 .apply_client_configuration(&mut cfg)
52 .map_err(::aws_smithy_runtime_api::client::waiters::error::WaiterError::construction_failure)?;
53 let time_components = runtime_components_builder.into_time_components();
54 let sleep_impl = time_components.sleep_impl().expect("a sleep impl is required by waiters");
55 let time_source = time_components.time_source().expect("a time source is required by waiters");
56
57 let acceptor = move |result: ::std::result::Result<
58 &crate::operation::describe_endpoint::DescribeEndpointOutput,
59 &crate::operation::describe_endpoint::DescribeEndpointError,
60 >| {
61 if crate::waiters::matchers::match_describe_endpoint_19c82d26244f04729(result) {
63 return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64 }
65 if crate::waiters::matchers::match_describe_endpoint_1085a59fe5e4bed05(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::describe_endpoint::DescribeEndpoint::orchestrate(&runtime_plugins, input).await }
75 };
76 let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
77 .min_delay(::std::time::Duration::from_secs(30))
78 .max_delay(::std::time::Duration::from_secs(1800))
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 endpoint_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
89 self.inner = self.inner.endpoint_name(input.into());
90 self
91 }
92 pub fn set_endpoint_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
94 self.inner = self.inner.set_endpoint_name(input);
95 self
96 }
97 pub fn get_endpoint_name(&self) -> &::std::option::Option<::std::string::String> {
99 self.inner.get_endpoint_name()
100 }
101}
102
103pub type EndpointDeletedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
105 crate::operation::describe_endpoint::DescribeEndpointOutput,
106 ::aws_smithy_runtime_api::client::result::SdkError<
107 crate::operation::describe_endpoint::DescribeEndpointError,
108 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
109 >,
110>;
111
112pub type WaitUntilEndpointDeletedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
114 crate::operation::describe_endpoint::DescribeEndpointOutput,
115 crate::operation::describe_endpoint::DescribeEndpointError,
116>;