Module Values.DescribeJobFlowsInputSource

The input for the DescribeJobFlows operation.

Sourcetype nonrec t = {
  1. createdAfter : Date.t option;
    (*

    Return only job flows created after this date and time.

    *)
  2. createdBefore : Date.t option;
    (*

    Return only job flows created before this date and time.

    *)
  3. jobFlowIds : XmlStringList.t option;
    (*

    Return only job flows whose job flow ID is contained in this list.

    *)
  4. jobFlowStates : JobFlowExecutionStateList.t option;
    (*

    Return only job flows whose state is contained in this list.

    *)
}
Sourceval make : ?createdAfter:??? -> ?createdBefore:??? -> ?jobFlowIds:??? -> ?jobFlowStates:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string | `String of XmlString.t ] list | `Timestamp of Date.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