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

BundleTask

import type { BundleTask } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";

Describes a bundle task.

interface BundleTask {
BundleId?: string | null;
BundleTaskError?: BundleTaskError | null;
InstanceId?: string | null;
Progress?: string | null;
StartTime?: Date | number | null;
State?: BundleTaskState | null;
Storage?: Storage | null;
UpdateTime?: Date | number | null;
}

§Properties

§
BundleId?: string | null
[src]

The ID of the bundle task.

§
BundleTaskError?: BundleTaskError | null
[src]

If the task fails, a description of the error.

§
InstanceId?: string | null
[src]

The ID of the instance associated with this bundle task.

§
Progress?: string | null
[src]

The level of task completion, as a percent (for example, 20%).

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

The time this task started.

§
State?: BundleTaskState | null
[src]

The state of the task.

§
Storage?: Storage | null
[src]

The Amazon S3 storage locations.

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

The time of the most recent update for the task.