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/securityhub.ts?docs=full";

Information about an Amazon ECR image.

interface AwsEcrContainerImageDetails {
Architecture?: string | null;
ImageDigest?: string | null;
ImagePublishedAt?: string | null;
ImageTags?: string[] | null;
RegistryId?: string | null;
RepositoryName?: string | null;
}

§Properties

§
Architecture?: string | null
[src]

The architecture of the image. Valid values are as follows:

  • arm64
    
  • i386
    
  • x86_64
    
§
ImageDigest?: string | null
[src]

The sha256 digest of the image manifest.

§
ImagePublishedAt?: string | null
[src]

The date and time when the image was pushed to the repository.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.

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

The list of tags that are associated with the image.

§
RegistryId?: string | null
[src]

The Amazon Web Services account identifier that is associated with the registry that the image belongs to.

§
RepositoryName?: string | null
[src]

The name of the repository that the image belongs to.