Module Values.EdiConfigurationSource

Specifies the details for the EDI (electronic data interchange) transformation.

Sourcetype nonrec t = {
  1. capabilityDirection : CapabilityDirection.t option;
    (*

    Specifies whether this is capability is for inbound or outbound transformations.

    *)
  2. type_ : EdiType.t;
    (*

    Returns the type of the capability. Currently, only edi is supported.

    *)
  3. inputLocation : S3Location.t;
    (*

    Contains the Amazon S3 bucket and prefix for the location of the input file, which is contained in an S3Location object.

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

    Contains the Amazon S3 bucket and prefix for the location of the output file, which is contained in an S3Location object.

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

    Returns the system-assigned unique identifier for the transformer.

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