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

ExperimentTemplateAction

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

Describes an action for an experiment template.

interface ExperimentTemplateAction {
actionId?: string | null;
description?: string | null;
parameters?: {
[key: string]: string | null | undefined;
}
| null;
startAfter?: string[] | null;
targets?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
actionId?: string | null
[src]

The ID of the action.

§
description?: string | null
[src]

A description for the action.

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

The parameters for the action.

§
startAfter?: string[] | null
[src]

The name of the action that must be completed before the current action starts.

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

The targets for the action.