Module Values.ProtectedQueryS3OutputConfigurationSource

Contains the configuration to write the query results to S3.

Sourcetype nonrec t = {
  1. resultFormat : ResultFormat.t;
    (*

    Intended file format of the result.

    *)
  2. bucket : ProtectedQueryS3OutputConfigurationBucketString.t;
    (*

    The S3 bucket to unload the protected query results.

    *)
  3. keyPrefix : KeyPrefix.t option;
    (*

    The S3 prefix to unload the protected query results.

    *)
  4. singleFileOutput : Boolean.t option;
    (*

    Indicates whether files should be output as a single file (TRUE) or output as multiple files (FALSE). This parameter is only supported for analyses with the Spark analytics engine.

    *)
}
Sourceval context_ : string
Sourceval make : ?keyPrefix:??? -> ?singleFileOutput:??? -> resultFormat:ResultFormat.t -> bucket:ProtectedQueryS3OutputConfigurationBucketString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of ProtectedQueryS3OutputConfigurationBucketString.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