Struct aws_sdk_codecommit::operation::describe_pull_request_events::DescribePullRequestEventsInput
source · #[non_exhaustive]pub struct DescribePullRequestEventsInput {
pub pull_request_id: Option<String>,
pub pull_request_event_type: Option<PullRequestEventType>,
pub actor_arn: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.pull_request_id: Option<String>The system-generated ID of the pull request. To get this ID, use ListPullRequests.
pull_request_event_type: Option<PullRequestEventType>Optional. The pull request event type about which you want to return information.
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.
next_token: Option<String>An enumeration token that, when provided in a request, returns the next batch of the results.
max_results: Option<i32>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.
Implementations§
source§impl DescribePullRequestEventsInput
impl DescribePullRequestEventsInput
sourcepub fn pull_request_id(&self) -> Option<&str>
pub fn pull_request_id(&self) -> Option<&str>
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
sourcepub fn pull_request_event_type(&self) -> Option<&PullRequestEventType>
pub fn pull_request_event_type(&self) -> Option<&PullRequestEventType>
Optional. The pull request event type about which you want to return information.
sourcepub fn actor_arn(&self) -> Option<&str>
pub fn actor_arn(&self) -> Option<&str>
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.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
An enumeration token that, when provided in a request, returns the next batch of the results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
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.
source§impl DescribePullRequestEventsInput
impl DescribePullRequestEventsInput
sourcepub fn builder() -> DescribePullRequestEventsInputBuilder
pub fn builder() -> DescribePullRequestEventsInputBuilder
Creates a new builder-style object to manufacture DescribePullRequestEventsInput.
Trait Implementations§
source§impl Clone for DescribePullRequestEventsInput
impl Clone for DescribePullRequestEventsInput
source§fn clone(&self) -> DescribePullRequestEventsInput
fn clone(&self) -> DescribePullRequestEventsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribePullRequestEventsInput
impl PartialEq for DescribePullRequestEventsInput
source§fn eq(&self, other: &DescribePullRequestEventsInput) -> bool
fn eq(&self, other: &DescribePullRequestEventsInput) -> bool
self and other values to be equal, and is used
by ==.