Amazon CodeBuild · JSON Structure

Amazon Codebuild Debug Session Structure

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

Type: object Properties: 2
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

DebugSession is a JSON Structure definition published by Amazon CodeBuild, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

sessionEnabled sessionTarget

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-codebuild/refs/heads/main/json-structure/amazon-codebuild-debug-session-structure.json",
  "name": "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."
        }
      ]
    }
  }
}