Struct aws_sdk_codegurureviewer::model::CodeReviewSummary[][src]

#[non_exhaustive]
pub struct CodeReviewSummary { pub name: Option<String>, pub code_review_arn: Option<String>, pub repository_name: Option<String>, pub owner: Option<String>, pub provider_type: Option<ProviderType>, pub state: Option<JobState>, pub created_time_stamp: Option<Instant>, pub last_updated_time_stamp: Option<Instant>, pub type: Option<Type>, pub pull_request_id: Option<String>, pub metrics_summary: Option<MetricsSummary>, pub source_code_type: Option<SourceCodeType>, }
Expand description

Information about the summary of the code review.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
name: Option<String>

The name of the code review.

code_review_arn: Option<String>

The Amazon Resource Name (ARN) of the CodeReview object.

repository_name: Option<String>

The name of the repository.

owner: Option<String>

The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, it can be the username or Amazon Web Services account ID.

provider_type: Option<ProviderType>

The provider type of the repository association.

state: Option<JobState>

The state of the code review.

The valid code review states are:

  • Completed: The code review is complete.

  • Pending: The code review started and has not completed or failed.

  • Failed: The code review failed.

  • Deleting: The code review is being deleted.

created_time_stamp: Option<Instant>

The time, in milliseconds since the epoch, when the code review was created.

last_updated_time_stamp: Option<Instant>

The time, in milliseconds since the epoch, when the code review was last updated.

type: Option<Type>

The type of the code review.

pull_request_id: Option<String>

The pull request ID for the code review.

metrics_summary: Option<MetricsSummary>

The statistics from the code review.

source_code_type: Option<SourceCodeType>

Specifies the source code that is analyzed in a code review.

Implementations

Creates a new builder-style object to manufacture CodeReviewSummary

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more