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

Experiment

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

Describes an experiment.

interface Experiment {
actions?: {
[key: string]: ExperimentAction | null | undefined;
}
| null;
creationTime?: Date | number | null;
endTime?: Date | number | null;
experimentTemplateId?: string | null;
id?: string | null;
roleArn?: string | null;
startTime?: Date | number | null;
state?: ExperimentState | null;
stopConditions?: ExperimentStopCondition[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
targets?: {
[key: string]: ExperimentTarget | null | undefined;
}
| null;
}

§Properties

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

The actions for the experiment.

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

The time the experiment was created.

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

The time that the experiment ended.

§
experimentTemplateId?: string | null
[src]

The ID of the experiment template.

§
id?: string | null
[src]

The ID of the experiment.

§
roleArn?: string | null
[src]

The Amazon Resource Name (ARN) of an IAM role that grants the AWS FIS service permission to perform service actions on your behalf.

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

The time that the experiment was started.

§
state?: ExperimentState | null
[src]

The state of the experiment.

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

The stop conditions for the experiment.

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

The tags for the experiment.

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

The targets for the experiment.