Module Values.DataSourceConfigurationsSource

Contains information about which data sources are enabled.

Sourcetype nonrec t = {
  1. s3Logs : S3LogsConfiguration.t option;
    (*

    Describes whether S3 data event logs are enabled as a data source.

    *)
  2. kubernetes : KubernetesConfiguration.t option;
    (*

    Describes whether any Kubernetes logs are enabled as data sources.

    *)
  3. malwareProtection : MalwareProtectionConfiguration.t option;
    (*

    Describes whether Malware Protection is enabled as a data source.

    *)
}
Sourceval make : ?s3Logs:??? -> ?kubernetes:??? -> ?malwareProtection:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Boolean of Boolean.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