[][src]Struct rusoto_codeguru_reviewer::ListCodeReviewsRequest

pub struct ListCodeReviewsRequest {
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub provider_types: Option<Vec<String>>,
    pub repository_names: Option<Vec<String>>,
    pub states: Option<Vec<String>>,
    pub type_: String,
}

Fields

max_results: Option<i64>

The maximum number of results that are returned per call. The default is 100.

next_token: Option<String>

If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.

provider_types: Option<Vec<String>>

List of provider types for filtering that needs to be applied before displaying the result. For example, providerTypes=[GitHub] lists code reviews from GitHub.

repository_names: Option<Vec<String>>

List of repository names for filtering that needs to be applied before displaying the result.

states: Option<Vec<String>>

List of states for filtering that needs to be applied before displaying the result. For example, states=[Pending] lists code reviews in the Pending state.

The valid code review states are:

  • Completed: The code review is complete.

  • Pending: The code review started and has not completed or failed.

  • Failed: The code review failed.

  • Deleting: The code review is being deleted.

type_: String

The type of code reviews to list in the response.

Trait Implementations

impl Clone for ListCodeReviewsRequest[src]

impl Debug for ListCodeReviewsRequest[src]

impl Default for ListCodeReviewsRequest[src]

impl PartialEq<ListCodeReviewsRequest> for ListCodeReviewsRequest[src]

impl Serialize for ListCodeReviewsRequest[src]

impl StructuralPartialEq for ListCodeReviewsRequest[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> Instrument for T[src]

impl<T> Instrument 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.