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

FindingSummary

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

Contains information about a finding.

interface FindingSummary {
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-based policy that generated the finding 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 created.

§
error?: string | null
[src]

The error that resulted in an Error finding.

§
id: string
[src]

The ID of the finding.

§
isPublic?: boolean | null
[src]

Indicates whether the finding reports a resource that has a policy that allows public access.

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

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

§
resource?: string | null
[src]

The resource that the 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 that the external principal has access to.

§
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 status of the finding.

§
updatedAt: Date | number
[src]

The time at which the finding was most recently updated.