Module Values.EncryptionConfigSource

The encryption configuration for the cluster.

Sourcetype nonrec t = {
  1. resources : StringList.t option;
    (*

    Specifies the resources to be encrypted. The only supported value is secrets.

    *)
  2. provider : Provider.t option;
    (*

    Key Management Service (KMS) key. Either the ARN or the alias can be used.

    *)
}
Sourceval make : ?resources:??? -> ?provider:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `Structure of (string * [> `String of String_.t ]) list ]) 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