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

CloneReceiptRuleSetRequest

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

Represents a request to create a receipt rule set by cloning an existing one. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide.

interface CloneReceiptRuleSetRequest {
OriginalRuleSetName: string;
RuleSetName: string;
}

§Properties

§
OriginalRuleSetName: string
[src]

The name of the rule set to clone.

§
RuleSetName: string
[src]

The name of the rule set to create. 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.