pub use crate::operation::create_global_cluster::_create_global_cluster_output::CreateGlobalClusterOutputBuilder;
pub use crate::operation::create_global_cluster::_create_global_cluster_input::CreateGlobalClusterInputBuilder;
impl CreateGlobalClusterInputBuilder {
pub async fn send_with(
self,
client: &crate::Client,
) -> ::std::result::Result<
crate::operation::create_global_cluster::CreateGlobalClusterOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::create_global_cluster::CreateGlobalClusterError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let mut fluent_builder = client.create_global_cluster();
fluent_builder.inner = self;
fluent_builder.send().await
}
}
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct CreateGlobalClusterFluentBuilder {
handle: ::std::sync::Arc<crate::client::Handle>,
inner: crate::operation::create_global_cluster::builders::CreateGlobalClusterInputBuilder,
config_override: ::std::option::Option<crate::config::Builder>,
}
impl
crate::client::customize::internal::CustomizableSend<
crate::operation::create_global_cluster::CreateGlobalClusterOutput,
crate::operation::create_global_cluster::CreateGlobalClusterError,
> for CreateGlobalClusterFluentBuilder
{
fn send(
self,
config_override: crate::config::Builder,
) -> crate::client::customize::internal::BoxFuture<
crate::client::customize::internal::SendResult<
crate::operation::create_global_cluster::CreateGlobalClusterOutput,
crate::operation::create_global_cluster::CreateGlobalClusterError,
>,
> {
::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
}
}
impl CreateGlobalClusterFluentBuilder {
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::create_global_cluster::builders::CreateGlobalClusterInputBuilder {
&self.inner
}
pub async fn send(
self,
) -> ::std::result::Result<
crate::operation::create_global_cluster::CreateGlobalClusterOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::create_global_cluster::CreateGlobalClusterError,
::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::create_global_cluster::CreateGlobalCluster::operation_runtime_plugins(
self.handle.runtime_plugins.clone(),
&self.handle.conf,
self.config_override,
);
crate::operation::create_global_cluster::CreateGlobalCluster::orchestrate(&runtime_plugins, input).await
}
pub fn customize(
self,
) -> crate::client::customize::CustomizableOperation<
crate::operation::create_global_cluster::CreateGlobalClusterOutput,
crate::operation::create_global_cluster::CreateGlobalClusterError,
Self,
> {
crate::client::customize::CustomizableOperation::new(self)
}
pub(crate) fn config_override(mut self, config_override: impl Into<crate::config::Builder>) -> Self {
self.set_config_override(Some(config_override.into()));
self
}
pub(crate) fn set_config_override(&mut self, config_override: Option<crate::config::Builder>) -> &mut Self {
self.config_override = config_override;
self
}
pub fn global_cluster_identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.global_cluster_identifier(input.into());
self
}
pub fn set_global_cluster_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_global_cluster_identifier(input);
self
}
pub fn get_global_cluster_identifier(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_global_cluster_identifier()
}
pub fn source_db_cluster_identifier(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.source_db_cluster_identifier(input.into());
self
}
pub fn set_source_db_cluster_identifier(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_source_db_cluster_identifier(input);
self
}
pub fn get_source_db_cluster_identifier(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_source_db_cluster_identifier()
}
pub fn engine(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.engine(input.into());
self
}
pub fn set_engine(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_engine(input);
self
}
pub fn get_engine(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_engine()
}
pub fn engine_version(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.engine_version(input.into());
self
}
pub fn set_engine_version(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_engine_version(input);
self
}
pub fn get_engine_version(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_engine_version()
}
pub fn deletion_protection(mut self, input: bool) -> Self {
self.inner = self.inner.deletion_protection(input);
self
}
pub fn set_deletion_protection(mut self, input: ::std::option::Option<bool>) -> Self {
self.inner = self.inner.set_deletion_protection(input);
self
}
pub fn get_deletion_protection(&self) -> &::std::option::Option<bool> {
self.inner.get_deletion_protection()
}
pub fn database_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.database_name(input.into());
self
}
pub fn set_database_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_database_name(input);
self
}
pub fn get_database_name(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_database_name()
}
pub fn storage_encrypted(mut self, input: bool) -> Self {
self.inner = self.inner.storage_encrypted(input);
self
}
pub fn set_storage_encrypted(mut self, input: ::std::option::Option<bool>) -> Self {
self.inner = self.inner.set_storage_encrypted(input);
self
}
pub fn get_storage_encrypted(&self) -> &::std::option::Option<bool> {
self.inner.get_storage_encrypted()
}
}