Module Values.LogsConfigurationPolicySource

Provides the information necessary for a user to access the logs.

Sourcetype nonrec t = {
  1. allowedAccountIds : AccountIdList.t;
    (*

    A list of account IDs that are allowed to access the logs.

    *)
  2. filterPattern : LogsConfigurationPolicyFilterPatternString.t option;
    (*

    A regular expression pattern that is used to parse the logs and return information that matches the pattern.

    *)
  3. logType : LogType.t option;
    (*

    Specifies the type of log this policy applies to. The currently supported policies are ALL or ERROR_SUMMARY.

    *)
  4. logRedactionConfiguration : LogRedactionConfiguration.t option;
    (*

    Specifies the log redaction configuration for this policy.

    *)
}
Sourceval context_ : string
Sourceval make : ?filterPattern:??? -> ?logType:??? -> ?logRedactionConfiguration:??? -> allowedAccountIds:AccountIdList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of LogsConfigurationPolicyFilterPatternString.t | `Structure of (string * [> `List of [> `Enum of string ] list | `Structure of (string * [> `List of [> `String of CustomDataIdentifier.t ] list ]) 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