Struct aws_sdk_codegurureviewer::model::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
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
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for SourceCodeType
impl Debug for SourceCodeType
sourceimpl PartialEq<SourceCodeType> for SourceCodeType
impl PartialEq<SourceCodeType> for SourceCodeType
sourcefn eq(&self, other: &SourceCodeType) -> bool
fn eq(&self, other: &SourceCodeType) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &SourceCodeType) -> bool
fn ne(&self, other: &SourceCodeType) -> bool
This method tests for !=.
impl StructuralPartialEq for SourceCodeType
Auto Trait Implementations
impl RefUnwindSafe for SourceCodeType
impl Send for SourceCodeType
impl Sync for SourceCodeType
impl Unpin for SourceCodeType
impl UnwindSafe for SourceCodeType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more