Module Values.EncryptionSettingSource

The object representing the passwords that were used to encrypt the data related to the bot recommendation, as well as the KMS key ARN used to encrypt the associated metadata.

Sourcetype nonrec t = {
  1. kmsKeyArn : KmsKeyArn.t option;
    (*

    The KMS key ARN used to encrypt the metadata associated with the bot recommendation.

    *)
  2. botLocaleExportPassword : FilePassword.t option;
    (*

    The password used to encrypt the recommended bot recommendation file.

    *)
  3. associatedTranscriptsPassword : FilePassword.t option;
    (*

    The password used to encrypt the associated transcript file.

    *)
}
Sourceval make : ?kmsKeyArn:??? -> ?botLocaleExportPassword:??? -> ?associatedTranscriptsPassword:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of KmsKeyArn.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