{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FunctionEventInvokeConfig", "title": "FunctionEventInvokeConfig", "type": "object", "properties": { "LastModified": { "allOf": [ { "$ref": "#/components/schemas/Date" }, { "description": "The date and time that the configuration was last updated." } ] }, "FunctionArn": { "allOf": [ { "$ref": "#/components/schemas/FunctionArn" }, { "description": "The Amazon Resource Name (ARN) of the function." } ] }, "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

" } ] } } }