Module Values_0.DescribeAutomationStepExecutionsRequestSource

Information about all active and terminated step executions in an Automation workflow.

Sourcetype nonrec t = {
  1. automationExecutionId : AutomationExecutionId.t;
    (*

    The Automation execution ID for which you want step execution descriptions.

    *)
  2. filters : StepExecutionFilterList.t option;
    (*

    One or more filters to limit the number of step executions returned by the request.

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

    The token for the next set of items to return. (You received this token from a previous call.)

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

    The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

    *)
  5. reverseOrder : Boolean.t option;
    (*

    Indicates whether to list step executions in reverse order by start time. The default value is 'false'.

    *)
}
Sourceval context_ : string
Sourceval make : ?filters:??? -> ?nextToken:??? -> ?maxResults:??? -> ?reverseOrder:??? -> automationExecutionId:AutomationExecutionId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of MaxResults.t | `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of StepExecutionFilterValue.t ] list ]) list ] list | `String of AutomationExecutionId.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