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

ImageTestsConfiguration

import type { ImageTestsConfiguration } from "https://aws-api.deno.dev/v0.3/services/imagebuilder.ts?docs=full";

Configure image tests for your pipeline build. Tests run after building the image, to verify that the AMI or container image is valid before distributing it.

interface ImageTestsConfiguration {
imageTestsEnabled?: boolean | null;
timeoutMinutes?: number | null;
}

§Properties

§
imageTestsEnabled?: boolean | null
[src]

Determines if tests should run after building the image. Image Builder defaults to enable tests to run following the image build, before image distribution.

§
timeoutMinutes?: number | null
[src]

The maximum time in minutes that tests are permitted to run.