本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
EventInvokeConfiguration
非同步 Lambda 別名或版本叫用的組態選項。
語法
若要在 AWS Serverless Application Model (AWS SAM) 範本中宣告此實體,請使用下列語法。
YAML
DestinationConfig:
EventInvokeDestinationConfiguration
MaximumEventAgeInSeconds:Integer
MaximumRetryAttempts:Integer
屬性
-
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