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

VisualReferenceOutput

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

If this canary performs visual monitoring by comparing screenshots, this structure contains the ID of the canary run that is used as the baseline for screenshots, and the coordinates of any parts of those screenshots that are ignored during visual monitoring comparison.

Visual monitoring is supported only on canaries running the syn-puppeteer-node-3.2 runtime or later.

interface VisualReferenceOutput {
BaseCanaryRunId?: string | null;
BaseScreenshots?: BaseScreenshot[] | null;
}

§Properties

§
BaseCanaryRunId?: string | null
[src]

The ID of the canary run that produced the baseline screenshots that are used for visual monitoring comparisons by this canary.

§
BaseScreenshots?: BaseScreenshot[] | null
[src]

An array of screenshots that are used as the baseline for comparisons during visual monitoring.