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

CreateEmailIdentityRequest

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

A request to begin the verification process for an email identity (an email address or domain).

interface CreateEmailIdentityRequest {
ConfigurationSetName?: string | null;
DkimSigningAttributes?: DkimSigningAttributes | null;
EmailIdentity: string;
Tags?: Tag[] | null;
}

§Properties

§
ConfigurationSetName?: string | null
[src]

The configuration set to use by default when sending from this identity. Note that any configuration set defined in the email sending request takes precedence.

§
DkimSigningAttributes?: DkimSigningAttributes | null
[src]

If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM.

You can only specify this object if the email identity is a domain, as opposed to an address.

§
EmailIdentity: string
[src]

The email address or domain to verify.

§
Tags?: Tag[] | null
[src]

An array of objects that define the tags (keys and values) to associate with the email identity.