Amazon X-Ray · JSON Structure

Xray Get Insight Events Request Structure

GetInsightEventsRequest schema from Amazon X-Ray API

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

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

Properties

InsightId MaxResults NextToken

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

JSON Structure

Raw ↑
{
  "type": "object",
  "required": [
    "InsightId"
  ],
  "name": "GetInsightEventsRequest",
  "properties": {
    "InsightId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InsightId"
        },
        {
          "description": "The insight's unique identifier. Use the GetInsightSummaries action to retrieve an InsightId."
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GetInsightEventsMaxResults"
        },
        {
          "description": "Used to retrieve at most the specified value of events."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Token"
        },
        {
          "description": "Specify the pagination token returned by a previous request to retrieve the next page of events. "
        }
      ]
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-xray/refs/heads/main/json-structure/xray-get-insight-events-request-structure.json",
  "description": "GetInsightEventsRequest schema from Amazon X-Ray API"
}