Module Values.PollForJobsInputSource

Represents the input of a PollForJobs action.

Sourcetype nonrec t = {
  1. actionTypeId : ActionTypeId.t;
    (*

    Represents information about an action type.

    *)
  2. maxBatchSize : MaxBatchSize.t option;
    (*

    The maximum number of jobs to return in a poll for jobs call.

    *)
  3. queryParam : QueryParamMap.t option;
    (*

    A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value are returned.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxBatchSize:??? -> ?queryParam:??? -> actionTypeId:ActionTypeId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxBatchSize.t | `Map of ([> `String of ActionConfigurationKey.t ] * [> `String of ActionConfigurationQueryableValue.t ]) list | `Structure of (string * [> `Enum of string | `String of ActionProvider.t ]) 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