StartDevEnvironmentRequest

StartDevEnvironmentRequest schema from Amazon CodeCatalyst

AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

Properties

Name Type Description
ides object
instanceType object
inactivityTimeoutMinutes object
View JSON Schema on GitHub

JSON Schema

amazon-codecatalyst-start-dev-environment-request-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-start-dev-environment-request-schema.json",
  "title": "StartDevEnvironmentRequest",
  "description": "StartDevEnvironmentRequest schema from Amazon CodeCatalyst",
  "type": "object",
  "properties": {
    "ides": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdeConfigurationList"
        },
        {
          "description": "Information about the integrated development environment (IDE) configured for a Dev Environment. "
        }
      ]
    },
    "instanceType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceType"
        },
        {
          "description": "The Amazon EC2 instace type to use for the Dev Environment. "
        }
      ]
    },
    "inactivityTimeoutMinutes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InactivityTimeoutMinutes"
        },
        {
          "description": "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."
        }
      ]
    }
  }
}