Struct rusoto_ecr::Repository [] [src]

pub struct Repository {
    pub created_at: Option<f64>,
    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

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

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

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

The name of the repository.

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

Trait Implementations

impl Default for Repository
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for Repository
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Repository
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Repository

impl Sync for Repository