putQueryDefinition method

Future<PutQueryDefinitionResponse> putQueryDefinition({
  1. required String name,
  2. required String queryString,
  3. List<String>? logGroupNames,
  4. String? queryDefinitionId,
})

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.

May throw InvalidParameterException. May throw ResourceNotFoundException. May throw ServiceUnavailableException.

Parameter name : 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.

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

Parameter logGroupNames : 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.

Parameter queryDefinitionId : 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.

Implementation

Future<PutQueryDefinitionResponse> putQueryDefinition({
  required String name,
  required String queryString,
  List<String>? logGroupNames,
  String? queryDefinitionId,
}) async {
  ArgumentError.checkNotNull(name, 'name');
  _s.validateStringLength(
    'name',
    name,
    1,
    255,
    isRequired: true,
  );
  ArgumentError.checkNotNull(queryString, 'queryString');
  _s.validateStringLength(
    'queryString',
    queryString,
    1,
    10000,
    isRequired: true,
  );
  _s.validateStringLength(
    'queryDefinitionId',
    queryDefinitionId,
    0,
    256,
  );
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'Logs_20140328.PutQueryDefinition'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'name': name,
      'queryString': queryString,
      if (logGroupNames != null) 'logGroupNames': logGroupNames,
      if (queryDefinitionId != null) 'queryDefinitionId': queryDefinitionId,
    },
  );

  return PutQueryDefinitionResponse.fromJson(jsonResponse.body);
}