Interface GetFunctionRecursionConfigResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<GetFunctionRecursionConfigResponse.Builder,GetFunctionRecursionConfigResponse>
,LambdaResponse.Builder
,SdkBuilder<GetFunctionRecursionConfigResponse.Builder,GetFunctionRecursionConfigResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- GetFunctionRecursionConfigResponse
public static interface GetFunctionRecursionConfigResponse.Builder extends LambdaResponse.Builder, SdkPojo, CopyableBuilder<GetFunctionRecursionConfigResponse.Builder,GetFunctionRecursionConfigResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetFunctionRecursionConfigResponse.Builder
recursiveLoop(String recursiveLoop)
If your function's recursive loop detection configuration isAllow
, Lambda doesn't take any action when it detects your function being invoked as part of a recursive loop.GetFunctionRecursionConfigResponse.Builder
recursiveLoop(RecursiveLoop recursiveLoop)
If your function's recursive loop detection configuration isAllow
, Lambda doesn't take any action when it detects your function being invoked as part of a recursive loop.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lambda.model.LambdaResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
recursiveLoop
GetFunctionRecursionConfigResponse.Builder recursiveLoop(String recursiveLoop)
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.- Parameters:
recursiveLoop
- If your function's recursive loop detection configuration isAllow
, 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:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RecursiveLoop
,RecursiveLoop
-
recursiveLoop
GetFunctionRecursionConfigResponse.Builder recursiveLoop(RecursiveLoop recursiveLoop)
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.- Parameters:
recursiveLoop
- If your function's recursive loop detection configuration isAllow
, 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:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RecursiveLoop
,RecursiveLoop
-
-