Module Values.ProtectedQueryOutputSource

Contains details about the protected query output.

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

    If present, the output for a protected query with an S3 output type.

    *)
  2. memberList : ProtectedQueryMemberOutputList.t option;
    (*

    The list of member Amazon Web Services account(s) that received the results of the query.

    *)
  3. distribute : ProtectedQueryDistributeOutput.t option;
    (*

    Contains output information for protected queries that use a distribute output type. This output type lets you send query results to multiple locations - either to S3 or to collaboration members. You can only use the distribute output type with the Spark analytics engine.

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