Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Repository

import type { Repository } from "https://aws-api.deno.dev/v0.4/services/ecr.ts?docs=full";

An object representing a repository.

interface Repository {
createdAt?: Date | number | null;
encryptionConfiguration?: EncryptionConfiguration | null;
imageScanningConfiguration?: ImageScanningConfiguration | null;
imageTagMutability?: ImageTagMutability | null;
registryId?: string | null;
repositoryArn?: string | null;
repositoryName?: string | null;
repositoryUri?: string | null;
}

§Properties

§
createdAt?: Date | number | null
[src]

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

§
encryptionConfiguration?: EncryptionConfiguration | null
[src]

The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.

§
imageScanningConfiguration?: ImageScanningConfiguration | null
[src]
§
imageTagMutability?: ImageTagMutability | null
[src]

The tag mutability setting for the repository.

§
registryId?: string | null
[src]

The Amazon Web Services account ID associated with the registry that contains the repository.

§
repositoryArn?: string | null
[src]

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

§
repositoryName?: string | null
[src]

The name of the repository.

§
repositoryUri?: string | null
[src]

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