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

TemplateVersionResponse

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

Provides information about a specific version of a message template.

interface TemplateVersionResponse {
CreationDate: string;
DefaultSubstitutions?: string | null;
LastModifiedDate: string;
TemplateDescription?: string | null;
TemplateName: string;
TemplateType: string;
Version?: string | null;
}

§Properties

§
CreationDate: string
[src]

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

§
DefaultSubstitutions?: string | null
[src]

A JSON object that specifies the default values that are used for message variables in the version of 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.

§
LastModifiedDate: string
[src]

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

§
TemplateDescription?: string | null
[src]

The custom description of the version of the message template.

§
TemplateName: string
[src]

The name of the message template.

§
TemplateType: string
[src]

The type of channel that the message template is designed for. Possible values are: EMAIL, PUSH, SMS, and VOICE.

§
Version?: string | null
[src]

The unique identifier for the version of the message template. This value is an integer that Amazon Pinpoint automatically increments and assigns to each new version of a template.