Struct aws_sdk_apprunner::operation::describe_custom_domains::builders::DescribeCustomDomainsOutputBuilder
source · #[non_exhaustive]pub struct DescribeCustomDomainsOutputBuilder { /* private fields */ }Expand description
A builder for DescribeCustomDomainsOutput.
Implementations§
source§impl DescribeCustomDomainsOutputBuilder
impl DescribeCustomDomainsOutputBuilder
sourcepub fn dns_target(self, input: impl Into<String>) -> Self
pub fn dns_target(self, input: impl Into<String>) -> Self
The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this target name.
This field is required.sourcepub fn set_dns_target(self, input: Option<String>) -> Self
pub fn set_dns_target(self, input: Option<String>) -> Self
The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this target name.
sourcepub fn get_dns_target(&self) -> &Option<String>
pub fn get_dns_target(&self) -> &Option<String>
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, input: impl Into<String>) -> Self
pub fn service_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to describe.
This field is required.sourcepub fn set_service_arn(self, input: Option<String>) -> Self
pub fn set_service_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to describe.
sourcepub fn get_service_arn(&self) -> &Option<String>
pub fn get_service_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the App Runner service whose associated custom domain names you want to describe.
sourcepub fn custom_domains(self, input: CustomDomain) -> Self
pub fn custom_domains(self, input: CustomDomain) -> Self
Appends an item to custom_domains.
To override the contents of this collection use set_custom_domains.
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 set_custom_domains(self, input: Option<Vec<CustomDomain>>) -> Self
pub fn set_custom_domains(self, input: Option<Vec<CustomDomain>>) -> Self
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 get_custom_domains(&self) -> &Option<Vec<CustomDomain>>
pub fn get_custom_domains(&self) -> &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.
sourcepub fn vpc_dns_targets(self, input: VpcDnsTarget) -> Self
pub fn vpc_dns_targets(self, input: VpcDnsTarget) -> Self
Appends an item to vpc_dns_targets.
To override the contents of this collection use set_vpc_dns_targets.
DNS Target records for the custom domains of this Amazon VPC.
sourcepub fn set_vpc_dns_targets(self, input: Option<Vec<VpcDnsTarget>>) -> Self
pub fn set_vpc_dns_targets(self, input: Option<Vec<VpcDnsTarget>>) -> Self
DNS Target records for the custom domains of this Amazon VPC.
sourcepub fn get_vpc_dns_targets(&self) -> &Option<Vec<VpcDnsTarget>>
pub fn get_vpc_dns_targets(&self) -> &Option<Vec<VpcDnsTarget>>
DNS Target records for the custom domains of this Amazon VPC.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &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.
sourcepub fn build(self) -> Result<DescribeCustomDomainsOutput, BuildError>
pub fn build(self) -> Result<DescribeCustomDomainsOutput, BuildError>
Consumes the builder and constructs a DescribeCustomDomainsOutput.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for DescribeCustomDomainsOutputBuilder
impl Clone for DescribeCustomDomainsOutputBuilder
source§fn clone(&self) -> DescribeCustomDomainsOutputBuilder
fn clone(&self) -> DescribeCustomDomainsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeCustomDomainsOutputBuilder
impl Default for DescribeCustomDomainsOutputBuilder
source§fn default() -> DescribeCustomDomainsOutputBuilder
fn default() -> DescribeCustomDomainsOutputBuilder
source§impl PartialEq for DescribeCustomDomainsOutputBuilder
impl PartialEq for DescribeCustomDomainsOutputBuilder
source§fn eq(&self, other: &DescribeCustomDomainsOutputBuilder) -> bool
fn eq(&self, other: &DescribeCustomDomainsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeCustomDomainsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeCustomDomainsOutputBuilder
impl RefUnwindSafe for DescribeCustomDomainsOutputBuilder
impl Send for DescribeCustomDomainsOutputBuilder
impl Sync for DescribeCustomDomainsOutputBuilder
impl Unpin for DescribeCustomDomainsOutputBuilder
impl UnwindSafe for DescribeCustomDomainsOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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