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

Finding

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

Contains information about a finding.

interface Finding {
action?: string[] | null;
analyzedAt: Date | number;
condition: {
[key: string]: string | null | undefined;
}
;
createdAt: Date | number;
error?: string | null;
id: string;
isPublic?: boolean | null;
principal?: {
[key: string]: string | null | undefined;
}
| null;
resource?: string | null;
resourceOwnerAccount: string;
resourceType: ResourceType;
sources?: FindingSource[] | null;
status: FindingStatus;
updatedAt: Date | number;
}

§Properties

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

The action in the analyzed policy statement that an external principal has permission to use.

§
analyzedAt: Date | number
[src]

The time at which the resource was analyzed.

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

The condition in the analyzed policy statement that resulted in a finding.

§
createdAt: Date | number
[src]

The time at which the finding was generated.

§
error?: string | null
[src]

An error.

§
id: string
[src]

The ID of the finding.

§
isPublic?: boolean | null
[src]

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

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

The external principal that access to a resource within the zone of trust.

§
resource?: string | null
[src]

The resource that an external principal has access to.

§
resourceOwnerAccount: string
[src]

The Amazon Web Services account ID that owns the resource.

§
resourceType: ResourceType
[src]

The type of the resource identified in the finding.

§
sources?: FindingSource[] | null
[src]

The sources of the finding. This indicates how the access that generated the finding is granted. It is populated for Amazon S3 bucket findings.

§

The current status of the finding.

§
updatedAt: Date | number
[src]

The time at which the finding was updated.