aws_sdk_datasync/operation/update_storage_system/
builders.rspub use crate::operation::update_storage_system::_update_storage_system_output::UpdateStorageSystemOutputBuilder;
pub use crate::operation::update_storage_system::_update_storage_system_input::UpdateStorageSystemInputBuilder;
impl crate::operation::update_storage_system::builders::UpdateStorageSystemInputBuilder {
pub async fn send_with(
self,
client: &crate::Client,
) -> ::std::result::Result<
crate::operation::update_storage_system::UpdateStorageSystemOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::update_storage_system::UpdateStorageSystemError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let mut fluent_builder = client.update_storage_system();
fluent_builder.inner = self;
fluent_builder.send().await
}
}
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct UpdateStorageSystemFluentBuilder {
handle: ::std::sync::Arc<crate::client::Handle>,
inner: crate::operation::update_storage_system::builders::UpdateStorageSystemInputBuilder,
config_override: ::std::option::Option<crate::config::Builder>,
}
impl
crate::client::customize::internal::CustomizableSend<
crate::operation::update_storage_system::UpdateStorageSystemOutput,
crate::operation::update_storage_system::UpdateStorageSystemError,
> for UpdateStorageSystemFluentBuilder
{
fn send(
self,
config_override: crate::config::Builder,
) -> crate::client::customize::internal::BoxFuture<
crate::client::customize::internal::SendResult<
crate::operation::update_storage_system::UpdateStorageSystemOutput,
crate::operation::update_storage_system::UpdateStorageSystemError,
>,
> {
::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
}
}
impl UpdateStorageSystemFluentBuilder {
pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
Self {
handle,
inner: ::std::default::Default::default(),
config_override: ::std::option::Option::None,
}
}
pub fn as_input(&self) -> &crate::operation::update_storage_system::builders::UpdateStorageSystemInputBuilder {
&self.inner
}
pub async fn send(
self,
) -> ::std::result::Result<
crate::operation::update_storage_system::UpdateStorageSystemOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::update_storage_system::UpdateStorageSystemError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let input = self
.inner
.build()
.map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
let runtime_plugins = crate::operation::update_storage_system::UpdateStorageSystem::operation_runtime_plugins(
self.handle.runtime_plugins.clone(),
&self.handle.conf,
self.config_override,
);
crate::operation::update_storage_system::UpdateStorageSystem::orchestrate(&runtime_plugins, input).await
}
pub fn customize(
self,
) -> crate::client::customize::CustomizableOperation<
crate::operation::update_storage_system::UpdateStorageSystemOutput,
crate::operation::update_storage_system::UpdateStorageSystemError,
Self,
> {
crate::client::customize::CustomizableOperation::new(self)
}
pub(crate) fn config_override(mut self, config_override: impl ::std::convert::Into<crate::config::Builder>) -> Self {
self.set_config_override(::std::option::Option::Some(config_override.into()));
self
}
pub(crate) fn set_config_override(&mut self, config_override: ::std::option::Option<crate::config::Builder>) -> &mut Self {
self.config_override = config_override;
self
}
pub fn storage_system_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.storage_system_arn(input.into());
self
}
pub fn set_storage_system_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_storage_system_arn(input);
self
}
pub fn get_storage_system_arn(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_storage_system_arn()
}
pub fn server_configuration(mut self, input: crate::types::DiscoveryServerConfiguration) -> Self {
self.inner = self.inner.server_configuration(input);
self
}
pub fn set_server_configuration(mut self, input: ::std::option::Option<crate::types::DiscoveryServerConfiguration>) -> Self {
self.inner = self.inner.set_server_configuration(input);
self
}
pub fn get_server_configuration(&self) -> &::std::option::Option<crate::types::DiscoveryServerConfiguration> {
self.inner.get_server_configuration()
}
pub fn agent_arns(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.agent_arns(input.into());
self
}
pub fn set_agent_arns(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
self.inner = self.inner.set_agent_arns(input);
self
}
pub fn get_agent_arns(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
self.inner.get_agent_arns()
}
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.name(input.into());
self
}
pub fn set_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_name(input);
self
}
pub fn get_name(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_name()
}
pub fn cloud_watch_log_group_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.cloud_watch_log_group_arn(input.into());
self
}
pub fn set_cloud_watch_log_group_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_cloud_watch_log_group_arn(input);
self
}
pub fn get_cloud_watch_log_group_arn(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_cloud_watch_log_group_arn()
}
pub fn credentials(mut self, input: crate::types::Credentials) -> Self {
self.inner = self.inner.credentials(input);
self
}
pub fn set_credentials(mut self, input: ::std::option::Option<crate::types::Credentials>) -> Self {
self.inner = self.inner.set_credentials(input);
self
}
pub fn get_credentials(&self) -> &::std::option::Option<crate::types::Credentials> {
self.inner.get_credentials()
}
}