DevEnvironmentAccessDetails

Information about connection details for a Dev Environment.

AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

Properties

Name Type Description
streamUrl object
tokenValue object
View JSON Schema on GitHub

JSON Schema

amazon-codecatalyst-dev-environment-access-details-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-dev-environment-access-details-schema.json",
  "title": "DevEnvironmentAccessDetails",
  "description": "Information about connection details for a Dev Environment.",
  "type": "object",
  "properties": {
    "streamUrl": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveString"
        },
        {
          "description": "The URL used to send commands to and from the Dev Environment."
        }
      ]
    },
    "tokenValue": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveString"
        },
        {
          "description": "An encrypted token value that contains session and caller information used to authenticate the connection."
        }
      ]
    }
  },
  "required": [
    "streamUrl",
    "tokenValue"
  ]
}