StartDevEnvironmentResponse

StartDevEnvironmentResponse schema from Amazon CodeCatalyst

AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

Properties

Name Type Description
spaceName object
projectName object
id object
status object
View JSON Schema on GitHub

JSON Schema

amazon-codecatalyst-start-dev-environment-response-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-response-schema.json",
  "title": "StartDevEnvironmentResponse",
  "description": "StartDevEnvironmentResponse schema from Amazon CodeCatalyst",
  "type": "object",
  "properties": {
    "spaceName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the space."
        }
      ]
    },
    "projectName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the project in the space."
        }
      ]
    },
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Uuid"
        },
        {
          "description": "The system-generated unique ID of the Dev Environment. "
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DevEnvironmentStatus"
        },
        {
          "description": "The status of the Dev Environment. "
        }
      ]
    }
  },
  "required": [
    "spaceName",
    "projectName",
    "id",
    "status"
  ]
}