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

QueryDefinition

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

This structure contains details about a saved CloudWatch Logs Insights query definition.

interface QueryDefinition {
lastModified?: number | null;
logGroupNames?: string[] | null;
name?: string | null;
queryDefinitionId?: string | null;
queryString?: string | null;
}

§Properties

§
lastModified?: number | null
[src]

The date that the query definition was most recently modified.

§
logGroupNames?: string[] | null
[src]

If this query definition contains a list of log groups that it is limited to, that list appears here.

§
name?: string | null
[src]

The name of the query definition.

§
queryDefinitionId?: string | null
[src]

The unique ID of the query definition.

§
queryString?: string | null
[src]

The query string to use for this definition. For more information, see CloudWatch Logs Insights Query Syntax.