Module Values.ProtectedQueryDistributeOutputSource

Contains the output information for a protected query with a distribute output configuration. This output type allows query results to be distributed to multiple receivers, including S3 and collaboration members. It is only available for queries using the Spark analytics engine.

Sourcetype nonrec t = {
  1. s3 : ProtectedQueryS3Output.t option;
  2. memberList : ProtectedQueryMemberOutputList.t option;
    (*

    Contains the output results for each member location specified in the distribute output configuration. Each entry provides details about the result distribution to a specific collaboration member.

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