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

AccessPreviewSummary

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

Contains a summary of information about an access preview.

interface AccessPreviewSummary {
analyzerArn: string;
createdAt: Date | number;
id: string;
statusReason?: AccessPreviewStatusReason | null;
}

§Properties

§
analyzerArn: string
[src]

The ARN of the analyzer used to generate the access preview.

§
createdAt: Date | number
[src]

The time at which the access preview was created.

§
id: string
[src]

The unique ID for the access preview.

§

The status of the access preview.

  • Creating - The access preview creation is in progress.
  • Completed - The access preview is complete and previews the findings for external access to the resource.
  • Failed - The access preview creation has failed.
§
statusReason?: AccessPreviewStatusReason | null
[src]