pub struct DisassociateCustomDomain { /* private fields */ }
Expand description
Fluent builder constructing a request to DisassociateCustomDomain
.
Disassociate a custom domain name from an App Runner service.
Certificates tracking domain validity are associated with a custom domain and are stored in AWS Certificate Manager (ACM). These certificates aren't deleted as part of this action. App Runner delays certificate deletion for 30 days after a domain is disassociated from your service.
Implementations§
source§impl DisassociateCustomDomain
impl DisassociateCustomDomain
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DisassociateCustomDomain, AwsResponseRetryClassifier>, SdkError<DisassociateCustomDomainError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DisassociateCustomDomain, AwsResponseRetryClassifier>, SdkError<DisassociateCustomDomainError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<DisassociateCustomDomainOutput, SdkError<DisassociateCustomDomainError>>
pub async fn send(
self
) -> Result<DisassociateCustomDomainOutput, SdkError<DisassociateCustomDomainError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
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 that you want to disassociate a custom domain name from.
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 that you want to disassociate a custom domain name from.
sourcepub fn domain_name(self, input: impl Into<String>) -> Self
pub fn domain_name(self, input: impl Into<String>) -> Self
The domain name that you want to disassociate from the App Runner service.
sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
The domain name that you want to disassociate from the App Runner service.
Trait Implementations§
source§impl Clone for DisassociateCustomDomain
impl Clone for DisassociateCustomDomain
source§fn clone(&self) -> DisassociateCustomDomain
fn clone(&self) -> DisassociateCustomDomain
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more