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

PlacementTemplate

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

An object defining the template for a placement.

interface PlacementTemplate {
defaultAttributes?: {
[key: string]: string | null | undefined;
}
| null;
deviceTemplates?: {
[key: string]: DeviceTemplate | null | undefined;
}
| null;
}

§Properties

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

The default attributes (key/value pairs) to be applied to all placements using this template.

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

An object specifying the "DeviceTemplate" for all placements using this ("PlacementTemplate") template.