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

GetQuantumTaskResponse

import type { GetQuantumTaskResponse } from "https://aws-api.deno.dev/v0.4/services/braket.ts?docs=full";
interface GetQuantumTaskResponse {
createdAt: Date | number;
deviceArn: string;
deviceParameters: jsonP.JSONValue;
endedAt?: Date | number | null;
failureReason?: string | null;
jobArn?: string | 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 was run on.

§
deviceParameters: jsonP.JSONValue
[src]

The parameters for the device on which the task ran.

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

The time at which the task ended.

§
failureReason?: string | null
[src]

The reason that a task failed.

§
jobArn?: string | null
[src]

The ARN of the Amazon Braket job associated with the quantum task.

§
outputS3Bucket: string
[src]

The S3 bucket where task results are stored.

§
outputS3Directory: string
[src]

The folder in the S3 bucket where task results are stored.

§
quantumTaskArn: string
[src]

The ARN of the task.

§
shots: number
[src]

The number of shots used in the task.

§

The status of the task.

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

The tags that belong to this task.