#[non_exhaustive]pub struct AssociateCustomDomainOutput {
pub dns_target: String,
pub service_arn: String,
pub custom_domain: Option<CustomDomain>,
pub vpc_dns_targets: Vec<VpcDnsTarget>,
/* private fields */
}
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.dns_target: String
The App Runner subdomain of the App Runner service. The custom domain name is mapped to this target name.
service_arn: String
The Amazon Resource Name (ARN) of the App Runner service with which a custom domain name is associated.
custom_domain: Option<CustomDomain>
A description of the domain name that's being associated.
vpc_dns_targets: Vec<VpcDnsTarget>
DNS Target records for the custom domains of this Amazon VPC.
Implementations§
source§impl AssociateCustomDomainOutput
impl AssociateCustomDomainOutput
sourcepub fn dns_target(&self) -> &str
pub fn dns_target(&self) -> &str
The App Runner subdomain of the App Runner service. The custom domain name is mapped to this target name.
sourcepub fn service_arn(&self) -> &str
pub fn service_arn(&self) -> &str
The Amazon Resource Name (ARN) of the App Runner service with which a custom domain name is associated.
sourcepub fn custom_domain(&self) -> Option<&CustomDomain>
pub fn custom_domain(&self) -> Option<&CustomDomain>
A description of the domain name that's being associated.
sourcepub fn vpc_dns_targets(&self) -> &[VpcDnsTarget]
pub fn vpc_dns_targets(&self) -> &[VpcDnsTarget]
DNS Target records for the custom domains of this Amazon VPC.
source§impl AssociateCustomDomainOutput
impl AssociateCustomDomainOutput
sourcepub fn builder() -> AssociateCustomDomainOutputBuilder
pub fn builder() -> AssociateCustomDomainOutputBuilder
Creates a new builder-style object to manufacture AssociateCustomDomainOutput
.
Trait Implementations§
source§impl Clone for AssociateCustomDomainOutput
impl Clone for AssociateCustomDomainOutput
source§fn clone(&self) -> AssociateCustomDomainOutput
fn clone(&self) -> AssociateCustomDomainOutput
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 AssociateCustomDomainOutput
impl Debug for AssociateCustomDomainOutput
source§impl PartialEq for AssociateCustomDomainOutput
impl PartialEq for AssociateCustomDomainOutput
source§fn eq(&self, other: &AssociateCustomDomainOutput) -> bool
fn eq(&self, other: &AssociateCustomDomainOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for AssociateCustomDomainOutput
impl RequestId for AssociateCustomDomainOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for AssociateCustomDomainOutput
Auto Trait Implementations§
impl RefUnwindSafe for AssociateCustomDomainOutput
impl Send for AssociateCustomDomainOutput
impl Sync for AssociateCustomDomainOutput
impl Unpin for AssociateCustomDomainOutput
impl UnwindSafe for AssociateCustomDomainOutput
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.