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

PortProbeDetail

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

A port scan that was part of the port probe. For each scan, PortProbeDetails provides information about the local IP address and port that were scanned, and the remote IP address that the scan originated from.

interface PortProbeDetail {
LocalIpDetails?: ActionLocalIpDetails | null;
LocalPortDetails?: ActionLocalPortDetails | null;
RemoteIpDetails?: ActionRemoteIpDetails | null;
}

§Properties

§
LocalIpDetails?: ActionLocalIpDetails | null
[src]

Provides information about the IP address where the scanned port is located.

§
LocalPortDetails?: ActionLocalPortDetails | null
[src]

Provides information about the port that was scanned.

§
RemoteIpDetails?: ActionRemoteIpDetails | null
[src]

Provides information about the remote IP address that performed the scan.