IdeConfiguration

Information about the configuration of an integrated development environment (IDE) for a Dev Environment.

AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

Properties

Name Type Description
runtime object
name object
View JSON Schema on GitHub

JSON Schema

amazon-codecatalyst-ide-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codecatalyst/refs/heads/main/json-schema/amazon-codecatalyst-ide-configuration-schema.json",
  "title": "IdeConfiguration",
  "description": "Information about the configuration of an integrated development environment (IDE) for a Dev Environment.",
  "type": "object",
  "properties": {
    "runtime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdeConfigurationRuntimeString"
        },
        {
          "description": "<p>A link to the IDE runtime image. </p> <note> <p>This parameter is not required for <code>VSCode</code>.</p> </note>"
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdeConfigurationNameString"
        },
        {
          "description": "The name of the IDE. Valid values include <code>Cloud9</code>, <code>IntelliJ</code>, <code>PyCharm</code>, <code>GoLand</code>, and <code>VSCode</code>."
        }
      ]
    }
  }
}