StartDevEnvironmentSessionResponse

StartDevEnvironmentSessionResponse schema from Amazon CodeCatalyst

AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

Properties

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

JSON Schema

amazon-codecatalyst-start-dev-environment-session-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-session-response-schema.json",
  "title": "StartDevEnvironmentSessionResponse",
  "description": "StartDevEnvironmentSessionResponse schema from Amazon CodeCatalyst",
  "type": "object",
  "properties": {
    "accessDetails": {
      "$ref": "#/components/schemas/DevEnvironmentAccessDetails"
    },
    "sessionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StartDevEnvironmentSessionResponseSessionIdString"
        },
        {
          "description": "The system-generated unique ID of the Dev Environment session."
        }
      ]
    },
    "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."
        }
      ]
    }
  },
  "required": [
    "accessDetails",
    "spaceName",
    "projectName",
    "id"
  ]
}