Class: Aws::SES::Types::VerifyDomainDkimResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::VerifyDomainDkimResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Returns CNAME records that you must publish to the DNS server of your domain to set up Easy DKIM with Amazon SES.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dkim_tokens ⇒ Array<String>
A set of character strings that represent the domain’s identity.
Instance Attribute Details
#dkim_tokens ⇒ Array<String>
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.
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.)
For more information about creating DNS records using DKIM tokens, see the [Amazon SES Developer Guide].
[1]: docs.aws.amazon.com/ses/latest/dg/send-email-authentication-dkim-easy.html
5273 5274 5275 5276 5277 |
# File 'lib/aws-sdk-ses/types.rb', line 5273 class VerifyDomainDkimResponse < Struct.new( :dkim_tokens) SENSITIVE = [] include Aws::Structure end |