Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 1.6 KB

AWSLambdaTrigger.md

File metadata and controls

20 lines (13 loc) · 1.6 KB

AWSLambdaTrigger

AWSLambdaTrigger refers to specification of the trigger to invoke an AWS Lambda function

Properties

Name Type Description Notes
functionName String FunctionName refers to the name of the function to invoke.
parameters List<TriggerParameter> Parameters is the list of key-value extracted from event's payload that are applied to the trigger resource. [optional]
region String Region is AWS region
roleARN String RoleARN is the Amazon Resource Name (ARN) of the role to assume. [optional]
invocationType String Choose from the following options. * RequestResponse (default) - Invoke the function synchronously. Keep the connection open until the function returns a response or times out. The API response includes the function response and additional data. * Event - Invoke the function asynchronously. Send events that fail multiple times to the function's dead-letter queue (if it's configured). The API response only includes a status code. * DryRun - Validate parameter values and verify that the user or role has permission to invoke the function. [optional]
payload List<TriggerParameter> Payload is the list of key-value extracted from an event payload to construct the request payload.
secretKey V1SecretKeySelector [optional]
accessKey V1SecretKeySelector [optional]