Module Values.EncryptionSource

Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.

Sourcetype nonrec t = {
  1. sseAlgorithm : SSEAlgorithm.t;
    (*

    The server-side encryption algorithm used for encrypting data in the S3 Table integration.

    *)
  2. kmsKeyArn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the KMS key used for encryption when using customer-managed keys.

    *)
}
Sourceval context_ : string
Sourceval make : ?kmsKeyArn:??? -> sseAlgorithm:SSEAlgorithm.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceArn.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