Amazon X-Ray · JSON Structure

Xray Get Trace Graph Request Structure

GetTraceGraphRequest schema from Amazon X-Ray API

Type: object Properties: 2 Required: 1
Application PerformanceDebuggingDistributed TracingMonitoringObservability

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

Properties

TraceIds NextToken

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

JSON Structure

Raw ↑
{
  "type": "object",
  "required": [
    "TraceIds"
  ],
  "name": "GetTraceGraphRequest",
  "properties": {
    "TraceIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TraceIdList"
        },
        {
          "description": "Trace IDs of requests for which to generate a service graph."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Pagination token."
        }
      ]
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-structure/xray-get-trace-graph-request-structure.json",
  "description": "GetTraceGraphRequest schema from Amazon X-Ray API"
}