[][src]Struct rusoto_codeguru_reviewer::RepositoryAssociation

pub struct RepositoryAssociation {
    pub association_arn: Option<String>,
    pub association_id: Option<String>,
    pub connection_arn: Option<String>,
    pub created_time_stamp: Option<f64>,
    pub last_updated_time_stamp: Option<f64>,
    pub name: Option<String>,
    pub owner: Option<String>,
    pub provider_type: Option<String>,
    pub state: Option<String>,
    pub state_reason: Option<String>,
}

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

Fields

association_arn: Option<String>

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

association_id: Option<String>

The ID of the repository association.

connection_arn: Option<String>

The Amazon Resource Name (ARN) of an AWS 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 AWS CodeStar Connections API Reference.

created_time_stamp: Option<f64>

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

last_updated_time_stamp: Option<f64>

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

name: Option<String>

The name of the repository.

owner: Option<String>

The owner of the repository. For an AWS CodeCommit repository, this is the AWS account ID of the account that owns the repository. For a GitHub or Bitbucket repository, this is the username for the account that owns the repository.

provider_type: Option<String>

The provider type of the repository association.

state: Option<String>

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

state_reason: Option<String>

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

Trait Implementations

impl Clone for RepositoryAssociation[src]

impl Debug for RepositoryAssociation[src]

impl Default for RepositoryAssociation[src]

impl<'de> Deserialize<'de> for RepositoryAssociation[src]

impl PartialEq<RepositoryAssociation> for RepositoryAssociation[src]

impl StructuralPartialEq for RepositoryAssociation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.