Interface EventInvokeConfigProps

All Superinterfaces:
EventInvokeConfigOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
EventInvokeConfigProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:40.727Z") @Stability(Stable) public interface EventInvokeConfigProps extends software.amazon.jsii.JsiiSerializable, EventInvokeConfigOptions
Properties for an EventInvokeConfig.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lambda.*;
 import software.amazon.awscdk.core.*;
 IDestination destination;
 Function function_;
 EventInvokeConfigProps eventInvokeConfigProps = EventInvokeConfigProps.builder()
         .function(function_)
         // the properties below are optional
         .maxEventAge(Duration.minutes(30))
         .onFailure(destination)
         .onSuccess(destination)
         .qualifier("qualifier")
         .retryAttempts(123)
         .build();