Module Values.FieldLevelEncryptionSource

A complex data type that includes the profile configurations and other options specified for field-level encryption.

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

    The configuration ID for a field-level encryption configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.

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

    The last time the field-level encryption configuration was changed.

    *)
  3. fieldLevelEncryptionConfig : FieldLevelEncryptionConfig.t option;
    (*

    A complex data type that includes the profile configurations specified for field-level encryption.

    *)
}
Sourceval make : ?id:??? -> ?lastModifiedTime:??? -> ?fieldLevelEncryptionConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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 ]) 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