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

NetworkConnectionAction

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

Contains information about the NETWORK_CONNECTION action described in the finding.

interface NetworkConnectionAction {
Blocked?: boolean | null;
ConnectionDirection?: string | null;
LocalIpDetails?: LocalIpDetails | null;
LocalPortDetails?: LocalPortDetails | null;
Protocol?: string | null;
RemoteIpDetails?: RemoteIpDetails | null;
RemotePortDetails?: RemotePortDetails | null;
}

§Properties

§
Blocked?: boolean | null
[src]

Indicates whether EC2 blocked the network connection to your instance.

§
ConnectionDirection?: string | null
[src]

The network connection direction.

§
LocalIpDetails?: LocalIpDetails | null
[src]

The local IP information of the connection.

§
LocalPortDetails?: LocalPortDetails | null
[src]

The local port information of the connection.

§
Protocol?: string | null
[src]

The network connection protocol.

§
RemoteIpDetails?: RemoteIpDetails | null
[src]

The remote IP information of the connection.

§
RemotePortDetails?: RemotePortDetails | null
[src]

The remote port information of the connection.