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

CanaryRun

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

This structure contains the details about one run of one canary.

interface CanaryRun {
ArtifactS3Location?: string | null;
Id?: string | null;
Name?: string | null;
Status?: CanaryRunStatus | null;
Timeline?: CanaryRunTimeline | null;
}

§Properties

§
ArtifactS3Location?: string | null
[src]

The location where the canary stored artifacts from the run. Artifacts include the log file, screenshots, and HAR files.

§
Id?: string | null
[src]

A unique ID that identifies this canary run.

§
Name?: string | null
[src]

The name of the canary.

§
Status?: CanaryRunStatus | null
[src]

The status of this run.

§
Timeline?: CanaryRunTimeline | null
[src]

A structure that contains the start and end times of this run.