Module Values_0.CustomCodeSource

Specifies a transform that uses custom code you provide to perform the data transformation. The output is a collection of DynamicFrames.

Sourcetype nonrec t = {
  1. name : NodeName.t;
    (*

    The name of the transform node.

    *)
  2. inputs : ManyInputs.t;
    (*

    The data inputs identified by their node names.

    *)
  3. code : ExtendedString.t;
    (*

    The custom code that is used to perform the data transformation.

    *)
  4. className : EnclosedInStringProperty.t;
    (*

    The name defined for the custom code node class.

    *)
  5. outputSchemas : GlueSchemas.t option;
    (*

    Specifies the data schema for the custom code transform.

    *)
}
Sourceval context_ : string
Sourceval make : ?outputSchemas:??? -> name:NodeName.t -> inputs:ManyInputs.t -> code:ExtendedString.t -> className:EnclosedInStringProperty.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NodeId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of GlueStudioColumnNameString.t ]) list ] list ]) list ] list | `String of NodeName.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