Struct aws_sdk_acm::client::fluent_builders::ResendValidationEmail
source · pub struct ResendValidationEmail { /* private fields */ }
Expand description
Fluent builder constructing a request to ResendValidationEmail
.
Resends the email that requests domain ownership validation. The domain owner or an authorized representative must approve the ACM certificate before it can be issued. The certificate can be approved by clicking a link in the mail to navigate to the Amazon certificate approval website and then clicking I Approve. However, the validation email can be blocked by spam filters. Therefore, if you do not receive the original mail, you can request that the mail be resent within 72 hours of requesting the ACM certificate. If more than 72 hours have elapsed since your original request or since your last attempt to resend validation mail, you must request a new certificate. For more information about setting up your contact email addresses, see Configure Email for your Domain.
Implementations§
source§impl ResendValidationEmail
impl ResendValidationEmail
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ResendValidationEmail, AwsResponseRetryClassifier>, SdkError<ResendValidationEmailError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ResendValidationEmail, AwsResponseRetryClassifier>, SdkError<ResendValidationEmailError>>
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<ResendValidationEmailOutput, SdkError<ResendValidationEmailError>>
pub async fn send(
self
) -> Result<ResendValidationEmailOutput, SdkError<ResendValidationEmailError>>
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 certificate_arn(self, input: impl Into<String>) -> Self
pub fn certificate_arn(self, input: impl Into<String>) -> Self
String that contains the ARN of the requested certificate. The certificate ARN is generated and returned by the RequestCertificate
action as soon as the request is made. By default, using this parameter causes email to be sent to all top-level domains you specified in the certificate request. The ARN must be of the form:
arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012
sourcepub fn set_certificate_arn(self, input: Option<String>) -> Self
pub fn set_certificate_arn(self, input: Option<String>) -> Self
String that contains the ARN of the requested certificate. The certificate ARN is generated and returned by the RequestCertificate
action as soon as the request is made. By default, using this parameter causes email to be sent to all top-level domains you specified in the certificate request. The ARN must be of the form:
arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012
sourcepub fn domain(self, input: impl Into<String>) -> Self
pub fn domain(self, input: impl Into<String>) -> Self
The fully qualified domain name (FQDN) of the certificate that needs to be validated.
sourcepub fn set_domain(self, input: Option<String>) -> Self
pub fn set_domain(self, input: Option<String>) -> Self
The fully qualified domain name (FQDN) of the certificate that needs to be validated.
sourcepub fn validation_domain(self, input: impl Into<String>) -> Self
pub fn validation_domain(self, input: impl Into<String>) -> Self
The base validation domain that will act as the suffix of the email addresses that are used to send the emails. This must be the same as the Domain
value or a superdomain of the Domain
value. For example, if you requested a certificate for site.subdomain.example.com
and specify a ValidationDomain of subdomain.example.com
, ACM sends email to the domain registrant, technical contact, and administrative contact in WHOIS and the following five addresses:
-
admin@subdomain.example.com
-
administrator@subdomain.example.com
-
hostmaster@subdomain.example.com
-
postmaster@subdomain.example.com
-
webmaster@subdomain.example.com
sourcepub fn set_validation_domain(self, input: Option<String>) -> Self
pub fn set_validation_domain(self, input: Option<String>) -> Self
The base validation domain that will act as the suffix of the email addresses that are used to send the emails. This must be the same as the Domain
value or a superdomain of the Domain
value. For example, if you requested a certificate for site.subdomain.example.com
and specify a ValidationDomain of subdomain.example.com
, ACM sends email to the domain registrant, technical contact, and administrative contact in WHOIS and the following five addresses:
-
admin@subdomain.example.com
-
administrator@subdomain.example.com
-
hostmaster@subdomain.example.com
-
postmaster@subdomain.example.com
-
webmaster@subdomain.example.com
Trait Implementations§
source§impl Clone for ResendValidationEmail
impl Clone for ResendValidationEmail
source§fn clone(&self) -> ResendValidationEmail
fn clone(&self) -> ResendValidationEmail
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more