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

ExperimentSummary

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

Provides a summary of an experiment.

interface ExperimentSummary {
creationTime?: Date | number | null;
experimentTemplateId?: string | null;
id?: string | null;
state?: ExperimentState | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

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

The time that the experiment was created.

§
experimentTemplateId?: string | null
[src]

The ID of the experiment template.

§
id?: string | null
[src]

The ID of the experiment.

§
state?: ExperimentState | null
[src]

The state of the experiment.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags for the experiment.