#[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<DateTime>,
pub created_time_stamp: Option<DateTime>,
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
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
isGitHub
,GitHub Enterprise Server
, orBitbucket
, 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 anassociated 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<DateTime>
The time, in milliseconds since the epoch, when the repository association was last updated.
created_time_stamp: Option<DateTime>
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 repository 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§
source§impl RepositoryAssociation
impl RepositoryAssociation
sourcepub fn association_id(&self) -> Option<&str>
pub fn association_id(&self) -> Option<&str>
The ID of the repository association.
sourcepub fn association_arn(&self) -> Option<&str>
pub fn association_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) identifying the repository association.
sourcepub fn connection_arn(&self) -> Option<&str>
pub fn connection_arn(&self) -> Option<&str>
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.
sourcepub fn owner(&self) -> Option<&str>
pub fn owner(&self) -> Option<&str>
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.
sourcepub fn provider_type(&self) -> Option<&ProviderType>
pub fn provider_type(&self) -> Option<&ProviderType>
The provider type of the repository association.
sourcepub fn state(&self) -> Option<&RepositoryAssociationState>
pub fn state(&self) -> 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
isGitHub
,GitHub Enterprise Server
, orBitbucket
, 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 anassociated 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.
sourcepub fn state_reason(&self) -> Option<&str>
pub fn state_reason(&self) -> Option<&str>
A description of why the repository association is in the current state.
sourcepub fn last_updated_time_stamp(&self) -> Option<&DateTime>
pub fn last_updated_time_stamp(&self) -> Option<&DateTime>
The time, in milliseconds since the epoch, when the repository association was last updated.
sourcepub fn created_time_stamp(&self) -> Option<&DateTime>
pub fn created_time_stamp(&self) -> Option<&DateTime>
The time, in milliseconds since the epoch, when the repository association was created.
sourcepub fn kms_key_details(&self) -> Option<&KmsKeyDetails>
pub fn kms_key_details(&self) -> 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 repository association.
sourcepub fn s3_repository_details(&self) -> Option<&S3RepositoryDetails>
pub fn s3_repository_details(&self) -> 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.
source§impl RepositoryAssociation
impl RepositoryAssociation
sourcepub fn builder() -> RepositoryAssociationBuilder
pub fn builder() -> RepositoryAssociationBuilder
Creates a new builder-style object to manufacture RepositoryAssociation
.
Trait Implementations§
source§impl Clone for RepositoryAssociation
impl Clone for RepositoryAssociation
source§fn clone(&self) -> RepositoryAssociation
fn clone(&self) -> RepositoryAssociation
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RepositoryAssociation
impl Debug for RepositoryAssociation
source§impl PartialEq for RepositoryAssociation
impl PartialEq for RepositoryAssociation
source§fn eq(&self, other: &RepositoryAssociation) -> bool
fn eq(&self, other: &RepositoryAssociation) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RepositoryAssociation
Auto Trait Implementations§
impl Freeze for RepositoryAssociation
impl RefUnwindSafe for RepositoryAssociation
impl Send for RepositoryAssociation
impl Sync for RepositoryAssociation
impl Unpin for RepositoryAssociation
impl UnwindSafe for RepositoryAssociation
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