Amazon X-Ray · JSON Structure

Xray Batch Get Traces Request Structure

BatchGetTracesRequest schema from Amazon X-Ray API

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

BatchGetTracesRequest 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": "BatchGetTracesRequest",
  "properties": {
    "TraceIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TraceIdList"
        },
        {
          "description": "Specify the trace IDs of requests for which to retrieve segments."
        }
      ]
    },
    "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-batch-get-traces-request-structure.json",
  "description": "BatchGetTracesRequest schema from Amazon X-Ray API"
}