#[non_exhaustive]pub struct DescribeCustomDomainsOutput {
pub dns_target: Option<String>,
pub service_arn: Option<String>,
pub custom_domains: Option<Vec<CustomDomain>>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.dns_target: Option<String>
The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this target name.
service_arn: Option<String>
The Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to describe.
custom_domains: Option<Vec<CustomDomain>>
A list of descriptions of custom domain names that are associated with the service. In a paginated request, the request returns up to MaxResults
records per call.
next_token: Option<String>
The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.
Implementations
sourceimpl DescribeCustomDomainsOutput
impl DescribeCustomDomainsOutput
sourcepub fn dns_target(&self) -> Option<&str>
pub fn dns_target(&self) -> Option<&str>
The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this target name.
sourcepub fn service_arn(&self) -> Option<&str>
pub fn service_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to describe.
sourcepub fn custom_domains(&self) -> Option<&[CustomDomain]>
pub fn custom_domains(&self) -> Option<&[CustomDomain]>
A list of descriptions of custom domain names that are associated with the service. In a paginated request, the request returns up to MaxResults
records per call.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.
sourceimpl DescribeCustomDomainsOutput
impl DescribeCustomDomainsOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeCustomDomainsOutput
.
Trait Implementations
sourceimpl Clone for DescribeCustomDomainsOutput
impl Clone for DescribeCustomDomainsOutput
sourcefn clone(&self) -> DescribeCustomDomainsOutput
fn clone(&self) -> DescribeCustomDomainsOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DescribeCustomDomainsOutput
impl Debug for DescribeCustomDomainsOutput
sourceimpl PartialEq<DescribeCustomDomainsOutput> for DescribeCustomDomainsOutput
impl PartialEq<DescribeCustomDomainsOutput> for DescribeCustomDomainsOutput
sourcefn eq(&self, other: &DescribeCustomDomainsOutput) -> bool
fn eq(&self, other: &DescribeCustomDomainsOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeCustomDomainsOutput) -> bool
fn ne(&self, other: &DescribeCustomDomainsOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeCustomDomainsOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeCustomDomainsOutput
impl Send for DescribeCustomDomainsOutput
impl Sync for DescribeCustomDomainsOutput
impl Unpin for DescribeCustomDomainsOutput
impl UnwindSafe for DescribeCustomDomainsOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more