{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PutFunctionEventInvokeConfigRequest", "title": "PutFunctionEventInvokeConfigRequest", "type": "object", "properties": { "MaximumRetryAttempts": { "allOf": [ { "$ref": "#/components/schemas/MaximumRetryAttempts" }, { "description": "The maximum number of times to retry when the function returns an error." } ] }, "MaximumEventAgeInSeconds": { "allOf": [ { "$ref": "#/components/schemas/MaximumEventAgeInSeconds" }, { "description": "The maximum age of a request that Lambda sends to a function for processing." } ] }, "DestinationConfig": { "allOf": [ { "$ref": "#/components/schemas/DestinationConfig" }, { "description": "

A destination for events after they have been sent to a function for processing.

Destinations

" } ] } } }