Module Values.MetadataTableEncryptionConfigurationSource

The encryption settings for an S3 Metadata journal table or inventory table configuration.

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

    The encryption type specified for a metadata table. To specify server-side encryption with Key Management Service (KMS) keys (SSE-KMS), use the aws:kms value. To specify server-side encryption with Amazon S3 managed keys (SSE-S3), use the AES256 value.

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

    If server-side encryption with Key Management Service (KMS) keys (SSE-KMS) is specified, you must also specify the KMS key Amazon Resource Name (ARN). You must specify a customer-managed KMS key that's located in the same Region as the general purpose bucket that corresponds to the metadata table configuration.

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