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

RepositoryFilter

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

The filter settings used with image replication. Specifying a repository filter to a replication rule provides a method for controlling which repositories in a private registry are replicated. If no repository filter is specified, all images in the repository are replicated.

interface RepositoryFilter {
filter: string;
}

§Properties

§
filter: string
[src]

The repository filter details. When the PREFIX_MATCH filter type is specified, this value is required and should be the repository name prefix to configure replication for.

§

The repository filter type. The only supported value is PREFIX_MATCH, which is a repository name prefix specified with the filter parameter.