#[non_exhaustive]pub struct DomainNameConfiguration { /* private fields */ }
Expand description
The domain name configuration.
Implementations§
source§impl DomainNameConfiguration
impl DomainNameConfiguration
sourcepub fn api_gateway_domain_name(&self) -> Option<&str>
pub fn api_gateway_domain_name(&self) -> Option<&str>
A domain name for the API.
sourcepub fn certificate_arn(&self) -> Option<&str>
pub fn certificate_arn(&self) -> Option<&str>
An AWS-managed certificate that will be used by the edge-optimized endpoint for this domain name. AWS Certificate Manager is the only supported source.
sourcepub fn certificate_name(&self) -> Option<&str>
pub fn certificate_name(&self) -> Option<&str>
The user-friendly name of the certificate that will be used by the edge-optimized endpoint for this domain name.
sourcepub fn certificate_upload_date(&self) -> Option<&DateTime>
pub fn certificate_upload_date(&self) -> Option<&DateTime>
The timestamp when the certificate that was used by edge-optimized endpoint for this domain name was uploaded.
sourcepub fn domain_name_status(&self) -> Option<&DomainNameStatus>
pub fn domain_name_status(&self) -> Option<&DomainNameStatus>
The status of the domain name migration. The valid values are AVAILABLE, UPDATING, PENDING_CERTIFICATE_REIMPORT, and PENDING_OWNERSHIP_VERIFICATION. If the status is UPDATING, the domain cannot be modified further until the existing operation is complete. If it is AVAILABLE, the domain can be updated.
sourcepub fn domain_name_status_message(&self) -> Option<&str>
pub fn domain_name_status_message(&self) -> Option<&str>
An optional text message containing detailed information about status of the domain name migration.
sourcepub fn endpoint_type(&self) -> Option<&EndpointType>
pub fn endpoint_type(&self) -> Option<&EndpointType>
The endpoint type.
sourcepub fn hosted_zone_id(&self) -> Option<&str>
pub fn hosted_zone_id(&self) -> Option<&str>
The Amazon Route 53 Hosted Zone ID of the endpoint.
sourcepub fn security_policy(&self) -> Option<&SecurityPolicy>
pub fn security_policy(&self) -> Option<&SecurityPolicy>
The Transport Layer Security (TLS) version of the security policy for this domain name. The valid values are TLS_1_0 and TLS_1_2.
sourcepub fn ownership_verification_certificate_arn(&self) -> Option<&str>
pub fn ownership_verification_certificate_arn(&self) -> Option<&str>
The ARN of the public certificate issued by ACM to validate ownership of your custom domain. Only required when configuring mutual TLS and using an ACM imported or private CA certificate ARN as the regionalCertificateArn
source§impl DomainNameConfiguration
impl DomainNameConfiguration
sourcepub fn builder() -> DomainNameConfigurationBuilder
pub fn builder() -> DomainNameConfigurationBuilder
Creates a new builder-style object to manufacture DomainNameConfiguration
.
Trait Implementations§
source§impl Clone for DomainNameConfiguration
impl Clone for DomainNameConfiguration
source§fn clone(&self) -> DomainNameConfiguration
fn clone(&self) -> DomainNameConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DomainNameConfiguration
impl Debug for DomainNameConfiguration
source§impl PartialEq<DomainNameConfiguration> for DomainNameConfiguration
impl PartialEq<DomainNameConfiguration> for DomainNameConfiguration
source§fn eq(&self, other: &DomainNameConfiguration) -> bool
fn eq(&self, other: &DomainNameConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.