Struct aws_sdk_appsync::types::builders::DomainNameConfigBuilder
source · #[non_exhaustive]pub struct DomainNameConfigBuilder { /* private fields */ }
Expand description
A builder for DomainNameConfig
.
Implementations§
source§impl DomainNameConfigBuilder
impl DomainNameConfigBuilder
sourcepub fn domain_name(self, input: impl Into<String>) -> Self
pub fn domain_name(self, input: impl Into<String>) -> Self
The domain name.
sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
The domain name.
sourcepub fn get_domain_name(&self) -> &Option<String>
pub fn get_domain_name(&self) -> &Option<String>
The domain name.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the DomainName
configuration.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the DomainName
configuration.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the DomainName
configuration.
sourcepub fn certificate_arn(self, input: impl Into<String>) -> Self
pub fn certificate_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or an Identity and Access Management (IAM) server certificate.
sourcepub fn set_certificate_arn(self, input: Option<String>) -> Self
pub fn set_certificate_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or an Identity and Access Management (IAM) server certificate.
sourcepub fn get_certificate_arn(&self) -> &Option<String>
pub fn get_certificate_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or an Identity and Access Management (IAM) server certificate.
sourcepub fn appsync_domain_name(self, input: impl Into<String>) -> Self
pub fn appsync_domain_name(self, input: impl Into<String>) -> Self
The domain name that AppSync provides.
sourcepub fn set_appsync_domain_name(self, input: Option<String>) -> Self
pub fn set_appsync_domain_name(self, input: Option<String>) -> Self
The domain name that AppSync provides.
sourcepub fn get_appsync_domain_name(&self) -> &Option<String>
pub fn get_appsync_domain_name(&self) -> &Option<String>
The domain name that AppSync provides.
sourcepub fn hosted_zone_id(self, input: impl Into<String>) -> Self
pub fn hosted_zone_id(self, input: impl Into<String>) -> Self
The ID of your Amazon Route 53 hosted zone.
sourcepub fn set_hosted_zone_id(self, input: Option<String>) -> Self
pub fn set_hosted_zone_id(self, input: Option<String>) -> Self
The ID of your Amazon Route 53 hosted zone.
sourcepub fn get_hosted_zone_id(&self) -> &Option<String>
pub fn get_hosted_zone_id(&self) -> &Option<String>
The ID of your Amazon Route 53 hosted zone.
sourcepub fn build(self) -> DomainNameConfig
pub fn build(self) -> DomainNameConfig
Consumes the builder and constructs a DomainNameConfig
.
Trait Implementations§
source§impl Clone for DomainNameConfigBuilder
impl Clone for DomainNameConfigBuilder
source§fn clone(&self) -> DomainNameConfigBuilder
fn clone(&self) -> DomainNameConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DomainNameConfigBuilder
impl Debug for DomainNameConfigBuilder
source§impl Default for DomainNameConfigBuilder
impl Default for DomainNameConfigBuilder
source§fn default() -> DomainNameConfigBuilder
fn default() -> DomainNameConfigBuilder
source§impl PartialEq for DomainNameConfigBuilder
impl PartialEq for DomainNameConfigBuilder
impl StructuralPartialEq for DomainNameConfigBuilder
Auto Trait Implementations§
impl Freeze for DomainNameConfigBuilder
impl RefUnwindSafe for DomainNameConfigBuilder
impl Send for DomainNameConfigBuilder
impl Sync for DomainNameConfigBuilder
impl Unpin for DomainNameConfigBuilder
impl UnwindSafe for DomainNameConfigBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more