Module Values.EncryptionConfigSource

Encryption settings for a collection.

Sourcetype nonrec t = {
  1. aWSOwnedKey : Boolean.t option;
    (*

    Indicates whether to use an Amazon Web Services-owned key for encryption.

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

    The ARN of the Amazon Web Services Key Management Service key used to encrypt the collection.

    *)
}
Sourceval make : ?aWSOwnedKey:??? -> ?kmsKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of EncryptionConfigKmsKeyArnString.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