ProjectState constructor

const ProjectState({
  1. Input<String?>? arn,
  2. Input<int?>? defaultJobTimeoutMinutes,
  3. Input<String?>? name,
  4. Input<String?>? region,
  5. Input<Map<String, String>?>? tags,
  6. Input<Map<String, String>?>? tagsAll,
})

Creates a new ProjectState. arn ARN of this project defaultJobTimeoutMinutes Sets the execution timeout value (in minutes) for a project. All test runs in this project use the specified execution timeout value unless overridden when scheduling a run. name The name of the project region Region where this resource will be managed. Defaults to the Region set in the provider configuration. tags A map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level. tagsAll A map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.

Implementation

const ProjectState({
  this.arn,
  this.defaultJobTimeoutMinutes,
  this.name,
  this.region,
  this.tags,
  this.tagsAll,
});