QueryDefinitionArgs constructor

const QueryDefinitionArgs({
  1. Input<List<String>?>? logGroupNames,
  2. Input<String?>? name,
  3. required Input<String> queryString,
  4. Input<String?>? region,
})

Creates a new QueryDefinitionArgs. logGroupNames Specific log groups to use with the query. name The name of the query. queryString The query to save. You can read more about CloudWatch Logs Query Syntax in the documentation. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const QueryDefinitionArgs({
  this.logGroupNames,
  this.name,
  required this.queryString,
  this.region,
});