Struct aws_sdk_appsync::model::DomainNameConfig
source · #[non_exhaustive]pub struct DomainNameConfig { /* private fields */ }
Expand description
Describes a configuration for a custom domain.
Implementations§
source§impl DomainNameConfig
impl DomainNameConfig
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The domain name.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the DomainName
configuration.
sourcepub fn certificate_arn(&self) -> Option<&str>
pub fn certificate_arn(&self) -> Option<&str>
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) -> Option<&str>
pub fn appsync_domain_name(&self) -> Option<&str>
The domain name that AppSync provides.
sourcepub fn hosted_zone_id(&self) -> Option<&str>
pub fn hosted_zone_id(&self) -> Option<&str>
The ID of your Amazon Route 53 hosted zone.
source§impl DomainNameConfig
impl DomainNameConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DomainNameConfig
.
Trait Implementations§
source§impl Clone for DomainNameConfig
impl Clone for DomainNameConfig
source§fn clone(&self) -> DomainNameConfig
fn clone(&self) -> DomainNameConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DomainNameConfig
impl Debug for DomainNameConfig
source§impl PartialEq<DomainNameConfig> for DomainNameConfig
impl PartialEq<DomainNameConfig> for DomainNameConfig
source§fn eq(&self, other: &DomainNameConfig) -> bool
fn eq(&self, other: &DomainNameConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.