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

AggregationFunction

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

An aggregation function aggregates values from a dimension or measure.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

interface AggregationFunction {
CategoricalAggregationFunction?: CategoricalAggregationFunction | null;
DateAggregationFunction?: DateAggregationFunction | null;
NumericalAggregationFunction?: NumericalAggregationFunction | null;
}

§Properties

§
CategoricalAggregationFunction?: CategoricalAggregationFunction | null
[src]

Aggregation for categorical values.

  • COUNT: Aggregate by the total number of values, including duplicates.
  • DISTINCT_COUNT: Aggregate by the total number of distinct values.
§
DateAggregationFunction?: DateAggregationFunction | null
[src]

Aggregation for date values.

  • COUNT: Aggregate by the total number of values, including duplicates.
  • DISTINCT_COUNT: Aggregate by the total number of distinct values.
  • MIN: Select the smallest date value.
  • MAX: Select the largest date value.
§
NumericalAggregationFunction?: NumericalAggregationFunction | null
[src]

Aggregation for numerical values.