#[non_exhaustive]pub struct CustomDomainConfigType {
pub certificate_arn: String,
}Expand description
The configuration for a custom domain that hosts the sign-up and sign-in webpages for your application.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.certificate_arn: StringThe Amazon Resource Name (ARN) of an Certificate Manager SSL certificate. You use this certificate for the subdomain of your custom domain.
Implementations§
source§impl CustomDomainConfigType
impl CustomDomainConfigType
sourcepub fn certificate_arn(&self) -> &str
pub fn certificate_arn(&self) -> &str
The Amazon Resource Name (ARN) of an Certificate Manager SSL certificate. You use this certificate for the subdomain of your custom domain.
source§impl CustomDomainConfigType
impl CustomDomainConfigType
sourcepub fn builder() -> CustomDomainConfigTypeBuilder
pub fn builder() -> CustomDomainConfigTypeBuilder
Creates a new builder-style object to manufacture CustomDomainConfigType.
Trait Implementations§
source§impl Clone for CustomDomainConfigType
impl Clone for CustomDomainConfigType
source§fn clone(&self) -> CustomDomainConfigType
fn clone(&self) -> CustomDomainConfigType
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 CustomDomainConfigType
impl Debug for CustomDomainConfigType
source§impl PartialEq for CustomDomainConfigType
impl PartialEq for CustomDomainConfigType
source§fn eq(&self, other: &CustomDomainConfigType) -> bool
fn eq(&self, other: &CustomDomainConfigType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CustomDomainConfigType
Auto Trait Implementations§
impl RefUnwindSafe for CustomDomainConfigType
impl Send for CustomDomainConfigType
impl Sync for CustomDomainConfigType
impl Unpin for CustomDomainConfigType
impl UnwindSafe for CustomDomainConfigType
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.