Module Values.S3ExportSpecificationSource

This specification contains a required string of the destination bucket; optionally, you can include the destination prefix.

Sourcetype nonrec t = {
  1. destinationBucket : String_.t;
    (*

    This specifies the destination Amazon S3 bucket for the export job.

    *)
  2. destinationPrefix : String_.t option;
    (*

    This specifies the prefix for the destination Amazon S3 bucket for the export job.

    *)
}
Sourceval context_ : string
Sourceval make : ?destinationPrefix:??? -> destinationBucket:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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