#[non_exhaustive]pub struct ListCodeReviewsInput { /* private fields */ }Implementations
sourceimpl 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.
sourceimpl 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
sourceimpl Clone for ListCodeReviewsInput
impl Clone for ListCodeReviewsInput
sourcefn clone(&self) -> ListCodeReviewsInput
fn clone(&self) -> ListCodeReviewsInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more