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

EmailTemplateResponse

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

Provides information about the content and settings for a message template that can be used in messages that are sent through the email channel.

interface EmailTemplateResponse {
Arn?: string | null;
CreationDate: string;
DefaultSubstitutions?: string | null;
HtmlPart?: string | null;
LastModifiedDate: string;
RecommenderId?: string | null;
Subject?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
TemplateDescription?: string | null;
TemplateName: string;
TemplateType: TemplateType;
TextPart?: string | null;
Version?: string | null;
}

§Properties

§
Arn?: string | null
[src]

The Amazon Resource Name (ARN) of the message template.

§
CreationDate: string
[src]

The date, in ISO 8601 format, when the message template was created.

§
DefaultSubstitutions?: string | null
[src]

The JSON object that specifies the default values that are used for message variables in the message template. This object is a set of key-value pairs. Each key defines a message variable in the template. The corresponding value defines the default value for that variable.

§
HtmlPart?: string | null
[src]

The message body, in HTML format, that's used in email messages that are based on the message template.

§
LastModifiedDate: string
[src]

The date, in ISO 8601 format, when the message template was last modified.

§
RecommenderId?: string | null
[src]

The unique identifier for the recommender model that's used by the message template.

§
Subject?: string | null
[src]

The subject line, or title, that's used in email messages that are based on the message template.

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

A string-to-string map of key-value pairs that identifies the tags that are associated with the message template. Each tag consists of a required tag key and an associated tag value.

§
TemplateDescription?: string | null
[src]

The custom description of the message template.

§
TemplateName: string
[src]

The name of the message template.

§
TemplateType: TemplateType
[src]

The type of channel that the message template is designed for. For an email template, this value is EMAIL.

§
TextPart?: string | null
[src]

The message body, in plain text format, that's used in email messages that are based on the message template.

§
Version?: string | null
[src]

The unique identifier, as an integer, for the active version of the message template, or the version of the template that you specified by using the version parameter in your request.