Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FunctionEventInvokeConfig

import type { FunctionEventInvokeConfig } from "https://aws-api.deno.dev/v0.4/services/lambda.ts?docs=full";
interface FunctionEventInvokeConfig {
DestinationConfig?: DestinationConfig | null;
FunctionArn?: string | null;
LastModified?: Date | number | null;
MaximumEventAgeInSeconds?: number | null;
MaximumRetryAttempts?: number | null;
}

§Properties

§
DestinationConfig?: DestinationConfig | null
[src]

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 an SQS queue.
  • Topic - The ARN of an SNS topic.
  • Event Bus - The ARN of an Amazon EventBridge event bus.
§
FunctionArn?: string | null
[src]

The Amazon Resource Name (ARN) of the function.

§
LastModified?: Date | number | null
[src]

The date and time that the configuration was last updated.

§
MaximumEventAgeInSeconds?: number | null
[src]

The maximum age of a request that Lambda sends to a function for processing.

§
MaximumRetryAttempts?: number | null
[src]

The maximum number of times to retry when the function returns an error.