Class: Aws::SES::Types::VerifyDomainDkimResponse

Inherits:
Struct
  • Object
show all
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.

Instance Attribute Summary collapse

Instance Attribute Details

#dkim_tokensArray<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 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 emails originating from that domain.

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

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html

Returns:

  • (Array<String>)


5663
5664
5665
5666
# File 'lib/aws-sdk-ses/types.rb', line 5663

class VerifyDomainDkimResponse < Struct.new(
  :dkim_tokens)
  include Aws::Structure
end