aws_sdk_ses/client/
verify_domain_dkim.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`VerifyDomainDkim`](crate::operation::verify_domain_dkim::builders::VerifyDomainDkimFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`domain(impl Into<String>)`](crate::operation::verify_domain_dkim::builders::VerifyDomainDkimFluentBuilder::domain) / [`set_domain(Option<String>)`](crate::operation::verify_domain_dkim::builders::VerifyDomainDkimFluentBuilder::set_domain):<br>required: **true**<br><p>The name of the domain to be verified for Easy DKIM signing.</p><br>
7    /// - On success, responds with [`VerifyDomainDkimOutput`](crate::operation::verify_domain_dkim::VerifyDomainDkimOutput) with field(s):
8    ///   - [`dkim_tokens(Vec::<String>)`](crate::operation::verify_domain_dkim::VerifyDomainDkimOutput::dkim_tokens): <p>A set of character strings that represent the domain's identity. If the identity is an email address, the tokens represent the domain of that address.</p> <p>Using these tokens, you need to create DNS CNAME records that point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services eventually detects that you've updated your DNS records. This detection process might take up to 72 hours. After successful detection, Amazon SES is able to DKIM-sign email originating from that domain. (This only applies to domain identities, not email address identities.)</p> <p>For more information about creating DNS records using DKIM tokens, see the <a href="https://docs.aws.amazon.com/ses/latest/dg/send-email-authentication-dkim-easy.html">Amazon SES Developer Guide</a>.</p>
9    /// - On failure, responds with [`SdkError<VerifyDomainDkimError>`](crate::operation::verify_domain_dkim::VerifyDomainDkimError)
10    pub fn verify_domain_dkim(&self) -> crate::operation::verify_domain_dkim::builders::VerifyDomainDkimFluentBuilder {
11        crate::operation::verify_domain_dkim::builders::VerifyDomainDkimFluentBuilder::new(self.handle.clone())
12    }
13}