Module Values.SignalSource

Contains information about the signals involved in the attack sequence.

Sourcetype nonrec t = {
  1. uid : String_.t option;
    (*

    The unique identifier of the signal.

    *)
  2. type_ : SignalType.t option;
    (*

    The type of the signal used to identify an attack sequence. Signals can be GuardDuty findings or activities observed in data sources that GuardDuty monitors. For more information, see Foundational data sources in the Amazon GuardDuty User Guide. A signal type can be one of the valid values listed in this API. Here are the related descriptions: FINDING - Individually generated GuardDuty finding. CLOUD_TRAIL - Activity observed from CloudTrail logs S3_DATA_EVENTS - Activity observed from CloudTrail data events for S3. Activities associated with this type will show up only when you have enabled GuardDuty S3 Protection feature in your account. For more information about S3 Protection and steps to enable it, see S3 Protection in the Amazon GuardDuty User Guide.

    *)
  3. description : SignalDescription.t option;
    (*

    The description of the signal.

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

    The name of the signal. For example, when signal type is FINDING, the signal name is the name of the finding.

    *)
  5. createdAt : Timestamp.t option;
    (*

    The timestamp when the first finding or activity related to this signal was observed.

    *)
  6. updatedAt : Timestamp.t option;
    (*

    The timestamp when this signal was last observed.

    *)
  7. firstSeenAt : Timestamp.t option;
    (*

    The timestamp when the first finding or activity related to this signal was observed.

    *)
  8. lastSeenAt : Timestamp.t option;
    (*

    The timestamp when the last finding or activity related to this signal was observed.

    *)
  9. severity : Double.t option;
    (*

    The severity associated with the signal. For more information about severity, see Findings severity levels in the Amazon GuardDuty User Guide.

    *)
  10. count : Integer.t option;
    (*

    The number of times this signal was observed.

    *)
  11. resourceUids : ResourceUids.t option;
    (*

    Information about the unique identifiers of the resources involved in the signal.

    *)
  12. actorIds : ActorIds.t option;
    (*

    Information about the IDs of the threat actors involved in the signal.

    *)
  13. endpointIds : EndpointIds.t option;
    (*

    Information about the endpoint IDs associated with this signal.

    *)
  14. signalIndicators : Indicators.t option;
    (*

    Contains information about the indicators associated with the signals.

    *)
}
Sourceval make : ?uid:??? -> ?type_:??? -> ?description:??? -> ?name:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?firstSeenAt:??? -> ?lastSeenAt:??? -> ?severity:??? -> ?count:??? -> ?resourceUids:??? -> ?actorIds:??? -> ?endpointIds:??? -> ?signalIndicators:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `Integer of Integer.t | `List of [> `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `String of IndicatorValueString.t ] list | `String of IndicatorTitle.t ]) list ] list | `String of String_.t | `Timestamp of Timestamp.t ]) 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