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.3/services/macie2.ts?docs=full";

Provides the details of a finding.

interface Finding {
accountId?: string | null;
archived?: boolean | null;
category?: FindingCategory | null;
classificationDetails?: ClassificationDetails | null;
count?: number | null;
createdAt?: Date | number | null;
description?: string | null;
id?: string | null;
partition?: string | null;
policyDetails?: PolicyDetails | null;
region?: string | null;
resourcesAffected?: ResourcesAffected | null;
sample?: boolean | null;
schemaVersion?: string | null;
severity?: Severity | null;
title?: string | null;
type?: FindingType | null;
updatedAt?: Date | number | null;
}

§Properties

§
accountId?: string | null
[src]

The unique identifier for the Amazon Web Services account that the finding applies to. This is typically the account that owns the affected resource.

§
archived?: boolean | null
[src]

Specifies whether the finding is archived (suppressed).

§
category?: FindingCategory | null
[src]

The category of the finding. Possible values are: CLASSIFICATION, for a sensitive data finding; and, POLICY, for a policy finding.

§
classificationDetails?: ClassificationDetails | null
[src]

The details of a sensitive data finding. This value is null for a policy finding.

§
count?: number | null
[src]

The total number of occurrences of the finding. For sensitive data findings, this value is always 1. All sensitive data findings are considered new (unique) because they derive from individual classification jobs.

§
createdAt?: Date | number | null
[src]

The date and time, in UTC and extended ISO 8601 format, when the finding was created.

§
description?: string | null
[src]

The description of the finding.

§
id?: string | null
[src]

The unique identifier for the finding. This is a random string that Amazon Macie generates and assigns to a finding when it creates the finding.

§
partition?: string | null
[src]

The Amazon Web Services partition that Amazon Macie created the finding in.

§
policyDetails?: PolicyDetails | null
[src]

The details of a policy finding. This value is null for a sensitive data finding.

§
region?: string | null
[src]

The Amazon Web Services Region that Amazon Macie created the finding in.

§
resourcesAffected?: ResourcesAffected | null
[src]

The resources that the finding applies to.

§
sample?: boolean | null
[src]

Specifies whether the finding is a sample finding. A sample finding is a finding that uses example data to demonstrate what a finding might contain.

§
schemaVersion?: string | null
[src]

The version of the schema that was used to define the data structures in the finding.

§
severity?: Severity | null
[src]

The severity level and score for the finding.

§
title?: string | null
[src]

The brief description of the finding.

§
type?: FindingType | null
[src]

The type of the finding.

§
updatedAt?: Date | number | null
[src]

The date and time, in UTC and extended ISO 8601 format, when the finding was last updated. For sensitive data findings, this value is the same as the value for the createdAt property. All sensitive data findings are considered new (unique) because they derive from individual classification jobs.