aws_sdk_ec2/waiters/
password_data_available.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2
3///
4/// Fluent builder for the `password_data_available` 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 PasswordDataAvailableFluentBuilder {
16    handle: ::std::sync::Arc<crate::client::Handle>,
17    inner: crate::operation::get_password_data::builders::GetPasswordDataInputBuilder,
18}
19impl PasswordDataAvailableFluentBuilder {
20    /// Creates a new `PasswordDataAvailableFluentBuilder`.
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 GetPasswordData as a reference.
28    pub fn as_input(&self) -> &crate::operation::get_password_data::builders::GetPasswordDataInputBuilder {
29        &self.inner
30    }
31    /// Wait for `password_data_available`
32    pub async fn wait(
33        self,
34        max_wait: ::std::time::Duration,
35    ) -> ::std::result::Result<
36        crate::waiters::password_data_available::PasswordDataAvailableFinalPoll,
37        crate::waiters::password_data_available::WaitUntilPasswordDataAvailableError,
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::get_password_data::GetPasswordData::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::get_password_data::GetPasswordDataOutput,
59            &crate::operation::get_password_data::GetPasswordDataError,
60        >| {
61            // Matches: {"output":{"path":"length(PasswordData) > `0`","expected":"true","comparator":"booleanEquals"}}
62            if crate::waiters::matchers::match_get_password_data_6fefb1345d49c7eeb(result) {
63                return ::aws_smithy_runtime::client::waiters::AcceptorState::Success;
64            }
65            ::aws_smithy_runtime::client::waiters::AcceptorState::NoAcceptorsMatched
66        };
67        let operation = move || {
68            let input = input.clone();
69            let runtime_plugins = runtime_plugins.clone();
70            async move { crate::operation::get_password_data::GetPasswordData::orchestrate(&runtime_plugins, input).await }
71        };
72        let orchestrator = ::aws_smithy_runtime::client::waiters::WaiterOrchestrator::builder()
73            .min_delay(::std::time::Duration::from_secs(15))
74            .max_delay(::std::time::Duration::from_secs(120))
75            .max_wait(max_wait)
76            .time_source(time_source)
77            .sleep_impl(sleep_impl)
78            .acceptor(acceptor)
79            .operation(operation)
80            .build();
81        ::aws_smithy_runtime::client::waiters::attach_waiter_tracing_span(orchestrator.orchestrate()).await
82    }
83    /// <p>The ID of the Windows instance.</p>
84    pub fn instance_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
85        self.inner = self.inner.instance_id(input.into());
86        self
87    }
88    /// <p>The ID of the Windows instance.</p>
89    pub fn set_instance_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
90        self.inner = self.inner.set_instance_id(input);
91        self
92    }
93    /// <p>The ID of the Windows instance.</p>
94    pub fn get_instance_id(&self) -> &::std::option::Option<::std::string::String> {
95        self.inner.get_instance_id()
96    }
97    /// <p>Checks whether you have the required permissions for the operation, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
98    pub fn dry_run(mut self, input: bool) -> Self {
99        self.inner = self.inner.dry_run(input);
100        self
101    }
102    /// <p>Checks whether you have the required permissions for the operation, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
103    pub fn set_dry_run(mut self, input: ::std::option::Option<bool>) -> Self {
104        self.inner = self.inner.set_dry_run(input);
105        self
106    }
107    /// <p>Checks whether you have the required permissions for the operation, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
108    pub fn get_dry_run(&self) -> &::std::option::Option<bool> {
109        self.inner.get_dry_run()
110    }
111}
112
113/// Successful return type for the `password_data_available` waiter.
114pub type PasswordDataAvailableFinalPoll = ::aws_smithy_runtime_api::client::waiters::FinalPoll<
115    crate::operation::get_password_data::GetPasswordDataOutput,
116    ::aws_smithy_runtime_api::client::result::SdkError<
117        crate::operation::get_password_data::GetPasswordDataError,
118        ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
119    >,
120>;
121
122/// Error type for the `password_data_available` waiter.
123pub type WaitUntilPasswordDataAvailableError = ::aws_smithy_runtime_api::client::waiters::error::WaiterError<
124    crate::operation::get_password_data::GetPasswordDataOutput,
125    crate::operation::get_password_data::GetPasswordDataError,
126>;