Struct aws_sdk_codegurureviewer::model::SourceCodeType
source · #[non_exhaustive]pub struct SourceCodeType { /* private fields */ }
Expand description
Specifies the source code that is analyzed in a code review.
Implementations§
source§impl SourceCodeType
impl SourceCodeType
sourcepub fn commit_diff(&self) -> Option<&CommitDiffSourceCodeType>
pub fn commit_diff(&self) -> Option<&CommitDiffSourceCodeType>
A SourceCodeType that specifies a commit diff created by a pull request on an associated repository.
sourcepub fn repository_head(&self) -> Option<&RepositoryHeadSourceCodeType>
pub fn repository_head(&self) -> Option<&RepositoryHeadSourceCodeType>
A SourceCodeType that specifies the tip of a branch in an associated repository.
sourcepub fn branch_diff(&self) -> Option<&BranchDiffSourceCodeType>
pub fn branch_diff(&self) -> Option<&BranchDiffSourceCodeType>
A type of SourceCodeType that specifies a source branch name and a destination branch name in an associated repository.
sourcepub fn s3_bucket_repository(&self) -> Option<&S3BucketRepository>
pub fn s3_bucket_repository(&self) -> Option<&S3BucketRepository>
Information about an associated repository in an S3 bucket that includes its name and an S3RepositoryDetails
object. The S3RepositoryDetails
object includes the name of an S3 bucket, an S3 key for a source code .zip file, and an S3 key for a build artifacts .zip file. S3BucketRepository
is required in SourceCodeType for S3BucketRepository
based code reviews.
sourcepub fn request_metadata(&self) -> Option<&RequestMetadata>
pub fn request_metadata(&self) -> Option<&RequestMetadata>
Metadata that is associated with a code review. This applies to any type of code review supported by CodeGuru Reviewer. The RequestMetadaa
field captures any event metadata. For example, it might capture metadata associated with an event trigger, such as a push or a pull request.
source§impl SourceCodeType
impl SourceCodeType
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SourceCodeType
.
Trait Implementations§
source§impl Clone for SourceCodeType
impl Clone for SourceCodeType
source§fn clone(&self) -> SourceCodeType
fn clone(&self) -> SourceCodeType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SourceCodeType
impl Debug for SourceCodeType
source§impl PartialEq<SourceCodeType> for SourceCodeType
impl PartialEq<SourceCodeType> for SourceCodeType
source§fn eq(&self, other: &SourceCodeType) -> bool
fn eq(&self, other: &SourceCodeType) -> bool
self
and other
values to be equal, and is used
by ==
.