FunctionEventInvokeConfig

APIs.ioEngineeringPlatform

Properties

Name Type Description
LastModified object
FunctionArn object
MaximumRetryAttempts object
MaximumEventAgeInSeconds object
DestinationConfig object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-functioneventinvokeconfig-schema.json Raw ↑
{
  "$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": "<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>"
        }
      ]
    }
  }
}