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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


2939
2940
2941
2942
2943
# File 'lib/aws-sdk-lambda/types.rb', line 2939

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