FunctionRecursionConfigArgs constructor
const
FunctionRecursionConfigArgs({})
Creates a new FunctionRecursionConfigArgs.
functionName Name of the Lambda function.
recursiveLoop Lambda function recursion configuration. Valid values are Allow or Terminate.
region Region where this resource will be managed. Defaults to the Region set in the provider configuration.
Implementation
const FunctionRecursionConfigArgs({
required this.functionName,
required this.recursiveLoop,
this.region,
});