Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DkimSigningAttributes

import type { DkimSigningAttributes } from "https://aws-api.deno.dev/v0.3/services/sesv2.ts?docs=full";

An object that contains configuration for Bring Your Own DKIM (BYODKIM), or, for Easy DKIM

interface DkimSigningAttributes {
DomainSigningPrivateKey?: string | null;
DomainSigningSelector?: string | null;
NextSigningKeyLength?: DkimSigningKeyLength | null;
}

§Properties

§
DomainSigningPrivateKey?: string | null
[src]

[Bring Your Own DKIM] A private key that's used to generate a DKIM signature.

The private key must use 1024 or 2048-bit RSA encryption, and must be encoded using base64 encoding.

§
DomainSigningSelector?: string | null
[src]

[Bring Your Own DKIM] A string that's used to identify a public key in the DNS configuration for a domain.

§
NextSigningKeyLength?: DkimSigningKeyLength | null
[src]

[Easy DKIM] The key length of the future DKIM key pair to be generated. This can be changed at most once per day.