Struct aws_sdk_codegurureviewer::model::RepositoryAssociation[][src]

#[non_exhaustive]
pub struct RepositoryAssociation { pub association_id: Option<String>, pub association_arn: Option<String>, pub connection_arn: Option<String>, pub name: Option<String>, pub owner: Option<String>, pub provider_type: Option<ProviderType>, pub state: Option<RepositoryAssociationState>, pub state_reason: Option<String>, pub last_updated_time_stamp: Option<Instant>, pub created_time_stamp: Option<Instant>, pub kms_key_details: Option<KmsKeyDetails>, pub s3_repository_details: Option<S3RepositoryDetails>, }
Expand description

Information about a repository association. The DescribeRepositoryAssociation operation returns a RepositoryAssociation object.

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.
association_id: Option<String>

The ID of the repository association.

association_arn: Option<String>

The Amazon Resource Name (ARN) identifying the repository association.

connection_arn: Option<String>

The Amazon Resource Name (ARN) of an Amazon Web Services CodeStar Connections connection. Its format is arn:aws:codestar-connections:region-id:aws-account_id:connection/connection-id. For more information, see Connection in the Amazon Web Services CodeStar Connections API Reference.

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<RepositoryAssociationState>

The state of the repository association.

The valid repository association states are:

  • Associated: The repository association is complete.

  • Associating: CodeGuru Reviewer is:

    • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

      If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.

    • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

  • Failed: The repository failed to associate or disassociate.

  • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

  • Disassociated: CodeGuru Reviewer successfully disassociated the repository. You can create a new association with this repository if you want to review source code in it later. You can control access to code reviews created in an associated repository with tags after it has been disassociated. For more information, see Using tags to control access to associated repositories in the Amazon CodeGuru Reviewer User Guide.

state_reason: Option<String>

A description of why the repository association is in the current state.

last_updated_time_stamp: Option<Instant>

The time, in milliseconds since the epoch, when the repository association was last updated.

created_time_stamp: Option<Instant>

The time, in milliseconds since the epoch, when the repository association was created.

kms_key_details: Option<KmsKeyDetails>

A KMSKeyDetails object that contains:

  • The encryption option for this repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).

  • The ID of the Amazon Web Services KMS key that is associated with this respository association.

s3_repository_details: Option<S3RepositoryDetails>

Specifies the name of an S3 bucket and a CodeArtifacts object that contains the S3 object keys for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

Implementations

Creates a new builder-style object to manufacture RepositoryAssociation

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