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

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) identifying the repository connection.

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.

provider_type: Option<String>

The provider type of the repository association.

state: Option<String>

The state of the repository association.

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, 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> Sealed<T> for T where
    T: ?Sized

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.