Module Values_0.NodeSource

A node represents an Glue component (trigger, crawler, or job) on a workflow graph.

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

    The type of Glue component represented by the node.

    *)
  2. name : NameString.t option;
    (*

    The name of the Glue component represented by the node.

    *)
  3. uniqueId : NameString.t option;
    (*

    The unique Id assigned to the node within the workflow.

    *)
  4. triggerDetails : TriggerNodeDetails.t option;
    (*

    Details of the Trigger when the node represents a Trigger.

    *)
  5. jobDetails : JobNodeDetails.t option;
    (*

    Details of the Job when the node represents a Job.

    *)
  6. crawlerDetails : CrawlerNodeDetails.t option;
    (*

    Details of the crawler when the node represents a crawler.

    *)
}
Sourceval make : ?type_:??? -> ?name:??? -> ?uniqueId:??? -> ?triggerDetails:??? -> ?jobDetails:??? -> ?crawlerDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NameString.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Double of NullableDouble.t | `Enum of string | `Integer of AttemptCount.t | `List of [> `Structure of (string * [> `String of NameString.t ]) list ] list | `Map of ([> `String of GenericString.t ] * [> `String of GenericString.t ]) list | `String of IdString.t | `Structure of (string * [> `Integer of NotifyDelayAfter.t ]) list | `Timestamp of TimestampValue.t ]) list ] list | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of Timeout.t | `Map of ([> `String of GenericString.t ] * [> `String of GenericString.t ]) list | `String of NameString.t | `Structure of (string * [> `Integer of NotifyDelayAfter.t ]) list ]) list ] list | `String of NameString.t | `Structure of (string * [> `Enum of string | `Integer of BatchSize.t | `List of [> `Structure of (string * [> `Enum of string | `String of NameString.t ]) list ] list ]) list ]) 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