DevEnvironmentIdes constructor

const DevEnvironmentIdes({
  1. Input<String?>? name,
  2. Input<String?>? runtime,
})

Creates a new DevEnvironmentIdes. name The name of the IDE. Valid values include Cloud9, IntelliJ, PyCharm, GoLand, and VSCode. runtime A link to the IDE runtime image. This parameter is not required if the name is VSCode. Values of the runtime can be for example public.ecr.aws/jetbrains/py,public.ecr.aws/jetbrains/go

Implementation

const DevEnvironmentIdes({
  this.name,
  this.runtime,
});