Module Values.CustomLogSourceResourceSource

Amazon Security Lake can collect logs and events from third-party custom sources.

Sourcetype nonrec t = {
  1. attributes : CustomLogSourceAttributes.t option;
    (*

    The attributes of a third-party custom source.

    *)
  2. provider : CustomLogSourceProvider.t option;
    (*

    The details of the log provider for a third-party custom source.

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

    The name for a third-party custom source. This must be a Regionally unique value.

    *)
  4. sourceVersion : CustomLogSourceVersion.t option;
    (*

    The version for a third-party custom source. This must be a Regionally unique value.

    *)
}
Sourceval make : ?attributes:??? -> ?provider:??? -> ?sourceName:??? -> ?sourceVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CustomLogSourceName.t | `Structure of (string * [> `String of AmazonResourceName.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