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

SetRepositoryPolicyRequest

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

§Properties

§
force?: boolean | null
[src]

If the policy you are attempting to set on a repository policy would prevent you from setting another policy in the future, you must force the "SetRepositoryPolicy" operation. This is intended to prevent accidental repository lock outs.

§
policyText: string
[src]

The JSON repository policy text to apply to the repository. For more information, see Amazon ECR repository policies in the Amazon Elastic Container Registry User Guide.

§
registryId?: string | null
[src]

The Amazon Web Services account ID associated with the registry that contains the repository. If you do not specify a registry, the default registry is assumed.

§
repositoryName: string
[src]

The name of the repository to receive the policy.