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

AnalyzedResource

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

Contains details about the analyzed resource.

interface AnalyzedResource {
actions?: string[] | null;
analyzedAt: Date | number;
createdAt: Date | number;
error?: string | null;
isPublic: boolean;
resourceArn: string;
resourceOwnerAccount: string;
resourceType: ResourceType;
sharedVia?: string[] | null;
status?: FindingStatus | null;
updatedAt: Date | number;
}

§Properties

§
actions?: string[] | null
[src]

The actions that an external principal is granted permission to use by the policy that generated the finding.

§
analyzedAt: Date | number
[src]

The time at which the resource was analyzed.

§
createdAt: Date | number
[src]

The time at which the finding was created.

§
error?: string | null
[src]

An error message.

§
isPublic: boolean
[src]

Indicates whether the policy that generated the finding grants public access to the resource.

§
resourceArn: string
[src]

The ARN of the resource that was analyzed.

§
resourceOwnerAccount: string
[src]

The Amazon Web Services account ID that owns the resource.

§
resourceType: ResourceType
[src]

The type of the resource that was analyzed.

§
sharedVia?: string[] | null
[src]

Indicates how the access that generated the finding is granted. This is populated for Amazon S3 bucket findings.

§
status?: FindingStatus | null
[src]

The current status of the finding generated from the analyzed resource.

§
updatedAt: Date | number
[src]

The time at which the finding was updated.