APIs.io Engineering Platform · Schema
UpdateFunctionEventInvokeConfigRequest
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| MaximumRetryAttempts | object | |
| MaximumEventAgeInSeconds | object | |
| DestinationConfig | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateFunctionEventInvokeConfigRequest",
"title": "UpdateFunctionEventInvokeConfigRequest",
"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": "<p>A destination for events after they have been sent to a function for processing.</p> <p class=\"title\"> <b>Destinations</b> </p> <ul> <li> <p> <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p> </li> <li> <p> <b>Queue</b> - The ARN of a standard SQS queue.</p> </li> <li> <p> <b>Topic</b> - The ARN of a standard SNS topic.</p> </li> <li> <p> <b>Event Bus</b> - The ARN of an Amazon EventBridge event bus.</p> </li> </ul>"
}
]
}
}
}