Module Values.ActorSource

Information about the threat actor identified in an Amazon GuardDuty Extended Threat Detection attack sequence. GuardDuty generates an attack sequence finding when multiple events align to a potentially suspicious activity. To receive GuardDuty attack sequence findings in Security Hub CSPM, you must have GuardDuty enabled. For more information, see GuardDuty Extended Threat Detection in the Amazon GuardDuty User Guide.

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

    The ID of the threat actor.

    *)
  2. user : ActorUser.t option;
    (*

    Contains information about the user credentials used by the threat actor.

    *)
  3. session : ActorSession.t option;
    (*

    Contains information about the user session where the activity initiated.

    *)
}
Sourceval make : ?id:??? -> ?user:??? -> ?session:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `Long of Long.t | `String of NonEmptyString.t | `Structure of (string * [> `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