Module Values.NetworkConnectionActionSource

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

Sourcetype nonrec t = {
  1. connectionDirection : NonEmptyString.t option;
    (*

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

    *)
  2. remoteIpDetails : ActionRemoteIpDetails.t option;
    (*

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

    *)
  3. remotePortDetails : ActionRemotePortDetails.t option;
    (*

    Information about the port on the remote IP address.

    *)
  4. localPortDetails : ActionLocalPortDetails.t option;
    (*

    Information about the port on the EC2 instance.

    *)
  5. protocol : NonEmptyString.t option;
    (*

    The protocol used to make the network connection request. Length Constraints: Minimum length of 1. Maximum length of 64.

    *)
  6. blocked : Boolean.t option;
    (*

    Indicates whether the network connection attempt was blocked.

    *)
}
Sourceval make : ?connectionDirection:??? -> ?remoteIpDetails:??? -> ?remotePortDetails:??? -> ?localPortDetails:??? -> ?protocol:??? -> ?blocked:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.t | `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `String of NonEmptyString.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t