Class: Aws::SES::Types::IdentityDkimAttributes

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ses/types.rb

Overview

Represents the DKIM attributes of a verified email address or a domain.

Instance Attribute Summary collapse

Instance Attribute Details

#dkim_enabledBoolean

True if DKIM signing is enabled for email sent from the identity; false otherwise. The default value is true.

Returns:

  • (Boolean)


2152
2153
2154
2155
2156
2157
# File 'lib/aws-sdk-ses/types.rb', line 2152

class IdentityDkimAttributes < Struct.new(
  :dkim_enabled,
  :dkim_verification_status,
  :dkim_tokens)
  include Aws::Structure
end

#dkim_tokensArray<String>

A set of character strings that represent the 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. (This only applies to domain identities, not email address identities.)

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>)


2152
2153
2154
2155
2156
2157
# File 'lib/aws-sdk-ses/types.rb', line 2152

class IdentityDkimAttributes < Struct.new(
  :dkim_enabled,
  :dkim_verification_status,
  :dkim_tokens)
  include Aws::Structure
end

#dkim_verification_statusString

Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name’s DNS. (This only applies to domain identities, not email address identities.)

Returns:

  • (String)


2152
2153
2154
2155
2156
2157
# File 'lib/aws-sdk-ses/types.rb', line 2152

class IdentityDkimAttributes < Struct.new(
  :dkim_enabled,
  :dkim_verification_status,
  :dkim_tokens)
  include Aws::Structure
end