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

CanaryTimeline

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

This structure contains information about when the canary was created and modified.

interface CanaryTimeline {
Created?: Date | number | null;
LastModified?: Date | number | null;
LastStarted?: Date | number | null;
LastStopped?: Date | number | null;
}

§Properties

§
Created?: Date | number | null
[src]

The date and time the canary was created.

§
LastModified?: Date | number | null
[src]

The date and time the canary was most recently modified.

§
LastStarted?: Date | number | null
[src]

The date and time that the canary's most recent run started.

§
LastStopped?: Date | number | null
[src]

The date and time that the canary's most recent run ended.