Creates or updates a query definition for CloudWatch Logs Insights. For more information, see Analyzing Log Data with CloudWatch Logs Insights.
To update a query definition, specify its queryDefinitionId
in your
request. The values of name
, queryString
, and logGroupNames
are
changed to the values that you specify in your update operation. No
current values are retained from the current query definition. For
example, if you update a current query definition that includes log
groups, and you don't specify the logGroupNames
parameter in your
update operation, the query definition changes to contain no log groups.
You must have the logs:PutQueryDefinition
permission to be able to
perform this operation.
cloudwatchlogs_put_query_definition(name, queryDefinitionId,
logGroupNames, queryString)
[required] 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.
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.
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.
[required] The query string to use for this definition. For more information, see CloudWatch Logs Insights Query Syntax.
svc$put_query_definition( name = "string", queryDefinitionId = "string", logGroupNames = list( "string" ), queryString = "string" )