Struct rusoto_codecommit::DescribePullRequestEventsInput[][src]

pub struct DescribePullRequestEventsInput {
    pub actor_arn: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub pull_request_event_type: Option<String>,
    pub pull_request_id: String,
}

Fields

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

A 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.

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

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

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

Trait Implementations

impl Default for DescribePullRequestEventsInput
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribePullRequestEventsInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribePullRequestEventsInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribePullRequestEventsInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations