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

StoreImageTaskResult

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

The information about the AMI store task, including the progress of the task.

interface StoreImageTaskResult {
AmiId?: string | null;
Bucket?: string | null;
ProgressPercentage?: number | null;
S3objectKey?: string | null;
StoreTaskFailureReason?: string | null;
StoreTaskState?: string | null;
TaskStartTime?: Date | number | null;
}

§Properties

§
AmiId?: string | null
[src]

The ID of the AMI that is being stored.

§
Bucket?: string | null
[src]

The name of the Amazon S3 bucket that contains the stored AMI object.

§
ProgressPercentage?: number | null
[src]

The progress of the task as a percentage.

§
S3objectKey?: string | null
[src]

The name of the stored AMI object in the bucket.

§
StoreTaskFailureReason?: string | null
[src]

If the tasks fails, the reason for the failure is returned. If the task succeeds, null is returned.

§
StoreTaskState?: string | null
[src]

The state of the store task (InProgress, Completed, or Failed).

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

The time the task started.