Module Values.LogRedactionConfigurationSource

The configuration for log redaction.

Sourcetype nonrec t = {
  1. entitiesToRedact : EntityTypeList.t;
    (*

    Specifies the entities to be redacted from logs. Entities to redact are "ALL_PERSONALLY_IDENTIFIABLE_INFORMATION", "NUMBERS","CUSTOM". If CUSTOM is supplied or configured, custom patterns (customDataIdentifiers) should be provided, and the patterns will be redacted in logs or error messages.

    *)
  2. customEntityConfig : CustomEntityConfig.t option;
    (*

    Specifies the configuration for custom entities in the context of log redaction.

    *)
}
Sourceval context_ : string
Sourceval make : ?customEntityConfig:??? -> entitiesToRedact:EntityTypeList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `Structure of (string * [> `List of [> `String of CustomDataIdentifier.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