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
sourceimpl 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.
sourceimpl SourceCodeType
impl SourceCodeType
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SourceCodeType.
Trait Implementations
sourceimpl Clone for SourceCodeType
impl Clone for SourceCodeType
sourcefn clone(&self) -> SourceCodeType
fn clone(&self) -> SourceCodeType
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more