Module Values.ActorUserSource

Contains information about the credentials used by 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. name : NonEmptyString.t option;
    (*

    The name of the threat actor.

    *)
  2. uid : NonEmptyString.t option;
    (*

    The unique identifier of the threat actor.

    *)
  3. type_ : NonEmptyString.t option;
    (*

    The type of user.

    *)
  4. credentialUid : NonEmptyString.t option;
    (*

    Unique identifier of the threat actor’s user credentials.

    *)
  5. account : UserAccount.t option;
    (*

    The account of the threat actor.

    *)
}
Sourceval make : ?name:??? -> ?uid:??? -> ?type_:??? -> ?credentialUid:??? -> ?account:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) 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