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

GetLogEventsResponse

import type { GetLogEventsResponse } from "https://aws-api.deno.dev/v0.3/services/cloudwatchlogs.ts?docs=full";
interface GetLogEventsResponse {
events?: OutputLogEvent[] | null;
nextBackwardToken?: string | null;
nextForwardToken?: string | null;
}

§Properties

§
events?: OutputLogEvent[] | null
[src]

The events.

§
nextBackwardToken?: string | null
[src]

The token for the next set of items in the backward direction. The token expires after 24 hours. This token is never null. If you have reached the end of the stream, it returns the same token you passed in.

§
nextForwardToken?: string | null
[src]

The token for the next set of items in the forward direction. The token expires after 24 hours. If you have reached the end of the stream, it returns the same token you passed in.