Class EventInvokeConfig

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.lambda.EventInvokeConfig
All Implemented Interfaces:
IResource, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:31.914Z") @Stability(Stable) public class EventInvokeConfig extends Resource
Configure options for asynchronous invocation on a version or an alias.

By default, Lambda retries an asynchronous invocation twice if the function returns an error. It retains events in a queue for up to six hours. When an event fails all processing attempts or stays in the asynchronous invocation queue for too long, Lambda discards it.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.lambda.*;
 IDestination destination;
 Function function_;
 EventInvokeConfig eventInvokeConfig = EventInvokeConfig.Builder.create(this, "MyEventInvokeConfig")
         .function(function_)
         // the properties below are optional
         .maxEventAge(Duration.minutes(30))
         .onFailure(destination)
         .onSuccess(destination)
         .qualifier("qualifier")
         .retryAttempts(123)
         .build();
 
  • Constructor Details

    • EventInvokeConfig

      protected EventInvokeConfig(software.amazon.jsii.JsiiObjectRef objRef)
    • EventInvokeConfig

      protected EventInvokeConfig(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • EventInvokeConfig

      @Stability(Stable) public EventInvokeConfig(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull EventInvokeConfigProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.