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

QuantumTaskSummary

import type { QuantumTaskSummary } from "https://aws-api.deno.dev/v0.4/services/braket.ts?docs=full";

Includes information about a quantum task.

interface QuantumTaskSummary {
createdAt: Date | number;
deviceArn: string;
endedAt?: Date | number | null;
outputS3Bucket: string;
outputS3Directory: string;
quantumTaskArn: string;
shots: number;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
createdAt: Date | number
[src]

The time at which the task was created.

§
deviceArn: string
[src]

The ARN of the device the task ran on.

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

The time at which the task finished.

§
outputS3Bucket: string
[src]

The S3 bucket where the task result file is stored..

§
outputS3Directory: string
[src]

The folder in the S3 bucket where the task result file is stored.

§
quantumTaskArn: string
[src]

The ARN of the task.

§
shots: number
[src]

The shots used for the task.

§

The status of the task.

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

Displays the key, value pairs of tags associated with this quantum task.