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

CreateExperimentTemplateActionInput

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

Specifies an action for an experiment template.

For more information, see Actions in the Fault Injection Simulator User Guide.

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

§Properties

§
actionId: string
[src]

The ID of the action. The format of the action ID is: aws:service-name:action-type.

§
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.