Module Values_0.DescribeAssociationExecutionsRequestSource

Views all executions for a specific association ID.

Sourcetype nonrec t = {
  1. associationId : AssociationId.t;
    (*

    The association ID for which you want to view execution history details.

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

    Filters for the request. You can specify the following filters and values. ExecutionId (EQUAL) Status (EQUAL) CreatedTime (EQUAL, GREATER_THAN, LESS_THAN)

    *)
  3. 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.

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

    A token to start the list. Use this token to get the next set of results.

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