Module Values.ExportDestinationSource

An object that contains details about the destination of the export job.

Sourcetype nonrec t = {
  1. dataFormat : DataFormat.t;
    (*

    The data format of the final export job file, can be one of the following: CSV - A comma-separated values file. JSON - A Json file.

    *)
  2. s3Url : S3Url.t option;
    (*

    An Amazon S3 pre-signed URL that points to the generated export file.

    *)
}
Sourceval context_ : string
Sourceval make : ?s3Url:??? -> dataFormat:DataFormat.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of S3Url.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