Amazon CodeCatalyst · JSON Structure

Amazon Codecatalyst Dev Environment Session Configuration Structure

Information about the configuration of a Dev Environment session.

Type: object Properties: 2 Required: 1
AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

DevEnvironmentSessionConfiguration is a JSON Structure definition published by Amazon CodeCatalyst, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

sessionType executeCommandSessionConfiguration

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codecatalyst/refs/heads/main/json-structure/amazon-codecatalyst-dev-environment-session-configuration-structure.json",
  "name": "DevEnvironmentSessionConfiguration",
  "description": "Information about the configuration of a Dev Environment session.",
  "type": "object",
  "properties": {
    "sessionType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DevEnvironmentSessionType"
        },
        {
          "description": "The type of the session."
        }
      ]
    },
    "executeCommandSessionConfiguration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExecuteCommandSessionConfiguration"
        },
        {
          "description": "Information about optional commands that will be run on the Dev Environment when the SSH session begins."
        }
      ]
    }
  },
  "required": [
    "sessionType"
  ]
}