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)


2878
2879
2880
2881
2882
# File 'lib/aws-sdk-lambda/types.rb', line 2878

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