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

ExperimentAction

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

Describes the action for an experiment.

interface ExperimentAction {
actionId?: string | null;
description?: string | null;
endTime?: Date | number | null;
parameters?: {
[key: string]: string | null | undefined;
}
| null;
startAfter?: string[] | null;
startTime?: Date | number | null;
state?: ExperimentActionState | null;
targets?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
actionId?: string | null
[src]

The ID of the action.

§
description?: string | null
[src]

The description for the action.

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

The time that the action ended.

§
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 this action starts.

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

The time that the action started.

§

The state of the action.

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

The targets for the action.