Module Values.ProcessorSource

Describes a data processor. If you want to add a new line delimiter between records in objects that are delivered to Amazon S3, choose AppendDelimiterToRecord as a processor type. You donโ€™t have to put a processor parameter when you select AppendDelimiterToRecord.

Sourcetype nonrec t = {
  1. type_ : ProcessorType.t;
    (*

    The type of processor.

    *)
  2. parameters : ProcessorParameterList.t option;
    (*

    The processor parameters.

    *)
}
Sourceval context_ : string
Sourceval make : ?parameters:??? -> type_:ProcessorType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of ProcessorParameterValue.t ]) 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