Module Values.AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetailsSource

Specifies the method used to encrypt the user’s data stores in the Athena workgroup.

Sourcetype nonrec t = {
  1. encryptionOption : NonEmptyString.t option;
    (*

    Indicates whether Amazon Simple Storage Service (Amazon S3) server-side encryption with Amazon S3 managed keys (SSE_S3), server-side encryption with KMS keys (SSE_KMS), or client-side encryption with KMS customer managed keys (CSE_KMS) is used.

    *)
  2. kmsKey : NonEmptyString.t option;
    (*

    For SSE_KMS and CSE_KMS, this is the KMS key Amazon Resource Name (ARN) or ID.

    *)
}
Sourceval make : ?encryptionOption:??? -> ?kmsKey:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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