Module Values.DataLakeSourceSource

Amazon Security Lake collects logs and events from supported Amazon Web Services services and custom sources. For the list of supported Amazon Web Services services, see the Amazon Security Lake User Guide.

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

    The ID of the Security Lake account for which logs are collected.

    *)
  2. eventClasses : OcsfEventClassList.t option;
    (*

    The Open Cybersecurity Schema Framework (OCSF) event classes describes the type of data that the custom source will send to Security Lake. For the list of supported event classes, see Supported OCSF Event classes in the Amazon Security Lake User Guide.

    *)
  3. sourceName : String_.t option;
    (*

    The supported Amazon Web Services services from which logs and events are collected. Amazon Security Lake supports log and event collection for natively supported Amazon Web Services services.

    *)
  4. sourceStatuses : DataLakeSourceStatusList.t option;
    (*

    The log status for the Security Lake account.

    *)
}
Sourceval make : ?account:??? -> ?eventClasses:??? -> ?sourceName:??? -> ?sourceStatuses:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of OcsfEventClass.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `String of String_.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