QueryDefinitionState constructor

const QueryDefinitionState({
  1. Input<String?>? arn,
  2. Input<List<String>?>? logGroupNames,
  3. Input<String?>? name,
  4. Input<String?>? queryDefinitionId,
  5. Input<String?>? queryString,
  6. Input<String?>? region,
})

Creates a new QueryDefinitionState. arn The query definition ARN. logGroupNames Specific log groups to use with the query. name The name of the query. queryDefinitionId The query definition ID. 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 QueryDefinitionState({
  this.arn,
  this.logGroupNames,
  this.name,
  this.queryDefinitionId,
  this.queryString,
  this.region,
});