Module Values.KmsEncryptionConfigSource

The customer-managed-key (CMK) used when creating a data store. If a customer-owned key is not specified, an AWS-owned key is used for encryption.

Sourcetype nonrec t = {
  1. cmkType : CmkType.t;
    (*

    The type of customer-managed-key (CMK) used for encryption.

    *)
  2. kmsKeyId : EncryptionKeyID.t option;
    (*

    The Key Management Service (KMS) encryption key id/alias used to encrypt the data store contents at rest.

    *)
}
Sourceval context_ : string
Sourceval make : ?kmsKeyId:??? -> cmkType:CmkType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EncryptionKeyID.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