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

Network

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

The details of network-related information about a finding.

interface Network {
DestinationDomain?: string | null;
DestinationIpV4?: string | null;
DestinationIpV6?: string | null;
DestinationPort?: number | null;
Direction?: NetworkDirection | null;
OpenPortRange?: PortRange | null;
Protocol?: string | null;
SourceDomain?: string | null;
SourceIpV4?: string | null;
SourceIpV6?: string | null;
SourceMac?: string | null;
SourcePort?: number | null;
}

§Properties

§
DestinationDomain?: string | null
[src]

The destination domain of network-related information about a finding.

§
DestinationIpV4?: string | null
[src]

The destination IPv4 address of network-related information about a finding.

§
DestinationIpV6?: string | null
[src]

The destination IPv6 address of network-related information about a finding.

§
DestinationPort?: number | null
[src]

The destination port of network-related information about a finding.

§
Direction?: NetworkDirection | null
[src]

The direction of network traffic associated with a finding.

§
OpenPortRange?: PortRange | null
[src]

The range of open ports that is present on the network.

§
Protocol?: string | null
[src]

The protocol of network-related information about a finding.

§
SourceDomain?: string | null
[src]

The source domain of network-related information about a finding.

§
SourceIpV4?: string | null
[src]

The source IPv4 address of network-related information about a finding.

§
SourceIpV6?: string | null
[src]

The source IPv6 address of network-related information about a finding.

§
SourceMac?: string | null
[src]

The source media access control (MAC) address of network-related information about a finding.

§
SourcePort?: number | null
[src]

The source port of network-related information about a finding.