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

TagsModel

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

Specifies the tags (keys and values) for an application, campaign, message template, or segment.

interface TagsModel {
tags: {
[key: string]: string | null | undefined;
}
;
}

§Properties

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

A string-to-string map of key-value pairs that defines the tags for an application, campaign, message template, or segment. Each of these resources can have a maximum of 50 tags.

Each tag consists of a required tag key and an associated tag value. The maximum length of a tag key is 128 characters. The maximum length of a tag value is 256 characters.