IdentityDkimAttributes

public struct IdentityDkimAttributes : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Is true if DKIM signing is enabled for email sent from the identity. It’s false otherwise. The default value is true.

    Declaration

    Swift

    public let dkimEnabled: Bool
  • 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.

    Declaration

    Swift

    public let dkimTokens: [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.)

    Declaration

    Swift

    public let dkimVerificationStatus: VerificationStatus
  • Undocumented

    Declaration

    Swift

    public init(dkimEnabled: Bool, dkimTokens: [String]? = nil, dkimVerificationStatus: VerificationStatus)