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

OutputLogEvent

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

Represents a log event.

interface OutputLogEvent {
ingestionTime?: number | null;
message?: string | null;
timestamp?: number | null;
}

§Properties

§
ingestionTime?: number | null
[src]

The time the event was ingested, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.

§
message?: string | null
[src]

The data contained in the log event.

§
timestamp?: number | null
[src]

The time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.