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

SegmentDimensions

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

Specifies the dimension settings for a segment.

interface SegmentDimensions {
Attributes?: {
[key: string]: AttributeDimension | null | undefined;
}
| null;
Behavior?: SegmentBehaviors | null;
Demographic?: SegmentDemographics | null;
Location?: SegmentLocation | null;
Metrics?: {
[key: string]: MetricDimension | null | undefined;
}
| null;
UserAttributes?: {
[key: string]: AttributeDimension | null | undefined;
}
| null;
}

§Properties

§
Attributes?: {
[key: string]: AttributeDimension | null | undefined;
}
| null
[src]

One or more custom attributes to use as criteria for the segment.

§
Behavior?: SegmentBehaviors | null
[src]

The behavior-based criteria, such as how recently users have used your app, for the segment.

§
Demographic?: SegmentDemographics | null
[src]

The demographic-based criteria, such as device platform, for the segment.

§
Location?: SegmentLocation | null
[src]

The location-based criteria, such as region or GPS coordinates, for the segment.

§
Metrics?: {
[key: string]: MetricDimension | null | undefined;
}
| null
[src]

One or more custom metrics to use as criteria for the segment.

§
UserAttributes?: {
[key: string]: AttributeDimension | null | undefined;
}
| null
[src]

One or more custom user attributes to use as criteria for the segment.