Module Values.WorkerComputeConfigurationSource

Configuration information about the compute workers that perform the transform job.

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

    The instance type of the compute workers that are used.

    *)
  2. number : WorkerComputeConfigurationNumberInteger.t option;
    (*

    The number of compute workers that are used.

    *)
  3. properties : WorkerComputeConfigurationProperties.t option;
}
Sourceval make : ?type_:??? -> ?number:??? -> ?properties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of WorkerComputeConfigurationNumberInteger.t | `Structure of (string * [> `Map of ([> `String of SparkPropertyKey.t ] * [> `String of SparkPropertyValue.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