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

CreateProjectRequest

import type { CreateProjectRequest } from "https://aws-api.deno.dev/v0.4/services/iot1clickprojects.ts?docs=full";
interface CreateProjectRequest {
description?: string | null;
placementTemplate?: PlacementTemplate | null;
projectName: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
description?: string | null
[src]

An optional description for the project.

§
placementTemplate?: PlacementTemplate | null
[src]

The schema defining the placement to be created. A placement template defines placement default attributes and device templates. You cannot add or remove device templates after the project has been created. However, you can update callbackOverrides for the device templates using the UpdateProject API.

§
projectName: string
[src]

The name of the project to create.

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

Optional tags (metadata key/value pairs) to be associated with the project. For example, { {"key1": "value1", "key2": "value2"} }. For more information, see AWS Tagging Strategies.