Module Values.DescribePullRequestEventsInputSource

Returns information about one or more pull request events.

Sourcetype nonrec t = {
  1. pullRequestId : PullRequestId.t;
    (*

    The system-generated ID of the pull request. To get this ID, use ListPullRequests.

    *)
  2. pullRequestEventType : PullRequestEventType.t option;
    (*

    Optional. The pull request event type about which you want to return information.

    *)
  3. actorArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the user whose actions resulted in the event. Examples include updating the pull request with more commits or changing the status of a pull request.

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

    An enumeration token that, when provided in a request, returns the next batch of the results.

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

    A non-zero, non-negative integer used to limit the number of returned results. The default is 100 events, which is also the maximum number of events that can be returned in a result.

    *)
}
Sourceval context_ : string
Sourceval make : ?pullRequestEventType:??? -> ?actorArn:??? -> ?nextToken:??? -> ?maxResults:??? -> pullRequestId:PullRequestId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of MaxResults.t | `String of PullRequestId.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