Creates or updates a query definition for CloudWatch Logs Insights. For more information, see Analyzing Log Data with CloudWatch Logs Insights.
See https://www.paws-r-sdk.com/docs/cloudwatchlogs_put_query_definition/ for full documentation.
cloudwatchlogs_put_query_definition(
queryLanguage = NULL,
name,
queryDefinitionId = NULL,
logGroupNames = NULL,
queryString,
clientToken = NULL
)
Specify the query language to use for this query. The options are Logs Insights QL, OpenSearch PPL, and OpenSearch SQL. For more information about the query languages that CloudWatch Logs supports, see Supported query languages.
[required] A name for the query definition. If you are saving numerous query
definitions, we recommend that you name them. This way, you can find the
ones you want by using the first part of the name as a filter in the
queryDefinitionNamePrefix
parameter of
describe_query_definitions
.
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
describe_query_definitions
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.
Use this parameter to include specific log groups as part of your query
definition. If your query uses the OpenSearch Service query language,
you specify the log group names inside the querystring
instead of
here.
If you are updating an existing query definition for the Logs Insights QL or OpenSearch Service PPL and you omit this parameter, then the updated definition will contain no log groups.
[required] The query string to use for this definition. For more information, see CloudWatch Logs Insights Query Syntax.
Used as an idempotency token, to avoid returning an exception if the service receives the same request twice because of a network error.