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

EbsVolumeScanDetails

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

Contains details from the malware scan that created a finding.

interface EbsVolumeScanDetails {
ScanCompletedAt?: Date | number | null;
ScanDetections?: ScanDetections | null;
ScanId?: string | null;
ScanStartedAt?: Date | number | null;
Sources?: string[] | null;
TriggerFindingId?: string | null;
}

§Properties

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

Returns the completion date and time of the malware scan.

§
ScanDetections?: ScanDetections | null
[src]

Contains a complete view providing malware scan result details.

§
ScanId?: string | null
[src]

Unique Id of the malware scan that generated the finding.

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

Returns the start date and time of the malware scan.

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

Contains list of threat intelligence sources used to detect threats.

§
TriggerFindingId?: string | null
[src]

GuardDuty finding ID that triggered a malware scan.