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

EventTracker

import type { EventTracker } from "https://aws-api.deno.dev/v0.3/services/personalize.ts?docs=full";

Provides information about an event tracker.

interface EventTracker {
accountId?: string | null;
creationDateTime?: Date | number | null;
datasetGroupArn?: string | null;
eventTrackerArn?: string | null;
lastUpdatedDateTime?: Date | number | null;
name?: string | null;
status?: string | null;
trackingId?: string | null;
}

§Properties

§
accountId?: string | null
[src]

The Amazon Web Services account that owns the event tracker.

§
creationDateTime?: Date | number | null
[src]

The date and time (in Unix format) that the event tracker was created.

§
datasetGroupArn?: string | null
[src]

The Amazon Resource Name (ARN) of the dataset group that receives the event data.

§
eventTrackerArn?: string | null
[src]

The ARN of the event tracker.

§
lastUpdatedDateTime?: Date | number | null
[src]

The date and time (in Unix time) that the event tracker was last updated.

§
name?: string | null
[src]

The name of the event tracker.

§
status?: string | null
[src]

The status of the event tracker.

An event tracker can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
  • DELETE PENDING > DELETE IN_PROGRESS
§
trackingId?: string | null
[src]

The ID of the event tracker. Include this ID in requests to the PutEvents API.