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

ForecastComputation

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

The forecast computation configuration.

interface ForecastComputation {
ComputationId: string;
CustomSeasonalityValue?: number | null;
LowerBoundary?: number | null;
Name?: string | null;
PeriodsBackward?: number | null;
PeriodsForward?: number | null;
PredictionInterval?: number | null;
Seasonality?: ForecastComputationSeasonality | null;
UpperBoundary?: number | null;
Value?: MeasureField | null;
}

§Properties

§
ComputationId: string
[src]

The ID for a computation.

§
CustomSeasonalityValue?: number | null
[src]

The custom seasonality value setup of a forecast computation.

§
LowerBoundary?: number | null
[src]

The lower boundary setup of a forecast computation.

§
Name?: string | null
[src]

The name of a computation.

§
PeriodsBackward?: number | null
[src]

The periods backward setup of a forecast computation.

§
PeriodsForward?: number | null
[src]

The periods forward setup of a forecast computation.

§
PredictionInterval?: number | null
[src]

The prediction interval setup of a forecast computation.

§

The seasonality setup of a forecast computation. Choose one of the following options:

  • AUTOMATIC
    
  • CUSTOM: Checks the custom seasonality value.
§

The time field that is used in a computation.

§
UpperBoundary?: number | null
[src]

The upper boundary setup of a forecast computation.

§
Value?: MeasureField | null
[src]

The value field that is used in a computation.