Module Values_0.AuditContextSource

A structure containing the Lake Formation audit context.

Sourcetype nonrec t = {
  1. additionalAuditContext : AuditContextString.t option;
    (*

    A string containing the additional audit context information.

    *)
  2. requestedColumns : AuditColumnNamesList.t option;
    (*

    The requested columns for audit.

    *)
  3. allColumnsRequested : NullableBoolean.t option;
    (*

    All columns request for audit.

    *)
}
Sourceval make : ?additionalAuditContext:??? -> ?requestedColumns:??? -> ?allColumnsRequested:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `List of [> `String of ColumnNameString.t ] list | `String of AuditContextString.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