Class: Aws::Pipes::Types::PipeTargetLambdaFunctionParameters

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#invocation_typeString

Specify whether to invoke the function synchronously or asynchronously.

  • REQUEST_RESPONSE (default) - Invoke synchronously. This corresponds to the RequestResponse option in the InvocationType parameter for the Lambda Invoke API.

  • FIRE_AND_FORGET - Invoke asynchronously. This corresponds to the Event option in the InvocationType parameter for the Lambda Invoke API.

For more information, see Invocation types in the Amazon EventBridge User Guide.

Returns:

  • (String)


2294
2295
2296
2297
2298
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2294

class PipeTargetLambdaFunctionParameters < Struct.new(
  :invocation_type)
  SENSITIVE = []
  include Aws::Structure
end