{ "type": "object", "required": [ "scheduledEventId", "startedEventId" ], "properties": { "scheduledEventId": { "allOf": [ { "$ref": "#/components/schemas/EventId" }, { "description": "The ID of the LambdaFunctionScheduled event that was recorded when this activity task was scheduled. To help diagnose issues, use this information to trace back the chain of events leading up to this event." } ] }, "startedEventId": { "allOf": [ { "$ref": "#/components/schemas/EventId" }, { "description": "The ID of the ActivityTaskStarted event that was recorded when this activity task started. To help diagnose issues, use this information to trace back the chain of events leading up to this event." } ] }, "timeoutType": { "allOf": [ { "$ref": "#/components/schemas/LambdaFunctionTimeoutType" }, { "description": "The type of the timeout that caused this event." } ] } }, "description": "Provides details of the LambdaFunctionTimedOut event.", "$schema": "http://json-schema.org/draft-07/schema#", "title": "LambdaFunctionTimedOutEventAttributes" }