Module Values.StartTransformerJobRequestSource

Runs a job, using a transformer, to parse input EDI (electronic data interchange) file into the output structures used by Amazon Web Services B2B Data Interchange. If you only want to transform EDI (electronic data interchange) documents, you don't need to create profiles, partnerships or capabilities. Just create and configure a transformer, and then run the StartTransformerJob API to process your files. The system stores transformer jobs for 30 days. During that period, you can run GetTransformerJob and supply its transformerId and transformerJobId to return details of the job.

Sourcetype nonrec t = {
  1. inputFile : S3Location.t;
    (*

    Specifies the location of the input file for the transformation. The location consists of an Amazon S3 bucket and prefix.

    *)
  2. outputLocation : S3Location.t;
    (*

    Specifies the location of the output file for the transformation. The location consists of an Amazon S3 bucket and prefix.

    *)
  3. transformerId : TransformerId.t;
    (*

    Specifies the system-assigned unique identifier for the transformer.

    *)
  4. clientToken : String_.t option;
    (*

    Reserved for future use.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> inputFile:S3Location.t -> outputLocation:S3Location.t -> transformerId:TransformerId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TransformerId.t | `Structure of (string * [> `String of BucketName.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