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

CreateTaskInput

import type { CreateTaskInput } from "https://aws-api.deno.dev/v0.4/services/snowdevicemanagement.ts?docs=full";
interface CreateTaskInput {
clientToken?: string | null;
command: Command;
description?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
targets: string[];
}

§Properties

§
clientToken?: string | null
[src]

A token ensuring that the action is called only once with the specified details.

§
command: Command
[src]

The task to be performed. Only one task is executed on a device at a time.

§
description?: string | null
[src]

A description of the task and its targets.

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

Optional metadata that you assign to a resource. You can use tags to categorize a resource in different ways, such as by purpose, owner, or environment.

§
targets: string[]
[src]

A list of managed device IDs.