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

CreateTemplateRequest

import type { CreateTemplateRequest } from "https://aws-api.deno.dev/v0.4/services/connectcases.ts?docs=full";
interface CreateTemplateRequest {
description?: string | null;
domainId: string;
layoutConfiguration?: LayoutConfiguration | null;
name: string;
requiredFields?: RequiredField[] | null;
status?: TemplateStatus | null;
}

§Properties

§
description?: string | null
[src]

A brief description of the template.

§
domainId: string
[src]

The unique identifier of the Cases domain.

§
layoutConfiguration?: LayoutConfiguration | null
[src]

Configuration of layouts associated to the template.

§
name: string
[src]

A name for the template. It must be unique per domain.

§
requiredFields?: RequiredField[] | null
[src]

A list of fields that must contain a value for a case to be successfully created with this template.

§
status?: TemplateStatus | null
[src]

The status of the template.