Module Values.EncryptionContextSource

Encryption context for a Domain.

Sourcetype nonrec t = {
  1. encryptionType : EncryptionType.t option;
    (*

    The type of encryption key used.

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

    The ARN of the KMS key. Only present when encryptionType is CUSTOMER_MANAGED_KEY.

    *)
}
Sourceval make : ?encryptionType:??? -> ?kmsKeyArn:??? -> 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