aws_sdk_s3/operation/get_bucket_replication/
builders.rs1pub use crate::operation::get_bucket_replication::_get_bucket_replication_output::GetBucketReplicationOutputBuilder;
3
4pub use crate::operation::get_bucket_replication::_get_bucket_replication_input::GetBucketReplicationInputBuilder;
5
6impl crate::operation::get_bucket_replication::builders::GetBucketReplicationInputBuilder {
7 pub async fn send_with(
9 self,
10 client: &crate::Client,
11 ) -> ::std::result::Result<
12 crate::operation::get_bucket_replication::GetBucketReplicationOutput,
13 ::aws_smithy_runtime_api::client::result::SdkError<
14 crate::operation::get_bucket_replication::GetBucketReplicationError,
15 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
16 >,
17 > {
18 let mut fluent_builder = client.get_bucket_replication();
19 fluent_builder.inner = self;
20 fluent_builder.send().await
21 }
22}
23#[derive(::std::clone::Clone, ::std::fmt::Debug)]
43pub struct GetBucketReplicationFluentBuilder {
44 handle: ::std::sync::Arc<crate::client::Handle>,
45 inner: crate::operation::get_bucket_replication::builders::GetBucketReplicationInputBuilder,
46 config_override: ::std::option::Option<crate::config::Builder>,
47}
48impl
49 crate::client::customize::internal::CustomizableSend<
50 crate::operation::get_bucket_replication::GetBucketReplicationOutput,
51 crate::operation::get_bucket_replication::GetBucketReplicationError,
52 > for GetBucketReplicationFluentBuilder
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::get_bucket_replication::GetBucketReplicationOutput,
60 crate::operation::get_bucket_replication::GetBucketReplicationError,
61 >,
62 > {
63 ::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
64 }
65}
66impl GetBucketReplicationFluentBuilder {
67 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 pub fn as_input(&self) -> &crate::operation::get_bucket_replication::builders::GetBucketReplicationInputBuilder {
77 &self.inner
78 }
79 pub async fn send(
88 self,
89 ) -> ::std::result::Result<
90 crate::operation::get_bucket_replication::GetBucketReplicationOutput,
91 ::aws_smithy_runtime_api::client::result::SdkError<
92 crate::operation::get_bucket_replication::GetBucketReplicationError,
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::get_bucket_replication::GetBucketReplication::operation_runtime_plugins(
101 self.handle.runtime_plugins.clone(),
102 &self.handle.conf,
103 self.config_override,
104 );
105 crate::operation::get_bucket_replication::GetBucketReplication::orchestrate(&runtime_plugins, input).await
106 }
107
108 pub fn customize(
110 self,
111 ) -> crate::client::customize::CustomizableOperation<
112 crate::operation::get_bucket_replication::GetBucketReplicationOutput,
113 crate::operation::get_bucket_replication::GetBucketReplicationError,
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 pub fn bucket(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
129 self.inner = self.inner.bucket(input.into());
130 self
131 }
132 pub fn set_bucket(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
134 self.inner = self.inner.set_bucket(input);
135 self
136 }
137 pub fn get_bucket(&self) -> &::std::option::Option<::std::string::String> {
139 self.inner.get_bucket()
140 }
141 pub fn expected_bucket_owner(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
143 self.inner = self.inner.expected_bucket_owner(input.into());
144 self
145 }
146 pub fn set_expected_bucket_owner(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
148 self.inner = self.inner.set_expected_bucket_owner(input);
149 self
150 }
151 pub fn get_expected_bucket_owner(&self) -> &::std::option::Option<::std::string::String> {
153 self.inner.get_expected_bucket_owner()
154 }
155}