paws.customer.engagement (version 0.1.0)

ses_verify_domain_dkim: Returns a set of DKIM tokens for a domain

Description

Returns a set of DKIM tokens for a domain. DKIM tokens are character strings that represent your domain's identity. Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign email originating from that domain.

Usage

ses_verify_domain_dkim(Domain)

Arguments

Domain

[required] The name of the domain to be verified for Easy DKIM signing.

Request syntax

svc$verify_domain_dkim(
  Domain = "string"
)

Details

You can execute this operation no more than once per second.

To enable or disable Easy DKIM signing for a domain, use the SetIdentityDkimEnabled operation.

For more information about creating DNS records using DKIM tokens, go to the Amazon SES Developer Guide.

Examples

Run this code
# NOT RUN {
# The following example generates DKIM tokens for a domain that has been
# verified with Amazon SES:
# }
# NOT RUN {
svc$verify_domain_dkim(
  Domain = "example.com"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab