aws_sdk_rekognition/waiters/
project_version_running.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `project_version_running` 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 ProjectVersionRunningFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::describe_project_versions::builders::DescribeProjectVersionsInputBuilder,
18}
19impl ProjectVersionRunningFluentBuilder {
20    /// Creates a new `ProjectVersionRunningFluentBuilder`.
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 DescribeProjectVersions as a reference.
28    pub fn as_input(&self) -> &crate::operation::describe_project_versions::builders::DescribeProjectVersionsInputBuilder {
29        &self.inner
30    }
31    /// Wait until the ProjectVersion is running.
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<
36        crate::waiters::project_version_running::ProjectVersionRunningFinalPoll,
37        crate::waiters::project_version_running::WaitUntilProjectVersionRunningError,
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_project_versions::DescribeProjectVersions::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_project_versions::DescribeProjectVersionsOutput,
59            &crate::operation::describe_project_versions::DescribeProjectVersionsError,
60        >| {
61            // Matches: {"output":{"path":"ProjectVersionDescriptions[].Status","expected":"RUNNING","comparator":"allStringEquals"}}
62            if crate::waiters::matchers::match_describe_project_versions_ecdc1939edd26defa(result) {
63                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64            }
65            // Matches: {"output":{"path":"ProjectVersionDescriptions[].Status","expected":"FAILED","comparator":"anyStringEquals"}}
66            if crate::waiters::matchers::match_describe_project_versions_372e6b6443f871a1d(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_project_versions::DescribeProjectVersions::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(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    /// <p>The Amazon Resource Name (ARN) of the project that contains the model/adapter you want to describe.</p>
88    pub fn project_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
89        self.inner = self.inner.project_arn(input.into());
90        self
91    }
92    /// <p>The Amazon Resource Name (ARN) of the project that contains the model/adapter you want to describe.</p>
93    pub fn set_project_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
94        self.inner = self.inner.set_project_arn(input);
95        self
96    }
97    /// <p>The Amazon Resource Name (ARN) of the project that contains the model/adapter you want to describe.</p>
98    pub fn get_project_arn(&self) -> &::std::option::Option<::std::string::String> {
99        self.inner.get_project_arn()
100    }
101    ///
102    /// Appends an item to `VersionNames`.
103    ///
104    /// To override the contents of this collection use [`set_version_names`](Self::set_version_names).
105    ///
106    /// <p>A list of model or project version names that you want to describe. You can add up to 10 model or project version names to the list. If you don't specify a value, all project version descriptions are returned. A version name is part of a project version ARN. For example, <code>my-model.2020-01-21T09.10.15</code> is the version name in the following ARN. <code>arn:aws:rekognition:us-east-1:123456789012:project/getting-started/version/<i>my-model.2020-01-21T09.10.15</i>/1234567890123</code>.</p>
107    pub fn version_names(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
108        self.inner = self.inner.version_names(input.into());
109        self
110    }
111    /// <p>A list of model or project version names that you want to describe. You can add up to 10 model or project version names to the list. If you don't specify a value, all project version descriptions are returned. A version name is part of a project version ARN. For example, <code>my-model.2020-01-21T09.10.15</code> is the version name in the following ARN. <code>arn:aws:rekognition:us-east-1:123456789012:project/getting-started/version/<i>my-model.2020-01-21T09.10.15</i>/1234567890123</code>.</p>
112    pub fn set_version_names(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
113        self.inner = self.inner.set_version_names(input);
114        self
115    }
116    /// <p>A list of model or project version names that you want to describe. You can add up to 10 model or project version names to the list. If you don't specify a value, all project version descriptions are returned. A version name is part of a project version ARN. For example, <code>my-model.2020-01-21T09.10.15</code> is the version name in the following ARN. <code>arn:aws:rekognition:us-east-1:123456789012:project/getting-started/version/<i>my-model.2020-01-21T09.10.15</i>/1234567890123</code>.</p>
117    pub fn get_version_names(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
118        self.inner.get_version_names()
119    }
120    /// <p>If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.</p>
121    pub fn next_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
122        self.inner = self.inner.next_token(input.into());
123        self
124    }
125    /// <p>If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.</p>
126    pub fn set_next_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
127        self.inner = self.inner.set_next_token(input);
128        self
129    }
130    /// <p>If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.</p>
131    pub fn get_next_token(&self) -> &::std::option::Option<::std::string::String> {
132        self.inner.get_next_token()
133    }
134    /// <p>The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.</p>
135    pub fn max_results(mut self, input: i32) -> Self {
136        self.inner = self.inner.max_results(input);
137        self
138    }
139    /// <p>The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.</p>
140    pub fn set_max_results(mut self, input: ::std::option::Option<i32>) -> Self {
141        self.inner = self.inner.set_max_results(input);
142        self
143    }
144    /// <p>The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.</p>
145    pub fn get_max_results(&self) -> &::std::option::Option<i32> {
146        self.inner.get_max_results()
147    }
148}
149
150/// Successful return type for the `project_version_running` waiter.
151pub type ProjectVersionRunningFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
152    crate::operation::describe_project_versions::DescribeProjectVersionsOutput,
153    ::aws_smithy_runtime_api::client::result::SdkError<
154        crate::operation::describe_project_versions::DescribeProjectVersionsError,
155        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
156    >,
157>;
158
159/// Error type for the `project_version_running` waiter.
160pub type WaitUntilProjectVersionRunningError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
161    crate::operation::describe_project_versions::DescribeProjectVersionsOutput,
162    crate::operation::describe_project_versions::DescribeProjectVersionsError,
163>;