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

JobDetails

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

Contains details about the policy generation request.

interface JobDetails {
completedOn?: Date | number | null;
jobError?: JobError | null;
jobId: string;
startedOn: Date | number;
status: JobStatus;
}

§Properties

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

A timestamp of when the job was completed.

§
jobError?: JobError | null
[src]

The job error for the policy generation request.

§
jobId: string
[src]

The JobId that is returned by the StartPolicyGeneration operation. The JobId can be used with GetGeneratedPolicy to retrieve the generated policies or used with CancelPolicyGeneration to cancel the policy generation request.

§
startedOn: Date | number
[src]

A timestamp of when the job was started.

§

The status of the job request.