Module Values.EncryptionConfigSource

A configuration document that specifies encryption configuration settings.

Sourcetype nonrec t = {
  1. keyId : String_.t option;
    (*

    The ID of the KMS key used for encryption, if applicable.

    *)
  2. status : EncryptionStatus.t option;
    (*

    The encryption status. While the status is UPDATING, X-Ray may encrypt data with a combination of the new and old settings.

    *)
  3. type_ : EncryptionType.t option;
    (*

    The type of encryption. Set to KMS for encryption with KMS keys. Set to NONE for default encryption.

    *)
}
Sourceval make : ?keyId:??? -> ?status:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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