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

ExperimentTemplate

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

Describes an experiment template.

interface ExperimentTemplate {
actions?: {
[key: string]: ExperimentTemplateAction | null | undefined;
}
| null;
creationTime?: Date | number | null;
description?: string | null;
id?: string | null;
lastUpdateTime?: Date | number | null;
roleArn?: string | null;
stopConditions?: ExperimentTemplateStopCondition[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
targets?: {
[key: string]: ExperimentTemplateTarget | null | undefined;
}
| null;
}

§Properties

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

The actions for the experiment.

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

The time the experiment template was created.

§
description?: string | null
[src]

The description for the experiment template.

§
id?: string | null
[src]

The ID of the experiment template.

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

The time the experiment template was last updated.

§
roleArn?: string | null
[src]

The Amazon Resource Name (ARN) of an IAM role.

§
stopConditions?: ExperimentTemplateStopCondition[] | null
[src]

The stop conditions for the experiment.

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

The tags for the experiment template.

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

The targets for the experiment.