aws_sdk_wellarchitected/operation/create_template_share/
builders.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub use crate::operation::create_template_share::_create_template_share_output::CreateTemplateShareOutputBuilder;
3
4pub use crate::operation::create_template_share::_create_template_share_input::CreateTemplateShareInputBuilder;
5
6impl crate::operation::create_template_share::builders::CreateTemplateShareInputBuilder {
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::create_template_share::CreateTemplateShareOutput,
13        ::aws_smithy_runtime_api::client::result::SdkError<
14            crate::operation::create_template_share::CreateTemplateShareError,
15            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
16        >,
17    > {
18        let mut fluent_builder = client.create_template_share();
19        fluent_builder.inner = self;
20        fluent_builder.send().await
21    }
22}
23/// Fluent builder constructing a request to `CreateTemplateShare`.
24///
25/// <p>Create a review template share.</p>
26/// <p>The owner of a review template can share it with other Amazon Web Services accounts, users, an organization, and organizational units (OUs) in the same Amazon Web Services Region.</p>
27/// <p>Shared access to a review template is not removed until the review template share invitation is deleted.</p>
28/// <p>If you share a review template with an organization or OU, all accounts in the organization or OU are granted access to the review template.</p><note>
29/// <p><b>Disclaimer</b></p>
30/// <p>By sharing your review template with other Amazon Web Services accounts, you acknowledge that Amazon Web Services will make your review template available to those other accounts.</p>
31/// </note>
32#[derive(::std::clone::Clone, ::std::fmt::Debug)]
33pub struct CreateTemplateShareFluentBuilder {
34    handle: ::std::sync::Arc<crate::client::Handle>,
35    inner: crate::operation::create_template_share::builders::CreateTemplateShareInputBuilder,
36    config_override: ::std::option::Option<crate::config::Builder>,
37}
38impl
39    crate::client::customize::internal::CustomizableSend<
40        crate::operation::create_template_share::CreateTemplateShareOutput,
41        crate::operation::create_template_share::CreateTemplateShareError,
42    > for CreateTemplateShareFluentBuilder
43{
44    fn send(
45        self,
46        config_override: crate::config::Builder,
47    ) -> crate::client::customize::internal::BoxFuture<
48        crate::client::customize::internal::SendResult<
49            crate::operation::create_template_share::CreateTemplateShareOutput,
50            crate::operation::create_template_share::CreateTemplateShareError,
51        >,
52    > {
53        ::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
54    }
55}
56impl CreateTemplateShareFluentBuilder {
57    /// Creates a new `CreateTemplateShareFluentBuilder`.
58    pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
59        Self {
60            handle,
61            inner: ::std::default::Default::default(),
62            config_override: ::std::option::Option::None,
63        }
64    }
65    /// Access the CreateTemplateShare as a reference.
66    pub fn as_input(&self) -> &crate::operation::create_template_share::builders::CreateTemplateShareInputBuilder {
67        &self.inner
68    }
69    /// Sends the request and returns the response.
70    ///
71    /// If an error occurs, an `SdkError` will be returned with additional details that
72    /// can be matched against.
73    ///
74    /// By default, any retryable failures will be retried twice. Retry behavior
75    /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
76    /// set when configuring the client.
77    pub async fn send(
78        self,
79    ) -> ::std::result::Result<
80        crate::operation::create_template_share::CreateTemplateShareOutput,
81        ::aws_smithy_runtime_api::client::result::SdkError<
82            crate::operation::create_template_share::CreateTemplateShareError,
83            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
84        >,
85    > {
86        let input = self
87            .inner
88            .build()
89            .map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
90        let runtime_plugins = crate::operation::create_template_share::CreateTemplateShare::operation_runtime_plugins(
91            self.handle.runtime_plugins.clone(),
92            &self.handle.conf,
93            self.config_override,
94        );
95        crate::operation::create_template_share::CreateTemplateShare::orchestrate(&runtime_plugins, input).await
96    }
97
98    /// Consumes this builder, creating a customizable operation that can be modified before being sent.
99    pub fn customize(
100        self,
101    ) -> crate::client::customize::CustomizableOperation<
102        crate::operation::create_template_share::CreateTemplateShareOutput,
103        crate::operation::create_template_share::CreateTemplateShareError,
104        Self,
105    > {
106        crate::client::customize::CustomizableOperation::new(self)
107    }
108    pub(crate) fn config_override(mut self, config_override: impl ::std::convert::Into<crate::config::Builder>) -> Self {
109        self.set_config_override(::std::option::Option::Some(config_override.into()));
110        self
111    }
112
113    pub(crate) fn set_config_override(&mut self, config_override: ::std::option::Option<crate::config::Builder>) -> &mut Self {
114        self.config_override = config_override;
115        self
116    }
117    /// <p>The review template ARN.</p>
118    pub fn template_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
119        self.inner = self.inner.template_arn(input.into());
120        self
121    }
122    /// <p>The review template ARN.</p>
123    pub fn set_template_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
124        self.inner = self.inner.set_template_arn(input);
125        self
126    }
127    /// <p>The review template ARN.</p>
128    pub fn get_template_arn(&self) -> &::std::option::Option<::std::string::String> {
129        self.inner.get_template_arn()
130    }
131    /// <p>The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which the workload, lens, profile, or review template is shared.</p>
132    pub fn shared_with(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
133        self.inner = self.inner.shared_with(input.into());
134        self
135    }
136    /// <p>The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which the workload, lens, profile, or review template is shared.</p>
137    pub fn set_shared_with(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
138        self.inner = self.inner.set_shared_with(input);
139        self
140    }
141    /// <p>The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which the workload, lens, profile, or review template is shared.</p>
142    pub fn get_shared_with(&self) -> &::std::option::Option<::std::string::String> {
143        self.inner.get_shared_with()
144    }
145    /// <p>A unique case-sensitive string used to ensure that this request is idempotent (executes only once).</p>
146    /// <p>You should not reuse the same token for other requests. If you retry a request with the same client request token and the same parameters after the original request has completed successfully, the result of the original request is returned.</p><important>
147    /// <p>This token is listed as required, however, if you do not specify it, the Amazon Web Services SDKs automatically generate one for you. If you are not using the Amazon Web Services SDK or the CLI, you must provide this token or the request will fail.</p>
148    /// </important>
149    pub fn client_request_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
150        self.inner = self.inner.client_request_token(input.into());
151        self
152    }
153    /// <p>A unique case-sensitive string used to ensure that this request is idempotent (executes only once).</p>
154    /// <p>You should not reuse the same token for other requests. If you retry a request with the same client request token and the same parameters after the original request has completed successfully, the result of the original request is returned.</p><important>
155    /// <p>This token is listed as required, however, if you do not specify it, the Amazon Web Services SDKs automatically generate one for you. If you are not using the Amazon Web Services SDK or the CLI, you must provide this token or the request will fail.</p>
156    /// </important>
157    pub fn set_client_request_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
158        self.inner = self.inner.set_client_request_token(input);
159        self
160    }
161    /// <p>A unique case-sensitive string used to ensure that this request is idempotent (executes only once).</p>
162    /// <p>You should not reuse the same token for other requests. If you retry a request with the same client request token and the same parameters after the original request has completed successfully, the result of the original request is returned.</p><important>
163    /// <p>This token is listed as required, however, if you do not specify it, the Amazon Web Services SDKs automatically generate one for you. If you are not using the Amazon Web Services SDK or the CLI, you must provide this token or the request will fail.</p>
164    /// </important>
165    pub fn get_client_request_token(&self) -> &::std::option::Option<::std::string::String> {
166        self.inner.get_client_request_token()
167    }
168}