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

UpdateExperimentTemplateActionInputItem

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

Specifies an action for an experiment template.

interface UpdateExperimentTemplateActionInputItem {
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, if applicable.

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

The name of the action that must be completed before the current action starts. Omit this parameter to run the action at the start of the experiment.

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

The targets for the action.