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

PutQueryDefinitionRequest

import type { PutQueryDefinitionRequest } from "https://aws-api.deno.dev/v0.3/services/cloudwatchlogs.ts?docs=full";
interface PutQueryDefinitionRequest {
logGroupNames?: string[] | null;
name: string;
queryDefinitionId?: string | null;
queryString: string;
}

§Properties

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

Use this parameter to include specific log groups as part of your query definition.

If you are updating a query definition and you omit this parameter, then the updated definition will contain no log groups.

§
name: string
[src]

A name for the query definition. If you are saving a lot of query definitions, we recommend that you name them so that you can easily find the ones you want by using the first part of the name as a filter in the queryDefinitionNamePrefix parameter of DescribeQueryDefinitions.

§
queryDefinitionId?: string | null
[src]

If you are updating a query definition, use this parameter to specify the ID of the query definition that you want to update. You can use DescribeQueryDefinitions to retrieve the IDs of your saved query definitions.

If you are creating a query definition, do not specify this parameter. CloudWatch generates a unique ID for the new query definition and include it in the response to this operation.

§
queryString: string
[src]

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