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

ImageScanningConfiguration

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

The image scanning configuration for a repository.

interface ImageScanningConfiguration {
scanOnPush?: boolean | null;
}

§Properties

§
scanOnPush?: boolean | null
[src]

The setting that determines whether images are scanned after being pushed to a repository. If set to true, images will be scanned after being pushed. If this parameter is not specified, it will default to false and images will not be scanned unless a scan is manually started with the API_StartImageScan API.