AWS Fundamentals Logo
AWS Fundamentals
AWS::Lambda::EventInvokeConfig

Lambda EventInvokeConfig

The AWS::Lambda::EventInvokeConfig resource configures options for asynchronous invocation on a version or an alias.

Properties

5 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
FunctionName
string
RequiredCreate-only
Qualifier
string
RequiredCreate-only
DestinationConfig
DestinationConfig
MaximumEventAgeInSeconds
integer
MaximumRetryAttempts
integer

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Lambda::EventInvokeConfig

Resources:
  MyResource:
    Type: AWS::Lambda::EventInvokeConfig
    Properties:
      FunctionName: "my-functionname"
      Qualifier: "value"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

lambda:PutFunctionEventInvokeConfig

read

lambda:GetFunctionEventInvokeConfig

update

lambda:UpdateFunctionEventInvokeConfig

delete

lambda:DeleteFunctionEventInvokeConfig

list

lambda:ListFunctionEventInvokeConfigs

Get the Lambda Cheat Sheet

Everything you need to know about Lambda on one page. HD quality, print-friendly.

Download Free Infographic

Quick Facts

ServiceLambda
Properties5
Required2
TaggingNot supported
Primary IDFunctionName

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

FunctionNameQualifier

External Links