Module Values.EncryptionConfigSource

Encryption config for Connect Instance. Note that sensitive data will always be encrypted. If disabled, service will perform encryption with its own key. If enabled, a KMS key id needs to be provided and KMS charges will apply. KMS is only type supported

Sourcetype nonrec t = {
  1. enabled : Enabled.t;
  2. encryptionType : EncryptionType.t option;
  3. keyArn : EncryptionKey.t option;
}
Sourceval context_ : string
Sourceval make : ?encryptionType:??? -> ?keyArn:??? -> enabled:Enabled.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Enabled.t | `Enum of string | `String of EncryptionKey.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