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

EventDimensions

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

Specifies the dimensions for an event filter that determines when a campaign is sent or a journey activity is performed.

interface EventDimensions {
Attributes?: {
[key: string]: AttributeDimension | null | undefined;
}
| null;
EventType?: SetDimension | null;
Metrics?: {
[key: string]: MetricDimension | null | undefined;
}
| null;
}

§Properties

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

One or more custom attributes that your application reports to Amazon Pinpoint. You can use these attributes as selection criteria when you create an event filter.

§
EventType?: SetDimension | null
[src]

The name of the event that causes the campaign to be sent or the journey activity to be performed. This can be a standard event that Amazon Pinpoint generates, such as _email.delivered. For campaigns, this can also be a custom event that's specific to your application. For information about standard events, see Streaming Amazon Pinpoint Events in the Amazon Pinpoint Developer Guide.

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

One or more custom metrics that your application reports to Amazon Pinpoint. You can use these metrics as selection criteria when you create an event filter.