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

PutImageTagMutabilityRequest

import type { PutImageTagMutabilityRequest } from "https://aws-api.deno.dev/v0.3/services/ecr.ts?docs=full";
interface PutImageTagMutabilityRequest {
imageTagMutability: ImageTagMutability;
registryId?: string | null;
repositoryName: string;
}

§Properties

§
imageTagMutability: ImageTagMutability
[src]

The tag mutability setting for the repository. If MUTABLE is specified, image tags can be overwritten. If IMMUTABLE is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.

§
registryId?: string | null
[src]

The Amazon Web Services account ID associated with the registry that contains the repository in which to update the image tag mutability settings. If you do not specify a registry, the default registry is assumed.

§
repositoryName: string
[src]

The name of the repository in which to update the image tag mutability settings.