[][src]Struct rusoto_codeguru_reviewer::RepositoryAssociationSummary

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

Summary information about a repository association. The ListRepositoryAssociations operation returns a list of RepositoryAssociationSummary objects.

Fields

association_arn: Option<String>

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

association_id: Option<String>

The repository association ID.

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.

last_updated_time_stamp: Option<f64>

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

name: Option<String>

The name of the repository association.

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.

Trait Implementations

impl Clone for RepositoryAssociationSummary[src]

impl Debug for RepositoryAssociationSummary[src]

impl Default for RepositoryAssociationSummary[src]

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

impl PartialEq<RepositoryAssociationSummary> for RepositoryAssociationSummary[src]

impl StructuralPartialEq for RepositoryAssociationSummary[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.