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

GetLogEventsRequest

import type { GetLogEventsRequest } from "https://aws-api.deno.dev/v0.3/services/cloudwatchlogs.ts?docs=full";
interface GetLogEventsRequest {
endTime?: number | null;
limit?: number | null;
logGroupName: string;
logStreamName: string;
nextToken?: string | null;
startFromHead?: boolean | null;
startTime?: number | null;
}

§Properties

§
endTime?: number | null
[src]

The end of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp equal to or later than this time are not included.

§
limit?: number | null
[src]

The maximum number of log events returned. If you don't specify a value, the maximum is as many log events as can fit in a response size of 1 MB, up to 10,000 log events.

§
logGroupName: string
[src]

The name of the log group.

§
logStreamName: string
[src]

The name of the log stream.

§
nextToken?: string | null
[src]

The token for the next set of items to return. (You received this token from a previous call.)

§
startFromHead?: boolean | null
[src]

If the value is true, the earliest log events are returned first. If the value is false, the latest log events are returned first. The default value is false.

If you are using a previous nextForwardToken value as the nextToken in this operation, you must specify true for startFromHead.

§
startTime?: number | null
[src]

The start of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp equal to this time or later than this time are included. Events with a timestamp earlier than this time are not included.