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

RepositoryScanningConfiguration

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

The details of the scanning configuration for a repository.

interface RepositoryScanningConfiguration {
appliedScanFilters?: ScanningRepositoryFilter[] | null;
repositoryArn?: string | null;
repositoryName?: string | null;
scanFrequency?: ScanFrequency | null;
scanOnPush?: boolean | null;
}

§Properties

§
appliedScanFilters?: ScanningRepositoryFilter[] | null
[src]

The scan filters applied to the repository.

§
repositoryArn?: string | null
[src]

The ARN of the repository.

§
repositoryName?: string | null
[src]

The name of the repository.

§
scanFrequency?: ScanFrequency | null
[src]

The scan frequency for the repository.

§
scanOnPush?: boolean | null
[src]

Whether or not scan on push is configured for the repository.