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

QueryInfo

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

Information about one CloudWatch Logs Insights query that matches the request in a DescribeQueries operation.

interface QueryInfo {
createTime?: number | null;
logGroupName?: string | null;
queryId?: string | null;
queryString?: string | null;
status?: QueryStatus | null;
}

§Properties

§
createTime?: number | null
[src]

The date and time that this query was created.

§
logGroupName?: string | null
[src]

The name of the log group scanned by this query.

§
queryId?: string | null
[src]

The unique ID number of this query.

§
queryString?: string | null
[src]

The query string used in this query.

§
status?: QueryStatus | null
[src]

The status of this query. Possible values are Cancelled, Complete, Failed, Running, Scheduled, and Unknown.