[][src]Struct rusoto_ecr::Repository

pub struct Repository {
    pub created_at: Option<f64>,
    pub image_scanning_configuration: Option<ImageScanningConfiguration>,
    pub image_tag_mutability: Option<String>,
    pub registry_id: Option<String>,
    pub repository_arn: Option<String>,
    pub repository_name: Option<String>,
    pub repository_uri: Option<String>,
}

An object representing a repository.

Fields

created_at: Option<f64>

The date and time, in JavaScript date format, when the repository was created.

image_scanning_configuration: Option<ImageScanningConfiguration>image_tag_mutability: Option<String>

The tag mutability setting for the repository.

registry_id: Option<String>

The AWS account ID associated with the registry that contains the repository.

repository_arn: Option<String>

The Amazon Resource Name (ARN) that identifies the repository. The ARN contains the arn:aws:ecr namespace, followed by the region of the repository, AWS account ID of the repository owner, repository namespace, and repository name. For example, arn:aws:ecr:region:012345678910:repository/test.

repository_name: Option<String>

The name of the repository.

repository_uri: Option<String>

The URI for the repository. You can use this URI for Docker push or pull operations.

Trait Implementations

impl Clone for Repository[src]

impl Debug for Repository[src]

impl Default for Repository[src]

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

impl PartialEq<Repository> for Repository[src]

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