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

LookupEventsResponse

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

Contains a response to a LookupEvents action.

interface LookupEventsResponse {
Events?: Event[] | null;
NextToken?: string | null;
}

§Properties

§
Events?: Event[] | null
[src]

A list of events returned based on the lookup attributes specified and the CloudTrail event. The events list is sorted by time. The most recent event is listed first.

§
NextToken?: string | null
[src]

The token to use to get the next page of results after a previous API call. If the token does not appear, there are no more results to return. The token must be passed in with the same parameters as the previous call. For example, if the original call specified an AttributeKey of 'Username' with a value of 'root', the call with NextToken should include those same parameters.