Interface EventInvokeConfigProps
- All Superinterfaces:
EventInvokeConfigOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EventInvokeConfigProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:08.500Z")
@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.*;
import software.amazon.awscdk.services.lambda.*;
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEventInvokeConfigPropsstatic final classAn implementation forEventInvokeConfigProps -
Method Summary
Methods inherited from interface software.amazon.awscdk.services.lambda.EventInvokeConfigOptions
getMaxEventAge, getOnFailure, getOnSuccess, getRetryAttemptsMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFunction
The Lambda function. -
getQualifier
The qualifier.Default: - latest version
-
builder
- Returns:
- a
EventInvokeConfigProps.BuilderofEventInvokeConfigProps
-