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

Provided if ActionType is NETWORK_CONNECTION. It provides details about the attempted network connection that was detected.

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

§Properties

§
Blocked?: boolean | null
[src]

Indicates whether the network connection attempt was blocked.

§
ConnectionDirection?: string | null
[src]

The direction of the network connection request (IN or OUT).

§
LocalPortDetails?: ActionLocalPortDetails | null
[src]

Information about the port on the EC2 instance.

§
Protocol?: string | null
[src]

The protocol used to make the network connection request.

§
RemoteIpDetails?: ActionRemoteIpDetails | null
[src]

Information about the remote IP address that issued the network connection request.

§
RemotePortDetails?: ActionRemotePortDetails | null
[src]

Information about the port on the remote IP address.