EventInvokeConfiguration - AWS Serverless Application Model

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

EventInvokeConfiguration

非同步 Lambda 別名或版本叫用的組態選項。

語法

若要在 AWS Serverless Application Model (AWS SAM) 範本中宣告此實體,請使用下列語法。

屬性

DestinationConfig

組態物件,指定在 Lambda 處理過後事件的目標。

類型:EventInvokeDestinationConfiguration

必要:否

AWS CloudFormation 兼容性:此屬性類似於AWS::Lambda::EventInvokeConfig資源的DestinationConfig屬性。SAM 需要一個不存在的額外參數「類型」 CloudFormation。

MaximumEventAgeInSeconds

Lambda 傳送至函數以進行處理的請求時間上限。

類型:整數

必要:否

AWS CloudFormation 兼容性:此屬性直接傳遞給AWS::Lambda::EventInvokeConfig資源的MaximumEventAgeInSeconds屬性。

MaximumRetryAttempts

函數傳回錯誤之前要重試的次數上限。

類型:整數

必要:否

AWS CloudFormation 兼容性:此屬性直接傳遞給AWS::Lambda::EventInvokeConfig資源的MaximumRetryAttempts屬性。

範例

MaximumEventAgeInSeconds

MaximumEventAgeInSeconds 例子

YAML

EventInvokeConfig: MaximumEventAgeInSeconds: 60 MaximumRetryAttempts: 2 DestinationConfig: OnSuccess: Type: SQS Destination: arn:aws:sqs:us-west-2:012345678901:my-queue OnFailure: Type: Lambda Destination: !GetAtt DestinationLambda.Arn