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

CustomParameterValues

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

The customized parameter values.

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

interface CustomParameterValues {
DateTimeValues?: (Date | number)[] | null;
DecimalValues?: number[] | null;
IntegerValues?: number[] | null;
StringValues?: string[] | null;
}

§Properties

§
DateTimeValues?: (Date | number)[] | null
[src]

A list of datetime-type parameter values.

§
DecimalValues?: number[] | null
[src]

A list of decimal-type parameter values.

§
IntegerValues?: number[] | null
[src]

A list of integer-type parameter values.

§
StringValues?: string[] | null
[src]

A list of string-type parameter values.