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

SetDimension

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

Specifies the dimension type and values for a segment dimension.

interface SetDimension {
DimensionType?: DimensionType | null;
Values: string[];
}

§Properties

§
DimensionType?: DimensionType | null
[src]

The type of segment dimension to use. Valid values are: INCLUSIVE, endpoints that match the criteria are included in the segment; and, EXCLUSIVE, endpoints that match the criteria are excluded from the segment.

§
Values: string[]
[src]

The criteria values to use for the segment dimension. Depending on the value of the DimensionType property, endpoints are included or excluded from the segment if their values match the criteria values.