DevEnvironmentState constructor

const DevEnvironmentState({
  1. Input<String?>? alias,
  2. Input<DevEnvironmentIdes?>? ides,
  3. Input<int?>? inactivityTimeoutMinutes,
  4. Input<String?>? instanceType,
  5. Input<DevEnvironmentPersistentStorage?>? persistentStorage,
  6. Input<String?>? projectName,
  7. Input<String?>? region,
  8. Input<List<DevEnvironmentRepository>?>? repositories,
  9. Input<String?>? spaceName,
})

Creates a new DevEnvironmentState. alias Optional. ides Information about the integrated development environment (IDE) configured for a Dev Environment. inactivityTimeoutMinutes The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running. instanceType The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge persistentStorage Information about the amount of storage allocated to the Dev Environment. projectName The name of the project in the space. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. repositories The source repository that contains the branch to clone into the Dev Environment. spaceName The name of the space.

Implementation

const DevEnvironmentState({
  this.alias,
  this.ides,
  this.inactivityTimeoutMinutes,
  this.instanceType,
  this.persistentStorage,
  this.projectName,
  this.region,
  this.repositories,
  this.spaceName,
});