Struct aws_sdk_codegurureviewer::types::SourceCodeType
source · #[non_exhaustive]pub struct SourceCodeType {
pub commit_diff: Option<CommitDiffSourceCodeType>,
pub repository_head: Option<RepositoryHeadSourceCodeType>,
pub branch_diff: Option<BranchDiffSourceCodeType>,
pub s3_bucket_repository: Option<S3BucketRepository>,
pub request_metadata: Option<RequestMetadata>,
}
Expand description
Specifies the source code that is analyzed in a code review.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.commit_diff: Option<CommitDiffSourceCodeType>
A SourceCodeType that specifies a commit diff created by a pull request on an associated repository.
repository_head: Option<RepositoryHeadSourceCodeType>
A SourceCodeType that specifies the tip of a branch in an associated repository.
branch_diff: Option<BranchDiffSourceCodeType>
A type of SourceCodeType that specifies a source branch name and a destination branch name in an associated repository.
s3_bucket_repository: 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.
request_metadata: 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.
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() -> SourceCodeTypeBuilder
pub fn builder() -> SourceCodeTypeBuilder
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 for SourceCodeType
impl PartialEq 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 ==
.impl StructuralPartialEq for SourceCodeType
Auto Trait Implementations§
impl Freeze for SourceCodeType
impl RefUnwindSafe for SourceCodeType
impl Send for SourceCodeType
impl Sync for SourceCodeType
impl Unpin for SourceCodeType
impl UnwindSafe for SourceCodeType
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more