pub use crate::operation::create_hosted_zone::_create_hosted_zone_output::CreateHostedZoneOutputBuilder;
pub use crate::operation::create_hosted_zone::_create_hosted_zone_input::CreateHostedZoneInputBuilder;
impl CreateHostedZoneInputBuilder {
pub async fn send_with(
self,
client: &crate::Client,
) -> ::std::result::Result<
crate::operation::create_hosted_zone::CreateHostedZoneOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::create_hosted_zone::CreateHostedZoneError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let mut fluent_builder = client.create_hosted_zone();
fluent_builder.inner = self;
fluent_builder.send().await
}
}
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct CreateHostedZoneFluentBuilder {
handle: ::std::sync::Arc<crate::client::Handle>,
inner: crate::operation::create_hosted_zone::builders::CreateHostedZoneInputBuilder,
config_override: ::std::option::Option<crate::config::Builder>,
}
impl
crate::client::customize::internal::CustomizableSend<
crate::operation::create_hosted_zone::CreateHostedZoneOutput,
crate::operation::create_hosted_zone::CreateHostedZoneError,
> for CreateHostedZoneFluentBuilder
{
fn send(
self,
config_override: crate::config::Builder,
) -> crate::client::customize::internal::BoxFuture<
crate::client::customize::internal::SendResult<
crate::operation::create_hosted_zone::CreateHostedZoneOutput,
crate::operation::create_hosted_zone::CreateHostedZoneError,
>,
> {
::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
}
}
impl CreateHostedZoneFluentBuilder {
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_hosted_zone::builders::CreateHostedZoneInputBuilder {
&self.inner
}
pub async fn send(
self,
) -> ::std::result::Result<
crate::operation::create_hosted_zone::CreateHostedZoneOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::create_hosted_zone::CreateHostedZoneError,
::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_hosted_zone::CreateHostedZone::operation_runtime_plugins(
self.handle.runtime_plugins.clone(),
&self.handle.conf,
self.config_override,
);
crate::operation::create_hosted_zone::CreateHostedZone::orchestrate(&runtime_plugins, input).await
}
pub fn customize(
self,
) -> crate::client::customize::CustomizableOperation<
crate::operation::create_hosted_zone::CreateHostedZoneOutput,
crate::operation::create_hosted_zone::CreateHostedZoneError,
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 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 vpc(mut self, input: crate::types::Vpc) -> Self {
self.inner = self.inner.vpc(input);
self
}
pub fn set_vpc(mut self, input: ::std::option::Option<crate::types::Vpc>) -> Self {
self.inner = self.inner.set_vpc(input);
self
}
pub fn get_vpc(&self) -> &::std::option::Option<crate::types::Vpc> {
self.inner.get_vpc()
}
pub fn caller_reference(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.caller_reference(input.into());
self
}
pub fn set_caller_reference(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_caller_reference(input);
self
}
pub fn get_caller_reference(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_caller_reference()
}
pub fn hosted_zone_config(mut self, input: crate::types::HostedZoneConfig) -> Self {
self.inner = self.inner.hosted_zone_config(input);
self
}
pub fn set_hosted_zone_config(mut self, input: ::std::option::Option<crate::types::HostedZoneConfig>) -> Self {
self.inner = self.inner.set_hosted_zone_config(input);
self
}
pub fn get_hosted_zone_config(&self) -> &::std::option::Option<crate::types::HostedZoneConfig> {
self.inner.get_hosted_zone_config()
}
pub fn delegation_set_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.delegation_set_id(input.into());
self
}
pub fn set_delegation_set_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_delegation_set_id(input);
self
}
pub fn get_delegation_set_id(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_delegation_set_id()
}
}