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

CreateQuantumTaskRequest

import type { CreateQuantumTaskRequest } from "https://aws-api.deno.dev/v0.4/services/braket.ts?docs=full";
interface CreateQuantumTaskRequest {
clientToken: string;
deviceArn: string;
deviceParameters?: jsonP.JSONValue | null;
jobToken?: string | null;
outputS3Bucket: string;
outputS3KeyPrefix: string;
shots: number;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§

The action associated with the task.

§
clientToken: string
[src]

The client token associated with the request.

§
deviceArn: string
[src]

The ARN of the device to run the task on.

§
deviceParameters?: jsonP.JSONValue | null
[src]

The parameters for the device to run the task on.

§
jobToken?: string | null
[src]

The token for an Amazon Braket job that associates it with the quantum task.

§
outputS3Bucket: string
[src]

The S3 bucket to store task result files in.

§
outputS3KeyPrefix: string
[src]

The key prefix for the location in the S3 bucket to store task results in.

§
shots: number
[src]

The number of shots to use for the task.

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

Tags to be added to the quantum task you're creating.