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

JobSummary

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

Provides summary information about an Amazon Braket job.

interface JobSummary {
createdAt: Date | number;
device: string;
endedAt?: Date | number | null;
jobArn: string;
jobName: string;
startedAt?: Date | number | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
createdAt: Date | number
[src]

The date and time that the Amazon Braket job was created.

§
device: string
[src]

Provides summary information about the primary device used by an Amazon Braket job.

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

The date and time that the Amazon Braket job ended.

§
jobArn: string
[src]

The ARN of the Amazon Braket job.

§
jobName: string
[src]

The name of the Amazon Braket job.

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

The date and time that the Amazon Braket job was started.

§

The status of the Amazon Braket job.

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

A tag object that consists of a key and an optional value, used to manage metadata for Amazon Braket resources.