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

EventsResponse

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

Provides information about endpoints and the events that they're associated with.

interface EventsResponse {
Results?: {
[key: string]: ItemResponse | null | undefined;
}
| null;
}

§Properties

§
Results?: {
[key: string]: ItemResponse | null | undefined;
}
| null
[src]

A map that contains a multipart response for each endpoint. For each item in this object, the endpoint ID is the key and the item response is the value. If no item response exists, the value can also be one of the following: 202, the request was processed successfully; or 400, the payload wasn't valid or required fields were missing.