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

DescribeTaskOutput

import type { DescribeTaskOutput } from "https://aws-api.deno.dev/v0.4/services/snowdevicemanagement.ts?docs=full";
interface DescribeTaskOutput {
completedAt?: Date | number | null;
createdAt?: Date | number | null;
description?: string | null;
lastUpdatedAt?: Date | number | null;
state?: TaskState | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
targets?: string[] | null;
taskArn?: string | null;
taskId?: string | null;
}

§Properties

§
completedAt?: Date | number | null
[src]

When the task was completed.

§
createdAt?: Date | number | null
[src]

When the CreateTask operation was called.

§
description?: string | null
[src]

The description provided of the task and managed devices.

§
lastUpdatedAt?: Date | number | null
[src]

When the state of the task was last updated.

§
state?: TaskState | null
[src]

The current state of the task.

§
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[] | null
[src]

The managed devices that the task was sent to.

§
taskArn?: string | null
[src]

The Amazon Resource Name (ARN) of the task.

§
taskId?: string | null
[src]

The ID of the task.