Struct aws_sdk_codegurureviewer::model::CodeReviewType
source · #[non_exhaustive]pub struct CodeReviewType { /* private fields */ }
Expand description
The type of a code review. There are two code review types:
-
PullRequest
- A code review that is automatically triggered by a pull request on an associated repository. -
RepositoryAnalysis
- A code review that analyzes all code under a specified branch in an associated repository. The associated repository is specified using its ARN in CreateCodeReview.
Implementations§
source§impl CodeReviewType
impl CodeReviewType
sourcepub fn repository_analysis(&self) -> Option<&RepositoryAnalysis>
pub fn repository_analysis(&self) -> Option<&RepositoryAnalysis>
A code review that analyzes all code under a specified branch in an associated repository. The associated repository is specified using its ARN in CreateCodeReview.
sourcepub fn analysis_types(&self) -> Option<&[AnalysisType]>
pub fn analysis_types(&self) -> Option<&[AnalysisType]>
They types of analysis performed during a repository analysis or a pull request review. You can specify either Security
, CodeQuality
, or both.
source§impl CodeReviewType
impl CodeReviewType
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CodeReviewType
.
Trait Implementations§
source§impl Clone for CodeReviewType
impl Clone for CodeReviewType
source§fn clone(&self) -> CodeReviewType
fn clone(&self) -> CodeReviewType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CodeReviewType
impl Debug for CodeReviewType
source§impl PartialEq<CodeReviewType> for CodeReviewType
impl PartialEq<CodeReviewType> for CodeReviewType
source§fn eq(&self, other: &CodeReviewType) -> bool
fn eq(&self, other: &CodeReviewType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.