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

AccessPreview

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

Contains information about an access preview.

interface AccessPreview {
analyzerArn: string;
configurations: {
[key: string]: Configuration | null | undefined;
}
;
createdAt: Date | number;
id: string;
statusReason?: AccessPreviewStatusReason | null;
}

§Properties

§
analyzerArn: string
[src]

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

§
configurations: {
[key: string]: Configuration | null | undefined;
}
[src]

A map of resource ARNs for the proposed resource configuration.

§
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. You can preview findings for external access to the resource.
  • Failed - The access preview creation has failed.
§
statusReason?: AccessPreviewStatusReason | null
[src]

Provides more details about the current status of the access preview.

For example, if the creation of the access preview fails, a Failed status is returned. This failure can be due to an internal issue with the analysis or due to an invalid resource configuration.