Module Values.EncryptionConfigurationSource

Use this structure to specify a customer managed KMS key to use to encrypt investigation data.

Sourcetype nonrec t = {
  1. type_ : EncryptionConfigurationType.t option;
    (*

    Displays whether investigation data is encrypted by a customer managed key or an Amazon Web Services owned key.

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

    If the investigation group uses a customer managed key for encryption, this field displays the ID of that key.

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