#[non_exhaustive]pub struct DescribeCustomDomainsOutput {
pub dns_target: String,
pub service_arn: String,
pub custom_domains: Vec<CustomDomain>,
pub vpc_dns_targets: Vec<VpcDnsTarget>,
pub next_token: Option<String>,
/* private fields */
}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: StringThe App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this target name.
service_arn: StringThe Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to describe.
custom_domains: 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.
vpc_dns_targets: Vec<VpcDnsTarget>DNS Target records for the custom domains of this Amazon VPC.
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§
source§impl DescribeCustomDomainsOutput
impl DescribeCustomDomainsOutput
sourcepub fn dns_target(&self) -> &str
pub fn dns_target(&self) -> &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) -> &str
pub fn service_arn(&self) -> &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) -> &[CustomDomain]
pub fn custom_domains(&self) -> &[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 vpc_dns_targets(&self) -> &[VpcDnsTarget]
pub fn vpc_dns_targets(&self) -> &[VpcDnsTarget]
DNS Target records for the custom domains of this Amazon VPC.
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.
source§impl DescribeCustomDomainsOutput
impl DescribeCustomDomainsOutput
sourcepub fn builder() -> DescribeCustomDomainsOutputBuilder
pub fn builder() -> DescribeCustomDomainsOutputBuilder
Creates a new builder-style object to manufacture DescribeCustomDomainsOutput.
Trait Implementations§
source§impl Clone for DescribeCustomDomainsOutput
impl Clone for DescribeCustomDomainsOutput
source§fn clone(&self) -> DescribeCustomDomainsOutput
fn clone(&self) -> DescribeCustomDomainsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeCustomDomainsOutput
impl Debug for DescribeCustomDomainsOutput
source§impl PartialEq for DescribeCustomDomainsOutput
impl PartialEq for DescribeCustomDomainsOutput
source§fn eq(&self, other: &DescribeCustomDomainsOutput) -> bool
fn eq(&self, other: &DescribeCustomDomainsOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeCustomDomainsOutput
impl RequestId for DescribeCustomDomainsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for DescribeCustomDomainsOutput
Auto Trait Implementations§
impl Freeze for DescribeCustomDomainsOutput
impl RefUnwindSafe for DescribeCustomDomainsOutput
impl Send for DescribeCustomDomainsOutput
impl Sync for DescribeCustomDomainsOutput
impl Unpin for DescribeCustomDomainsOutput
impl UnwindSafe for DescribeCustomDomainsOutput
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more