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

LogStream

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

Represents a log stream, which is a sequence of log events from a single emitter of logs.

interface LogStream {
arn?: string | null;
creationTime?: number | null;
firstEventTimestamp?: number | null;
lastEventTimestamp?: number | null;
lastIngestionTime?: number | null;
logStreamName?: string | null;
storedBytes?: number | null;
uploadSequenceToken?: string | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the log stream.

§
creationTime?: number | null
[src]

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

§
firstEventTimestamp?: number | null
[src]

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

§
lastEventTimestamp?: number | null
[src]

The time of the most recent log event in the log stream in CloudWatch Logs. This number is expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. The lastEventTime value updates on an eventual consistency basis. It typically updates in less than an hour from ingestion, but in rare situations might take longer.

§
lastIngestionTime?: number | null
[src]

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

§
logStreamName?: string | null
[src]

The name of the log stream.

§
storedBytes?: number | null
[src]

The number of bytes stored.

Important: On June 17, 2019, this parameter was deprecated for log streams, and is always reported as zero. This change applies only to log streams. The storedBytes parameter for log groups is not affected.

§
uploadSequenceToken?: string | null
[src]

The sequence token.