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

GetEmailIdentityResponse

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

Details about an email identity.

interface GetEmailIdentityResponse {
ConfigurationSetName?: string | null;
DkimAttributes?: DkimAttributes | null;
FeedbackForwardingStatus?: boolean | null;
IdentityType?: IdentityType | null;
MailFromAttributes?: MailFromAttributes | null;
Policies?: {
[key: string]: string | null | undefined;
}
| null;
Tags?: Tag[] | null;
VerificationStatus?: VerificationStatus | null;
VerifiedForSendingStatus?: boolean | null;
}

§Properties

§
ConfigurationSetName?: string | null
[src]

The configuration set used by default when sending from this identity.

§
DkimAttributes?: DkimAttributes | null
[src]

An object that contains information about the DKIM attributes for the identity.

§
FeedbackForwardingStatus?: boolean | null
[src]

The feedback forwarding configuration for the identity.

If the value is true, you receive email notifications when bounce or complaint events occur. These notifications are sent to the address that you specified in the Return-Path header of the original email.

You're required to have a method of tracking bounces and complaints. If you haven't set up another mechanism for receiving bounce or complaint notifications (for example, by setting up an event destination), you receive an email notification when these events occur (even if this setting is disabled).

§
IdentityType?: IdentityType | null
[src]

The email identity type. Note: the MANAGED_DOMAIN identity type is not supported.

§
MailFromAttributes?: MailFromAttributes | null
[src]

An object that contains information about the Mail-From attributes for the email identity.

§
Policies?: {
[key: string]: string | null | undefined;
}
| null
[src]

A map of policy names to policies.

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

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

§
VerificationStatus?: VerificationStatus | null
[src]

The verification status of the identity. The status can be one of the following:

  • PENDING – The verification process was initiated, but Amazon SES hasn't yet been able to verify the identity.
  • SUCCESS – The verification process completed successfully.
  • FAILED – The verification process failed.
  • TEMPORARY_FAILURE – A temporary issue is preventing Amazon SES from determining the verification status of the identity.
  • NOT_STARTED – The verification process hasn't been initiated for the identity.
§
VerifiedForSendingStatus?: boolean | null
[src]

Specifies whether or not the identity is verified. You can only send email from verified email addresses or domains. For more information about verifying identities, see the Amazon Pinpoint User Guide.