[][src]Struct rusoto_codecommit::DescribePullRequestEventsInput

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

actor_arn: Option<String>

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.

max_results: Option<i64>

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.

next_token: Option<String>

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

pull_request_event_type: Option<String>

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

pull_request_id: String

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

Trait Implementations

impl Clone for DescribePullRequestEventsInput[src]

impl Debug for DescribePullRequestEventsInput[src]

impl Default for DescribePullRequestEventsInput[src]

impl PartialEq<DescribePullRequestEventsInput> for DescribePullRequestEventsInput[src]

impl Serialize for DescribePullRequestEventsInput[src]

impl StructuralPartialEq for DescribePullRequestEventsInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.