FunctionRecursionConfigState constructor

const FunctionRecursionConfigState({
  1. Input<String?>? functionName,
  2. Input<String?>? recursiveLoop,
  3. Input<String?>? region,
})

Creates a new FunctionRecursionConfigState. 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 FunctionRecursionConfigState({
  this.functionName,
  this.recursiveLoop,
  this.region,
});