Module Values.FieldLevelEncryptionProfileSource

A complex data type for field-level encryption profiles.

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

    The ID for a field-level encryption profile 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 profile was updated.

    *)
  3. fieldLevelEncryptionProfileConfig : FieldLevelEncryptionProfileConfig.t option;
    (*

    A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.

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