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

AwsEcrContainerImageDetails

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

The image details of the Amazon ECR container image.

interface AwsEcrContainerImageDetails {
architecture?: string | null;
author?: string | null;
imageHash?: string | null;
imageTags?: string[] | null;
platform?: string | null;
pushedAt?: Date | number | null;
registry?: string | null;
repositoryName?: string | null;
}

§Properties

§
architecture?: string | null
[src]

The architecture of the Amazon ECR container image.

§
author?: string | null
[src]

The image author of the Amazon ECR container image.

§
imageHash?: string | null
[src]

The image hash of the Amazon ECR container image.

§
imageTags?: string[] | null
[src]

The image tags attached to the Amazon ECR container image.

§
platform?: string | null
[src]

The platform of the Amazon ECR container image.

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

The date and time the Amazon ECR container image was pushed.

§
registry?: string | null
[src]

The registry the Amazon ECR container image belongs to.

§
repositoryName?: string | null
[src]

The name of the repository the Amazon ECR container image resides in.