Class: Aws::Pipes::Types::PipeTargetLambdaFunctionParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::PipeTargetLambdaFunctionParameters
- Defined in:
- gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb
Overview
The parameters for using a Lambda function as a target.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#invocation_type ⇒ String
Specify whether to invoke the function synchronously or asynchronously.
Instance Attribute Details
#invocation_type ⇒ String
Specify whether to invoke the function synchronously or asynchronously.
REQUEST_RESPONSE
(default) - Invoke synchronously. This corresponds to theRequestResponse
option in theInvocationType
parameter for the Lambda Invoke API.FIRE_AND_FORGET
- Invoke asynchronously. This corresponds to theEvent
option in theInvocationType
parameter for the Lambda Invoke API.
For more information, see Invocation types in the Amazon EventBridge User Guide.
2430 2431 2432 2433 2434 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2430 class PipeTargetLambdaFunctionParameters < Struct.new( :invocation_type) SENSITIVE = [] include Aws::Structure end |