#[non_exhaustive]pub struct ListCodeReviewsInput { /* private fields */ }Implementations§
source§impl ListCodeReviewsInput
impl ListCodeReviewsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCodeReviews, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCodeReviews, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListCodeReviews>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListCodeReviewsInput.
source§impl ListCodeReviewsInput
impl ListCodeReviewsInput
sourcepub fn provider_types(&self) -> Option<&[ProviderType]>
pub fn provider_types(&self) -> Option<&[ProviderType]>
List of provider types for filtering that needs to be applied before displaying the result. For example, providerTypes=[GitHub] lists code reviews from GitHub.
sourcepub fn states(&self) -> Option<&[JobState]>
pub fn states(&self) -> Option<&[JobState]>
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.
sourcepub fn repository_names(&self) -> Option<&[String]>
pub fn repository_names(&self) -> Option<&[String]>
List of repository names for filtering that needs to be applied before displaying the result.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results that are returned per call. The default is 100.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
Trait Implementations§
source§impl Clone for ListCodeReviewsInput
impl Clone for ListCodeReviewsInput
source§fn clone(&self) -> ListCodeReviewsInput
fn clone(&self) -> ListCodeReviewsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListCodeReviewsInput
impl Debug for ListCodeReviewsInput
source§impl PartialEq<ListCodeReviewsInput> for ListCodeReviewsInput
impl PartialEq<ListCodeReviewsInput> for ListCodeReviewsInput
source§fn eq(&self, other: &ListCodeReviewsInput) -> bool
fn eq(&self, other: &ListCodeReviewsInput) -> bool
self and other values to be equal, and is used
by ==.