Class: Aws::Lambda::Types::GetFunctionRecursionConfigResponse

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

If your function's recursive loop detection configuration is Allow, Lambda doesn't take any action when it detects your function being invoked as part of a recursive loop.

If your function's recursive loop detection configuration is Terminate, Lambda stops your function being invoked and notifies you when it detects your function being invoked as part of a recursive loop.

By default, Lambda sets your function's configuration to Terminate. You can update this configuration using the PutFunctionRecursionConfig action.

Returns:

  • (String)


2863
2864
2865
2866
2867
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2863

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