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

ReceiptFilter

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

A receipt IP address filter enables you to specify whether to accept or reject mail originating from an IP address or range of IP addresses.

For information about setting up IP address filters, see the Amazon SES Developer Guide.

interface ReceiptFilter {
IpFilter: ReceiptIpFilter;
Name: string;
}

§Properties

§

A structure that provides the IP addresses to block or allow, and whether to block or allow incoming mail from them.

§
Name: string
[src]

The name of the IP address filter. The name must:

  • This value can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
  • Start and end with a letter or number.
  • Contain less than 64 characters.