{ "$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
Function - The Amazon Resource Name (ARN) of a Lambda function.
Queue - The ARN of a standard SQS queue.
Topic - The ARN of a standard SNS topic.
Event Bus - The ARN of an Amazon EventBridge event bus.