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

MessageTag

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

Contains the name and value of a tag that you apply to an email. You can use message tags when you publish email sending events.

interface MessageTag {
Name: string;
Value: string;
}

§Properties

§
Name: string
[src]

The name of the message tag. The message tag name has to meet the following criteria:

  • It can only contain ASCII letters (a–z, A–Z), numbers (0–9), underscores (_), or dashes (-).
  • It can contain no more than 256 characters.
§
Value: string
[src]

The value of the message tag. The message tag value has to meet the following criteria:

  • It can only contain ASCII letters (a–z, A–Z), numbers (0–9), underscores (_), or dashes (-).
  • It can contain no more than 256 characters.