aws_sdk_forecast/operation/describe_monitor/
builders.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub use crate::operation::describe_monitor::_describe_monitor_output::DescribeMonitorOutputBuilder;
3
4pub use crate::operation::describe_monitor::_describe_monitor_input::DescribeMonitorInputBuilder;
5
6impl crate::operation::describe_monitor::builders::DescribeMonitorInputBuilder {
7    /// Sends a request with this input using the given client.
8    pub async fn send_with(
9        self,
10        client: &crate::Client,
11    ) -> ::std::result::Result<
12        crate::operation::describe_monitor::DescribeMonitorOutput,
13        ::aws_smithy_runtime_api::client::result::SdkError<
14            crate::operation::describe_monitor::DescribeMonitorError,
15            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
16        >,
17    > {
18        let mut fluent_builder = client.describe_monitor();
19        fluent_builder.inner = self;
20        fluent_builder.send().await
21    }
22}
23/// Fluent builder constructing a request to `DescribeMonitor`.
24///
25/// <p>Describes a monitor resource. In addition to listing the properties provided in the <code>CreateMonitor</code> request, this operation lists the following properties:</p>
26/// <ul>
27/// <li>
28/// <p><code>Baseline</code></p></li>
29/// <li>
30/// <p><code>CreationTime</code></p></li>
31/// <li>
32/// <p><code>LastEvaluationTime</code></p></li>
33/// <li>
34/// <p><code>LastEvaluationState</code></p></li>
35/// <li>
36/// <p><code>LastModificationTime</code></p></li>
37/// <li>
38/// <p><code>Message</code></p></li>
39/// <li>
40/// <p><code>Status</code></p></li>
41/// </ul>
42#[derive(::std::clone::Clone, ::std::fmt::Debug)]
43pub struct DescribeMonitorFluentBuilder {
44    handle: ::std::sync::Arc<crate::client::Handle>,
45    inner: crate::operation::describe_monitor::builders::DescribeMonitorInputBuilder,
46    config_override: ::std::option::Option<crate::config::Builder>,
47}
48impl
49    crate::client::customize::internal::CustomizableSend<
50        crate::operation::describe_monitor::DescribeMonitorOutput,
51        crate::operation::describe_monitor::DescribeMonitorError,
52    > for DescribeMonitorFluentBuilder
53{
54    fn send(
55        self,
56        config_override: crate::config::Builder,
57    ) -> crate::client::customize::internal::BoxFuture<
58        crate::client::customize::internal::SendResult<
59            crate::operation::describe_monitor::DescribeMonitorOutput,
60            crate::operation::describe_monitor::DescribeMonitorError,
61        >,
62    > {
63        ::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
64    }
65}
66impl DescribeMonitorFluentBuilder {
67    /// Creates a new `DescribeMonitorFluentBuilder`.
68    pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
69        Self {
70            handle,
71            inner: ::std::default::Default::default(),
72            config_override: ::std::option::Option::None,
73        }
74    }
75    /// Access the DescribeMonitor as a reference.
76    pub fn as_input(&self) -> &crate::operation::describe_monitor::builders::DescribeMonitorInputBuilder {
77        &self.inner
78    }
79    /// Sends the request and returns the response.
80    ///
81    /// If an error occurs, an `SdkError` will be returned with additional details that
82    /// can be matched against.
83    ///
84    /// By default, any retryable failures will be retried twice. Retry behavior
85    /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
86    /// set when configuring the client.
87    pub async fn send(
88        self,
89    ) -> ::std::result::Result<
90        crate::operation::describe_monitor::DescribeMonitorOutput,
91        ::aws_smithy_runtime_api::client::result::SdkError<
92            crate::operation::describe_monitor::DescribeMonitorError,
93            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
94        >,
95    > {
96        let input = self
97            .inner
98            .build()
99            .map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
100        let runtime_plugins = crate::operation::describe_monitor::DescribeMonitor::operation_runtime_plugins(
101            self.handle.runtime_plugins.clone(),
102            &self.handle.conf,
103            self.config_override,
104        );
105        crate::operation::describe_monitor::DescribeMonitor::orchestrate(&runtime_plugins, input).await
106    }
107
108    /// Consumes this builder, creating a customizable operation that can be modified before being sent.
109    pub fn customize(
110        self,
111    ) -> crate::client::customize::CustomizableOperation<
112        crate::operation::describe_monitor::DescribeMonitorOutput,
113        crate::operation::describe_monitor::DescribeMonitorError,
114        Self,
115    > {
116        crate::client::customize::CustomizableOperation::new(self)
117    }
118    pub(crate) fn config_override(mut self, config_override: impl ::std::convert::Into<crate::config::Builder>) -> Self {
119        self.set_config_override(::std::option::Option::Some(config_override.into()));
120        self
121    }
122
123    pub(crate) fn set_config_override(&mut self, config_override: ::std::option::Option<crate::config::Builder>) -> &mut Self {
124        self.config_override = config_override;
125        self
126    }
127    /// <p>The Amazon Resource Name (ARN) of the monitor resource to describe.</p>
128    pub fn monitor_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
129        self.inner = self.inner.monitor_arn(input.into());
130        self
131    }
132    /// <p>The Amazon Resource Name (ARN) of the monitor resource to describe.</p>
133    pub fn set_monitor_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
134        self.inner = self.inner.set_monitor_arn(input);
135        self
136    }
137    /// <p>The Amazon Resource Name (ARN) of the monitor resource to describe.</p>
138    pub fn get_monitor_arn(&self) -> &::std::option::Option<::std::string::String> {
139        self.inner.get_monitor_arn()
140    }
141}