LogStreamState constructor

const LogStreamState({
  1. Input<String?>? arn,
  2. Input<String?>? logGroupName,
  3. Input<String?>? name,
  4. Input<String?>? region,
})

Creates a new LogStreamState. arn ARN specifying the log stream. logGroupName The name of the log group under which the log stream is to be created. name The name of the log stream. Must not be longer than 512 characters and must not contain : region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const LogStreamState({
  this.arn,
  this.logGroupName,
  this.name,
  this.region,
});