Module Values.NetworkConnectionActionSource

Contains information about the NETWORK_CONNECTION action described in the finding.

Sourcetype nonrec t = {
  1. blocked : Boolean.t option;
    (*

    Indicates whether EC2 blocked the network connection to your instance.

    *)
  2. connectionDirection : String_.t option;
    (*

    The network connection direction.

    *)
  3. localPortDetails : LocalPortDetails.t option;
    (*

    The local port information of the connection.

    *)
  4. protocol : String_.t option;
    (*

    The network connection protocol.

    *)
  5. localIpDetails : LocalIpDetails.t option;
    (*

    The local IP information of the connection.

    *)
  6. localNetworkInterface : String_.t option;
    (*

    The EC2 instance's local elastic network interface utilized for the connection.

    *)
  7. remoteIpDetails : RemoteIpDetails.t option;
    (*

    The remote IP information of the connection.

    *)
  8. remotePortDetails : RemotePortDetails.t option;
    (*

    The remote port information of the connection.

    *)
}
Sourceval make : ?blocked:??? -> ?connectionDirection:??? -> ?localPortDetails:??? -> ?protocol:??? -> ?localIpDetails:??? -> ?localNetworkInterface:??? -> ?remoteIpDetails:??? -> ?remotePortDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t | `Structure of (string * [> `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `Double of Double.t | `String of String_.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