aws_sdk_sagemaker/waiters/
image_version_created.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `image_version_created` waiter.
5///
6/// This builder is intended to be used similar to the other fluent builders for
7/// normal operations on the client. However, instead of a `send` method, it has
8/// a `wait` method that takes a maximum amount of time to wait.
9///
10/// Construct this fluent builder using the client by importing the
11/// [`Waiters`](crate::client::Waiters) trait and calling the methods
12/// prefixed with `wait_until`.
13///
14#[derive(::std::clone::Clone, ::std::fmt::Debug)]
15pub struct ImageVersionCreatedFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::describe_image_version::builders::DescribeImageVersionInputBuilder,
18}
19impl ImageVersionCreatedFluentBuilder {
20    /// Creates a new `ImageVersionCreatedFluentBuilder`.
21    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    /// Access the DescribeImageVersion as a reference.
28    pub fn as_input(&self) -> &crate::operation::describe_image_version::builders::DescribeImageVersionInputBuilder {
29        &self.inner
30    }
31    /// Wait for `image_version_created`
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<
36        crate::waiters::image_version_created::ImageVersionCreatedFinalPoll,
37        crate::waiters::image_version_created::WaitUntilImageVersionCreatedError,
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_image_version::DescribeImageVersion::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_image_version::DescribeImageVersionOutput,
59            &crate::operation::describe_image_version::DescribeImageVersionError,
60        >| {
61            // Matches: {"output":{"path":"ImageVersionStatus","expected":"CREATED","comparator":"stringEquals"}}
62            if crate::waiters::matchers::match_describe_image_version_3e437bf5fdf17cfc6(result) {
63                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64            }
65            // Matches: {"output":{"path":"ImageVersionStatus","expected":"CREATE_FAILED","comparator":"stringEquals"}}
66            if crate::waiters::matchers::match_describe_image_version_6f23d4602c6e621d4(result) {
67                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
68            }
69            // Matches: {"errorType":"ValidationException"}
70            if crate::waiters::matchers::match_describe_image_version_19c82d26244f04729(result) {
71                return ::aws_smithy_runtime::client::waiters::AcceptorState::Failure;
72            }
73            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
74        };
75        let operation = move || {
76            let input = input.clone();
77            let runtime_plugins = runtime_plugins.clone();
78            async move { crate::operation::describe_image_version::DescribeImageVersion::orchestrate(&runtime_plugins, input).await }
79        };
80        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
81            .min_delay(::std::time::Duration::from_secs(60))
82            .max_delay(::std::time::Duration::from_secs(3600))
83            .max_wait(max_wait)
84            .time_source(time_source)
85            .sleep_impl(sleep_impl)
86            .acceptor(acceptor)
87            .operation(operation)
88            .build();
89        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
90    }
91    /// <p>The name of the image.</p>
92    pub fn image_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
93        self.inner = self.inner.image_name(input.into());
94        self
95    }
96    /// <p>The name of the image.</p>
97    pub fn set_image_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
98        self.inner = self.inner.set_image_name(input);
99        self
100    }
101    /// <p>The name of the image.</p>
102    pub fn get_image_name(&self) -> &::std::option::Option<::std::string::String> {
103        self.inner.get_image_name()
104    }
105    /// <p>The version of the image. If not specified, the latest version is described.</p>
106    pub fn version(mut self, input: i32) -> Self {
107        self.inner = self.inner.version(input);
108        self
109    }
110    /// <p>The version of the image. If not specified, the latest version is described.</p>
111    pub fn set_version(mut self, input: ::std::option::Option<i32>) -> Self {
112        self.inner = self.inner.set_version(input);
113        self
114    }
115    /// <p>The version of the image. If not specified, the latest version is described.</p>
116    pub fn get_version(&self) -> &::std::option::Option<i32> {
117        self.inner.get_version()
118    }
119    /// <p>The alias of the image version.</p>
120    pub fn alias(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
121        self.inner = self.inner.alias(input.into());
122        self
123    }
124    /// <p>The alias of the image version.</p>
125    pub fn set_alias(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
126        self.inner = self.inner.set_alias(input);
127        self
128    }
129    /// <p>The alias of the image version.</p>
130    pub fn get_alias(&self) -> &::std::option::Option<::std::string::String> {
131        self.inner.get_alias()
132    }
133}
134
135/// Successful return type for the `image_version_created` waiter.
136pub type ImageVersionCreatedFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
137    crate::operation::describe_image_version::DescribeImageVersionOutput,
138    ::aws_smithy_runtime_api::client::result::SdkError<
139        crate::operation::describe_image_version::DescribeImageVersionError,
140        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
141    >,
142>;
143
144/// Error type for the `image_version_created` waiter.
145pub type WaitUntilImageVersionCreatedError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
146    crate::operation::describe_image_version::DescribeImageVersionOutput,
147    crate::operation::describe_image_version::DescribeImageVersionError,
148>;