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

StopExperimentRequest

import type { StopExperimentRequest } from "https://aws-api.deno.dev/v0.3/services/evidently.ts?docs=full";
interface StopExperimentRequest {
desiredState?: ExperimentStopDesiredState | null;
experiment: string;
project: string;
reason?: string | null;
}

§Properties

§
desiredState?: ExperimentStopDesiredState | null
[src]

Specify whether the experiment is to be considered COMPLETED or CANCELLED after it stops.

§
experiment: string
[src]

The name of the experiment to stop.

§
project: string
[src]

The name or ARN of the project that contains the experiment to stop.

§
reason?: string | null
[src]

A string that describes why you are stopping the experiment.