TracingConfig

The function's X-Ray tracing configuration. To sample and record incoming requests, set Mode to Active.

APIs.ioEngineeringPlatform

Properties

Name Type Description
Mode object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-tracingconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TracingConfig",
  "title": "TracingConfig",
  "type": "object",
  "properties": {
    "Mode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TracingMode"
        },
        {
          "description": "The tracing mode."
        }
      ]
    }
  },
  "description": "The function's <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html\">X-Ray</a> tracing configuration. To sample and record incoming requests, set <code>Mode</code> to <code>Active</code>."
}