Class: Aws::SES::Types::IdentityDkimAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::IdentityDkimAttributes
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Represents the DKIM attributes of a verified email address or a domain.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dkim_enabled ⇒ Boolean
Is true if DKIM signing is enabled for email sent from the identity.
-
#dkim_tokens ⇒ Array<String>
A set of character strings that represent the domain’s identity.
-
#dkim_verification_status ⇒ String
Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name’s DNS.
Instance Attribute Details
#dkim_enabled ⇒ Boolean
Is true if DKIM signing is enabled for email sent from the identity. It’s false otherwise. The default value is true.
1998 1999 2000 2001 2002 2003 2004 |
# File 'lib/aws-sdk-ses/types.rb', line 1998 class IdentityDkimAttributes < Struct.new( :dkim_enabled, :dkim_verification_status, :dkim_tokens) SENSITIVE = [] include Aws::Structure end |
#dkim_tokens ⇒ Array<String>
A set of character strings that represent the domain’s identity. 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
1998 1999 2000 2001 2002 2003 2004 |
# File 'lib/aws-sdk-ses/types.rb', line 1998 class IdentityDkimAttributes < Struct.new( :dkim_enabled, :dkim_verification_status, :dkim_tokens) SENSITIVE = [] include Aws::Structure end |
#dkim_verification_status ⇒ String
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.)
1998 1999 2000 2001 2002 2003 2004 |
# File 'lib/aws-sdk-ses/types.rb', line 1998 class IdentityDkimAttributes < Struct.new( :dkim_enabled, :dkim_verification_status, :dkim_tokens) SENSITIVE = [] include Aws::Structure end |