Class: Aws::Lambda::Types::PutFunctionRecursionConfigResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#recursive_loopString

The status of your function's recursive loop detection configuration.

When this value is set to Allowand Lambda detects your function being invoked as part of a recursive loop, it doesn't take any action.

When this value is set to Terminate and Lambda detects your function being invoked as part of a recursive loop, it stops your function being invoked and notifies you.

Returns:

  • (String)


5351
5352
5353
5354
5355
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5351

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