Module Values.FieldLevelEncryptionSummarySource

A summary of a field-level encryption item.

Sourcetype nonrec t = {
  1. id : String_.t option;
    (*

    The unique ID of a field-level encryption item.

    *)
  2. lastModifiedTime : Timestamp.t option;
    (*

    The last time that the summary of field-level encryption items was modified.

    *)
  3. comment : String_.t option;
    (*

    An optional comment about the field-level encryption item. The comment cannot be longer than 128 characters.

    *)
  4. queryArgProfileConfig : QueryArgProfileConfig.t option;
    (*

    A summary of a query argument-profile mapping.

    *)
  5. contentTypeProfileConfig : ContentTypeProfileConfig.t option;
    (*

    A summary of a content type-profile mapping.

    *)
}
Sourceval make : ?id:??? -> ?lastModifiedTime:??? -> ?comment:??? -> ?queryArgProfileConfig:??? -> ?contentTypeProfileConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list ]) list ]) list | `Timestamp of Timestamp.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