Module Values.SearchFlowExecutionsRequestSource

Searches for AWS IoT Things Graph workflow execution instances.

Sourcetype nonrec t = {
  1. systemInstanceId : Urn.t;
    (*

    The ID of the system instance that contains the flow.

    *)
  2. flowExecutionId : FlowExecutionId.t option;
    (*

    The ID of a flow execution.

    *)
  3. startTime : Timestamp.t option;
    (*

    The date and time of the earliest flow execution to return.

    *)
  4. endTime : Timestamp.t option;
    (*

    The date and time of the latest flow execution to return.

    *)
  5. nextToken : NextToken.t option;
    (*

    The string that specifies the next page of results. Use this when you're paginating results.

    *)
  6. maxResults : MaxResults.t option;
    (*

    The maximum number of results to return in the response.

    *)
}
Sourceval context_ : string
Sourceval make : ?flowExecutionId:??? -> ?startTime:??? -> ?endTime:??? -> ?nextToken:??? -> ?maxResults:??? -> systemInstanceId:Urn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `String of Urn.t | `Timestamp of Timestamp.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