Amazon CodeBuild · Schema

DebugSession

Contains information about the debug session for a build. For more information, see Viewing a running build in Session Manager.

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

Properties

Name Type Description
sessionEnabled object
sessionTarget object
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-debug-session-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-schema/amazon-codebuild-debug-session-schema.json",
  "title": "DebugSession",
  "description": "Contains information about the debug session for a build. For more information, see <a href=\"https://docs.aws.amazon.com/codebuild/latest/userguide/session-manager.html\">Viewing a running build in Session Manager</a>.",
  "type": "object",
  "properties": {
    "sessionEnabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WrapperBoolean"
        },
        {
          "description": "Specifies if session debugging is enabled for this build."
        }
      ]
    },
    "sessionTarget": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "Contains the identifier of the Session Manager session used for the build. To work with the paused build, you open this session to examine, control, and resume the build."
        }
      ]
    }
  }
}