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

ResultField

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

Contains one field from one log event returned by a CloudWatch Logs Insights query, along with the value of that field.

For more information about the fields that are generated by CloudWatch logs, see Supported Logs and Discovered Fields.

interface ResultField {
field?: string | null;
value?: string | null;
}

§Properties

§
field?: string | null
[src]

The log event field.

§
value?: string | null
[src]

The value of this field.